diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index c7e291e7fa0a..170293cea738 100644 --- a/.generator/schemas/v2/openapi.yaml +++ b/.generator/schemas/v2/openapi.yaml @@ -562,6 +562,17 @@ components: items: $ref: '#/components/schemas/IncidentImpactRelatedObject' type: array + IncidentImportIncludeQueryParameter: + description: Specifies which related object types to include in the response + when importing an incident. + explode: false + in: query + name: include + required: false + schema: + items: + $ref: '#/components/schemas/IncidentImportRelatedObject' + type: array IncidentIncludeQueryParameter: description: Specifies which types of related objects should be included in the response. @@ -6960,6 +6971,11 @@ components: type: string buffer: $ref: '#/components/schemas/ObservabilityPipelineBufferOptions' + connection_string_key: + description: Name of the environment variable or secret that holds the Azure + Storage connection string. + example: AZURE_STORAGE_CONNECTION_STRING + type: string container_name: description: The name of the Azure Blob Storage container to store logs in. @@ -30071,6 +30087,321 @@ components: type: string x-enum-varnames: - INCIDENT_IMPACTS + IncidentImportFieldAttributes: + description: Dynamic fields for which selections can be made, with field names + as keys. + oneOf: + - $ref: '#/components/schemas/IncidentImportFieldAttributesSingleValue' + - $ref: '#/components/schemas/IncidentImportFieldAttributesMultipleValue' + IncidentImportFieldAttributesMultipleValue: + additionalProperties: false + description: A field with potentially multiple values selected. + properties: + value: + description: The multiple values selected for this field. + example: + - '1.0' + - '1.1' + items: + description: A value which has been selected for the parent field. + example: '1.1' + type: string + nullable: true + type: array + type: object + IncidentImportFieldAttributesSingleValue: + additionalProperties: false + description: A field with a single value selected. + properties: + value: + description: The single value selected for this field. + example: SEV-1 + nullable: true + type: string + type: object + IncidentImportRelatedObject: + description: Object related to an incident that can be included in the response. + enum: + - last_modified_by_user + - created_by_user + - commander_user + - declared_by_user + - incident_type + type: string + x-enum-varnames: + - LAST_MODIFIED_BY_USER + - CREATED_BY_USER + - COMMANDER_USER + - DECLARED_BY_USER + - INCIDENT_TYPE + IncidentImportRelationships: + description: The relationships for an incident import request. + properties: + commander_user: + $ref: '#/components/schemas/NullableRelationshipToUser' + declared_by_user: + $ref: '#/components/schemas/NullableRelationshipToUser' + type: object + IncidentImportRequest: + description: Import request for an incident. Used to import historical incidents + from external systems. + properties: + data: + $ref: '#/components/schemas/IncidentImportRequestData' + required: + - data + type: object + IncidentImportRequestAttributes: + description: The incident's attributes for an import request. + properties: + declared: + description: Timestamp when the incident was declared. + example: '2025-01-01T00:00:00Z' + format: date-time + type: string + detected: + description: Timestamp when the incident was detected. + example: '2025-01-01T00:00:00Z' + format: date-time + type: string + fields: + additionalProperties: + $ref: '#/components/schemas/IncidentImportFieldAttributes' + description: A condensed view of the user-defined fields for which to create + initial selections. + example: + severity: + value: SEV-5 + state: + value: active + type: object + incident_type_uuid: + description: A unique identifier that represents the incident type. If not + provided, the default incident type is used. + example: 00000000-0000-0000-0000-000000000000 + type: string + resolved: + description: Timestamp when the incident was resolved. Can only be set when + the state field is set to 'resolved'. + example: '2025-01-01T01:00:00Z' + format: date-time + type: string + title: + description: The title of the incident that summarizes what happened. + example: Imported incident from external system + maxLength: 1024 + type: string + visibility: + $ref: '#/components/schemas/IncidentImportVisibility' + required: + - title + type: object + IncidentImportRequestData: + description: Incident data for an import request. + properties: + attributes: + $ref: '#/components/schemas/IncidentImportRequestAttributes' + relationships: + $ref: '#/components/schemas/IncidentImportRelationships' + type: + $ref: '#/components/schemas/IncidentType' + required: + - type + - attributes + type: object + IncidentImportResponse: + description: Response with an incident. + properties: + data: + $ref: '#/components/schemas/IncidentImportResponseData' + included: + description: Included related resources that the user requested. + items: + $ref: '#/components/schemas/IncidentImportResponseIncludedItem' + readOnly: true + type: array + required: + - data + type: object + IncidentImportResponseAttributes: + description: The incident's attributes from an import response. + properties: + archived: + description: Timestamp when the incident was archived. + format: date-time + nullable: true + readOnly: true + type: string + case_id: + description: The incident case ID. + format: int64 + nullable: true + type: integer + created: + description: Timestamp when the incident was created. + example: '2025-01-01T00:00:00Z' + format: date-time + readOnly: true + type: string + created_by_uuid: + description: UUID of the user who created the incident. + nullable: true + type: string + creation_idempotency_key: + description: A unique key used to ensure idempotent incident creation. + nullable: true + type: string + customer_impact_end: + description: Timestamp when customers were no longer impacted by the incident. + format: date-time + nullable: true + type: string + customer_impact_scope: + description: A summary of the impact customers experienced during the incident. + example: An example customer impact scope + nullable: true + type: string + customer_impact_start: + description: Timestamp when customers began to be impacted by the incident. + format: date-time + nullable: true + type: string + declared: + description: Timestamp when the incident was declared. + example: '2025-01-01T00:00:00Z' + format: date-time + nullable: true + type: string + declared_by_uuid: + description: UUID of the user who declared the incident. + nullable: true + type: string + detected: + description: Timestamp when the incident was detected. + example: '2025-01-01T00:00:00Z' + format: date-time + nullable: true + type: string + fields: + additionalProperties: + $ref: '#/components/schemas/IncidentFieldAttributes' + description: A condensed view of the user-defined fields attached to incidents. + example: + severity: + type: dropdown + value: SEV-5 + type: object + incident_type_uuid: + description: A unique identifier that represents an incident type. + example: 00000000-0000-0000-0000-000000000000 + type: string + is_test: + description: A flag indicating whether the incident is a test incident. + example: false + type: boolean + last_modified_by_uuid: + description: UUID of the user who last modified the incident. + nullable: true + type: string + modified: + description: Timestamp when the incident was last modified. + format: date-time + readOnly: true + type: string + non_datadog_creator: + $ref: '#/components/schemas/IncidentNonDatadogCreator' + notification_handles: + description: Notification handles that are notified of the incident during + update. + items: + $ref: '#/components/schemas/IncidentNotificationHandle' + nullable: true + type: array + public_id: + description: The monotonically increasing integer ID for the incident. + example: 1 + format: int64 + type: integer + resolved: + description: Timestamp when the incident's state was last changed from active + or stable to resolved or completed. + format: date-time + nullable: true + type: string + severity: + $ref: '#/components/schemas/IncidentSeverity' + state: + description: The state of the incident. + nullable: true + type: string + title: + description: The title of the incident that summarizes what happened. + example: A test incident title + type: string + visibility: + description: The incident visibility status. + nullable: true + type: string + required: + - title + type: object + IncidentImportResponseData: + description: Incident data from an import response. + properties: + attributes: + $ref: '#/components/schemas/IncidentImportResponseAttributes' + id: + description: The incident's ID. + example: 00000000-0000-0000-1234-000000000000 + type: string + relationships: + $ref: '#/components/schemas/IncidentImportResponseRelationships' + type: + $ref: '#/components/schemas/IncidentType' + required: + - id + - type + type: object + IncidentImportResponseIncludedItem: + description: An object related to an incident that is included in the response. + oneOf: + - $ref: '#/components/schemas/IncidentUserData' + - $ref: '#/components/schemas/IncidentTypeObject' + IncidentImportResponseRelationships: + description: The incident's relationships from an import response. + properties: + attachments: + $ref: '#/components/schemas/RelationshipToIncidentAttachment' + commander_user: + $ref: '#/components/schemas/NullableRelationshipToUser' + created_by_user: + $ref: '#/components/schemas/RelationshipToUser' + declared_by_user: + $ref: '#/components/schemas/RelationshipToUser' + impacts: + $ref: '#/components/schemas/RelationshipToIncidentImpacts' + incident_type: + $ref: '#/components/schemas/RelationshipToIncidentType' + integrations: + $ref: '#/components/schemas/RelationshipToIncidentIntegrationMetadatas' + last_modified_by_user: + $ref: '#/components/schemas/RelationshipToUser' + responders: + $ref: '#/components/schemas/RelationshipToIncidentResponders' + user_defined_fields: + $ref: '#/components/schemas/RelationshipToIncidentUserDefinedFields' + type: object + IncidentImportVisibility: + default: organization + description: The visibility of the incident. + enum: + - organization + - private + example: organization + type: string + x-enum-varnames: + - ORGANIZATION + - PRIVATE IncidentIntegrationMetadataAttributes: description: Incident integration metadata's attributes for a create request. properties: @@ -37977,6 +38308,16 @@ components: description: Azure AD client ID used for authentication. example: a1b2c3d4-5678-90ab-cdef-1234567890ab type: string + client_secret_key: + description: Name of the environment variable or secret that holds the Azure + AD client secret. + example: AZURE_CLIENT_SECRET + type: string + dce_uri_key: + description: Name of the environment variable or secret that holds the Data + Collection Endpoint (DCE) URI. + example: DCE_URI + type: string dcr_immutable_id: description: The immutable ID of the Data Collection Rule (DCR). example: dcr-uuid-1234 @@ -39908,6 +40249,11 @@ components: **Supported pipeline types:** logs' properties: + address_key: + description: Name of the environment variable or secret that holds the Firehose + delivery stream address. + example: FIREHOSE_ADDRESS + type: string auth: $ref: '#/components/schemas/ObservabilityPipelineAwsAuth' id: @@ -40120,6 +40466,11 @@ components: $ref: '#/components/schemas/ObservabilityPipelineTls' type: $ref: '#/components/schemas/ObservabilityPipelineAmazonS3SourceType' + url_key: + description: Name of the environment variable or secret that holds the S3 + bucket URL. + example: S3_BUCKET_URL + type: string required: - id - type @@ -40249,6 +40600,11 @@ components: **Supported pipeline types:** logs' properties: + endpoint_url_key: + description: Name of the environment variable or secret that holds the CloudPrem + endpoint URL. + example: CLOUDPREM_ENDPOINT_URL + type: string id: description: The unique identifier for this component. example: cloud-prem-destination @@ -40519,6 +40875,11 @@ components: $ref: '#/components/schemas/ObservabilityPipelineCrowdStrikeNextGenSiemDestinationCompression' encoding: $ref: '#/components/schemas/ObservabilityPipelineCrowdStrikeNextGenSiemDestinationEncoding' + endpoint_url_key: + description: Name of the environment variable or secret that holds the CrowdStrike + endpoint URL. + example: CROWDSTRIKE_ENDPOINT_URL + type: string id: description: The unique identifier for this component. example: crowdstrike-ngsiem-destination @@ -40533,6 +40894,11 @@ components: type: array tls: $ref: '#/components/schemas/ObservabilityPipelineTls' + token_key: + description: Name of the environment variable or secret that holds the CrowdStrike + API token. + example: CROWDSTRIKE_TOKEN + type: string type: $ref: '#/components/schemas/ObservabilityPipelineCrowdStrikeNextGenSiemDestinationType' required: @@ -41035,6 +41401,8 @@ components: properties: api_version: $ref: '#/components/schemas/ObservabilityPipelineElasticsearchDestinationApiVersion' + auth: + $ref: '#/components/schemas/ObservabilityPipelineElasticsearchDestinationAuth' buffer: $ref: '#/components/schemas/ObservabilityPipelineBufferOptions' bulk_index: @@ -41043,6 +41411,11 @@ components: type: string data_stream: $ref: '#/components/schemas/ObservabilityPipelineElasticsearchDestinationDataStream' + endpoint_url_key: + description: Name of the environment variable or secret that holds the Elasticsearch + endpoint URL. + example: ELASTICSEARCH_ENDPOINT_URL + type: string id: description: The unique identifier for this component. example: elasticsearch-destination @@ -41078,6 +41451,27 @@ components: - V6 - V7 - V8 + ObservabilityPipelineElasticsearchDestinationAuth: + description: 'Authentication settings for the Elasticsearch destination. + + When `strategy` is `basic`, use `username_key` and `password_key` to reference + credentials stored in environment variables or secrets.' + properties: + password_key: + description: Name of the environment variable or secret that holds the Elasticsearch + password (used when `strategy` is `basic`). + example: ELASTICSEARCH_PASSWORD + type: string + strategy: + $ref: '#/components/schemas/ObservabilityPipelineAmazonOpenSearchDestinationAuthStrategy' + username_key: + description: Name of the environment variable or secret that holds the Elasticsearch + username (used when `strategy` is `basic`). + example: ELASTICSEARCH_USERNAME + type: string + required: + - strategy + type: object ObservabilityPipelineElasticsearchDestinationDataStream: description: Configuration options for writing to Elasticsearch Data Streams instead of a fixed index. @@ -41289,6 +41683,11 @@ components: ObservabilityPipelineEnrichmentTableReferenceTable: description: Uses a Datadog reference table to enrich logs. properties: + app_key_key: + description: Name of the environment variable or secret that holds the Datadog + application key used to access the reference table. + example: DD_APP_KEY + type: string columns: description: List of column names to include from the reference table. If not provided, all columns are included. @@ -41375,6 +41774,11 @@ components: **Supported pipeline types:** logs' properties: + address_key: + description: Name of the environment variable or secret that holds the listen + address for the Fluent Bit receiver. + example: FLUENT_ADDRESS + type: string id: description: The unique identifier for this component. Used in other parts of the pipeline to reference this component (for example, as the `input` @@ -41406,6 +41810,11 @@ components: **Supported pipeline types:** logs' properties: + address_key: + description: Name of the environment variable or secret that holds the listen + address for the Fluent receiver. + example: FLUENT_ADDRESS + type: string id: description: The unique identifier for this component. Used in other parts of the pipeline to reference this component (for example, as the `input` @@ -41432,10 +41841,11 @@ components: x-enum-varnames: - FLUENTD ObservabilityPipelineGcpAuth: - description: GCP credentials used to authenticate with Google Cloud Storage. + description: Google Cloud credentials used to authenticate with Google Cloud + Storage. properties: credentials_file: - description: Path to the GCP service account key file. + description: Path to the Google Cloud service account key file. example: /var/secrets/gcp-credentials.json type: string required: @@ -41590,6 +42000,11 @@ components: type: string encoding: $ref: '#/components/schemas/ObservabilityPipelineGoogleChronicleDestinationEncoding' + endpoint_url_key: + description: Name of the environment variable or secret that holds the Google + Chronicle endpoint URL. + example: CHRONICLE_ENDPOINT_URL + type: string id: description: The unique identifier for this component. example: google-chronicle-destination @@ -41639,7 +42054,7 @@ components: description: 'The `google_cloud_storage` destination stores logs in a Google Cloud Storage (GCS) bucket. - It requires a bucket name, GCP authentication, and metadata fields. + It requires a bucket name, Google Cloud authentication, and metadata fields. **Supported pipeline types:** logs' @@ -41742,6 +42157,11 @@ components: $ref: '#/components/schemas/ObservabilityPipelineBufferOptions' encoding: $ref: '#/components/schemas/ObservabilityPipelineGooglePubSubDestinationEncoding' + endpoint_url_key: + description: Name of the environment variable or secret that holds the Google + Cloud Pub/Sub endpoint URL. + example: GCP_PUBSUB_ENDPOINT_URL + type: string id: description: The unique identifier for this component. example: google-pubsub-destination @@ -41755,7 +42175,7 @@ components: type: string type: array project: - description: The GCP project ID that owns the Pub/Sub topic. + description: The Google Cloud project ID that owns the Pub/Sub topic. example: my-gcp-project type: string tls: @@ -41813,7 +42233,7 @@ components: example: google-pubsub-source type: string project: - description: The GCP project ID that owns the Pub/Sub subscription. + description: The Google Cloud project ID that owns the Pub/Sub subscription. example: my-gcp-project type: string subscription: @@ -41852,6 +42272,11 @@ components: $ref: '#/components/schemas/ObservabilityPipelineHttpClientDestinationAuthStrategy' compression: $ref: '#/components/schemas/ObservabilityPipelineHttpClientDestinationCompression' + custom_key: + description: Name of the environment variable or secret that holds a custom + header value (used with custom auth strategies). + example: HTTP_AUTH_CUSTOM_HEADER + type: string encoding: $ref: '#/components/schemas/ObservabilityPipelineHttpClientDestinationEncoding' id: @@ -41866,10 +42291,30 @@ components: items: type: string type: array + password_key: + description: Name of the environment variable or secret that holds the password + (used when `auth_strategy` is `basic`). + example: HTTP_AUTH_PASSWORD + type: string tls: $ref: '#/components/schemas/ObservabilityPipelineTls' + token_key: + description: Name of the environment variable or secret that holds the bearer + token (used when `auth_strategy` is `bearer`). + example: HTTP_AUTH_TOKEN + type: string type: $ref: '#/components/schemas/ObservabilityPipelineHttpClientDestinationType' + uri_key: + description: Name of the environment variable or secret that holds the HTTP + endpoint URI. + example: HTTP_DESTINATION_URI + type: string + username_key: + description: Name of the environment variable or secret that holds the username + (used when `auth_strategy` is `basic`). + example: HTTP_AUTH_USERNAME + type: string required: - id - type @@ -41933,14 +42378,29 @@ components: properties: auth_strategy: $ref: '#/components/schemas/ObservabilityPipelineHttpClientSourceAuthStrategy' + custom_key: + description: Name of the environment variable or secret that holds a custom + header value (used with custom auth strategies). + example: HTTP_AUTH_CUSTOM_HEADER + type: string decoding: $ref: '#/components/schemas/ObservabilityPipelineDecoding' + endpoint_url_key: + description: Name of the environment variable or secret that holds the HTTP + endpoint URL to scrape. + example: HTTP_ENDPOINT_URL + type: string id: description: The unique identifier for this component. Used in other parts of the pipeline to reference this component (for example, as the `input` to downstream components). example: http-client-source type: string + password_key: + description: Name of the environment variable or secret that holds the password + (used when `auth_strategy` is `basic`). + example: HTTP_AUTH_PASSWORD + type: string scrape_interval_secs: description: The interval (in seconds) between HTTP scrape requests. example: 60 @@ -41953,8 +42413,18 @@ components: type: integer tls: $ref: '#/components/schemas/ObservabilityPipelineTls' + token_key: + description: Name of the environment variable or secret that holds the bearer + token (used when `auth_strategy` is `bearer`). + example: HTTP_AUTH_TOKEN + type: string type: $ref: '#/components/schemas/ObservabilityPipelineHttpClientSourceType' + username_key: + description: Name of the environment variable or secret that holds the username + (used when `auth_strategy` is `basic`). + example: HTTP_AUTH_USERNAME + type: string required: - id - type @@ -41992,18 +42462,38 @@ components: **Supported pipeline types:** logs' properties: + address_key: + description: Name of the environment variable or secret that holds the listen + address for the HTTP server. + example: HTTP_SERVER_ADDRESS + type: string auth_strategy: $ref: '#/components/schemas/ObservabilityPipelineHttpServerSourceAuthStrategy' + custom_key: + description: Name of the environment variable or secret that holds a custom + header value (used with custom auth strategies). + example: HTTP_AUTH_CUSTOM_HEADER + type: string decoding: $ref: '#/components/schemas/ObservabilityPipelineDecoding' id: description: Unique ID for the HTTP server source. example: http-server-source type: string + password_key: + description: Name of the environment variable or secret that holds the password + (used when `auth_strategy` is `plain`). + example: HTTP_AUTH_PASSWORD + type: string tls: $ref: '#/components/schemas/ObservabilityPipelineTls' type: $ref: '#/components/schemas/ObservabilityPipelineHttpServerSourceType' + username_key: + description: Name of the environment variable or secret that holds the username + (used when `auth_strategy` is `plain`). + example: HTTP_AUTH_USERNAME + type: string required: - id - type @@ -42037,6 +42527,11 @@ components: **Supported pipeline types:** logs' properties: + bootstrap_servers_key: + description: Name of the environment variable or secret that holds the Kafka + bootstrap servers list. + example: KAFKA_BOOTSTRAP_SERVERS + type: string compression: $ref: '#/components/schemas/ObservabilityPipelineKafkaDestinationCompression' encoding: @@ -42169,6 +42664,16 @@ components: properties: mechanism: $ref: '#/components/schemas/ObservabilityPipelineKafkaSaslMechanism' + password_key: + description: Name of the environment variable or secret that holds the SASL + password. + example: KAFKA_SASL_PASSWORD + type: string + username_key: + description: Name of the environment variable or secret that holds the SASL + username. + example: KAFKA_SASL_USERNAME + type: string type: object ObservabilityPipelineKafkaSaslMechanism: description: SASL mechanism used for Kafka authentication. @@ -42187,6 +42692,11 @@ components: **Supported pipeline types:** logs' properties: + bootstrap_servers_key: + description: Name of the environment variable or secret that holds the Kafka + bootstrap servers list. + example: KAFKA_BOOTSTRAP_SERVERS + type: string group_id: description: Consumer group ID used by the Kafka client. example: consumer-group-0 @@ -42241,6 +42751,11 @@ components: **Supported pipeline types:** logs' properties: + address_key: + description: Name of the environment variable or secret that holds the listen + address for the Logstash receiver. + example: LOGSTASH_ADDRESS + type: string id: description: The unique identifier for this component. Used in other parts of the pipeline to reference this component (for example, as the `input` @@ -42418,6 +42933,11 @@ components: **Supported pipeline types:** logs' properties: + account_id_key: + description: Name of the environment variable or secret that holds the New + Relic account ID. + example: NEW_RELIC_ACCOUNT_ID + type: string buffer: $ref: '#/components/schemas/ObservabilityPipelineBufferOptions' id: @@ -42432,6 +42952,11 @@ components: items: type: string type: array + license_key_key: + description: Name of the environment variable or secret that holds the New + Relic license key. + example: NEW_RELIC_LICENSE_KEY + type: string region: $ref: '#/components/schemas/ObservabilityPipelineNewRelicDestinationRegion' type: @@ -42677,6 +43202,8 @@ components: **Supported pipeline types:** logs' properties: + auth: + $ref: '#/components/schemas/ObservabilityPipelineElasticsearchDestinationAuth' buffer: $ref: '#/components/schemas/ObservabilityPipelineBufferOptions' bulk_index: @@ -42685,6 +43212,11 @@ components: type: string data_stream: $ref: '#/components/schemas/ObservabilityPipelineOpenSearchDestinationDataStream' + endpoint_url_key: + description: Name of the environment variable or secret that holds the OpenSearch + endpoint URL. + example: OPENSEARCH_ENDPOINT_URL + type: string id: description: The unique identifier for this component. example: opensearch-destination @@ -43394,6 +43926,11 @@ components: properties: buffer: $ref: '#/components/schemas/ObservabilityPipelineBufferOptions' + endpoint_url_key: + description: Name of the environment variable or secret that holds the syslog + server endpoint URL. + example: SYSLOG_ENDPOINT_URL + type: string id: description: The unique identifier for this component. example: rsyslog-destination @@ -43439,6 +43976,11 @@ components: **Supported pipeline types:** logs' properties: + address_key: + description: Name of the environment variable or secret that holds the listen + address for the syslog receiver. + example: SYSLOG_ADDRESS + type: string id: description: The unique identifier for this component. Used in other parts of the pipeline to reference this component (for example, as the `input` @@ -43915,6 +44457,11 @@ components: type: array region: $ref: '#/components/schemas/ObservabilityPipelineSentinelOneDestinationRegion' + token_key: + description: Name of the environment variable or secret that holds the SentinelOne + API token. + example: SENTINELONE_TOKEN + type: string type: $ref: '#/components/schemas/ObservabilityPipelineSentinelOneDestinationType' required: @@ -43955,6 +44502,11 @@ components: **Supported pipeline types:** logs' properties: + address_key: + description: Name of the environment variable or secret that holds the socket + address (host:port). + example: SOCKET_ADDRESS + type: string buffer: $ref: '#/components/schemas/ObservabilityPipelineBufferOptions' encoding: @@ -44089,6 +44641,11 @@ components: **Supported pipeline types:** logs' properties: + address_key: + description: Name of the environment variable or secret that holds the listen + address for the socket. + example: SOCKET_ADDRESS + type: string framing: $ref: '#/components/schemas/ObservabilityPipelineSocketSourceFraming' id: @@ -44337,6 +44894,11 @@ components: $ref: '#/components/schemas/ObservabilityPipelineBufferOptions' encoding: $ref: '#/components/schemas/ObservabilityPipelineSplunkHecDestinationEncoding' + endpoint_url_key: + description: Name of the environment variable or secret that holds the Splunk + HEC endpoint URL. + example: SPLUNK_HEC_ENDPOINT_URL + type: string id: description: The unique identifier for this component. Used in other parts of the pipeline to reference this component (for example, as the `input` @@ -44359,6 +44921,11 @@ components: description: The Splunk sourcetype to assign to log events. example: custom_sourcetype type: string + token_key: + description: Name of the environment variable or secret that holds the Splunk + HEC token. + example: SPLUNK_HEC_TOKEN + type: string type: $ref: '#/components/schemas/ObservabilityPipelineSplunkHecDestinationType' required: @@ -44394,6 +44961,11 @@ components: **Supported pipeline types:** logs' properties: + address_key: + description: Name of the environment variable or secret that holds the listen + address for the HEC API. + example: SPLUNK_HEC_ADDRESS + type: string id: description: The unique identifier for this component. Used in other parts of the pipeline to reference this component (for example, as the `input` @@ -44428,6 +45000,11 @@ components: **Supported pipeline types:** logs' properties: + address_key: + description: Name of the environment variable or secret that holds the listen + address for the Splunk TCP receiver. + example: SPLUNK_TCP_ADDRESS + type: string id: description: The unique identifier for this component. Used in other parts of the pipeline to reference this component (for example, as the `input` @@ -44463,6 +45040,11 @@ components: $ref: '#/components/schemas/ObservabilityPipelineBufferOptions' encoding: $ref: '#/components/schemas/ObservabilityPipelineSumoLogicDestinationEncoding' + endpoint_url_key: + description: Name of the environment variable or secret that holds the Sumo + Logic HTTP endpoint URL. + example: SUMO_LOGIC_ENDPOINT_URL + type: string header_custom_fields: description: A list of custom headers to include in the request to Sumo Logic. @@ -44544,6 +45126,11 @@ components: **Supported pipeline types:** logs' properties: + address_key: + description: Name of the environment variable or secret that holds the listen + address for the Sumo Logic receiver. + example: SUMO_LOGIC_ADDRESS + type: string id: description: The unique identifier for this component. Used in other parts of the pipeline to reference this component (for example, as the `input` @@ -44576,6 +45163,11 @@ components: properties: buffer: $ref: '#/components/schemas/ObservabilityPipelineBufferOptions' + endpoint_url_key: + description: Name of the environment variable or secret that holds the syslog-ng + server endpoint URL. + example: SYSLOG_ENDPOINT_URL + type: string id: description: The unique identifier for this component. example: syslog-ng-destination @@ -44621,6 +45213,11 @@ components: **Supported pipeline types:** logs' properties: + address_key: + description: Name of the environment variable or secret that holds the listen + address for the syslog-ng receiver. + example: SYSLOG_ADDRESS + type: string id: description: The unique identifier for this component. Used in other parts of the pipeline to reference this component (for example, as the `input` @@ -44738,6 +45335,11 @@ components: description: Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication. type: string + key_pass_key: + description: Name of the environment variable or secret that holds the passphrase + for the private key file. + example: TLS_KEY_PASSPHRASE + type: string required: - crt_file type: object @@ -81988,6 +82590,58 @@ paths: - incident_settings_write x-unstable: '**Note**: This endpoint is in public beta. + If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).' + /api/v2/incidents/import: + post: + description: 'Import an incident from an external system. This endpoint allows + you to create incidents with + + historical data such as custom timestamps for detection, declaration, and + resolution. + + Imported incidents do not execute integrations or notification rules.' + operationId: ImportIncident + parameters: + - $ref: '#/components/parameters/IncidentImportIncludeQueryParameter' + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/IncidentImportRequest' + description: Incident import payload. + required: true + responses: + '201': + content: + application/json: + schema: + $ref: '#/components/schemas/IncidentImportResponse' + description: CREATED + '400': + $ref: '#/components/responses/BadRequestResponse' + '401': + $ref: '#/components/responses/UnauthorizedResponse' + '403': + $ref: '#/components/responses/ForbiddenResponse' + '404': + $ref: '#/components/responses/NotFoundResponse' + '429': + $ref: '#/components/responses/TooManyRequestsResponse' + security: + - apiKeyAuth: [] + appKeyAuth: [] + - AuthZ: + - incident_write + summary: Import an incident + tags: + - Incidents + x-codegen-request-body-name: body + x-permission: + operator: AND + permissions: + - incident_write + x-unstable: '**Note**: This endpoint is in Preview. + If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).' /api/v2/incidents/search: get: diff --git a/cassettes/features/v2/incidents/Add-commander-to-an-incident-returns-OK-response.frozen b/cassettes/features/v2/incidents/Add-commander-to-an-incident-returns-OK-response.frozen index bd82a91ef1f3..503ec29de3c8 100644 --- a/cassettes/features/v2/incidents/Add-commander-to-an-incident-returns-OK-response.frozen +++ b/cassettes/features/v2/incidents/Add-commander-to-an-incident-returns-OK-response.frozen @@ -1 +1 @@ -2026-01-19T20:15:42.421Z \ No newline at end of file +2026-02-23T14:06:27.000Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/Add-commander-to-an-incident-returns-OK-response.yml b/cassettes/features/v2/incidents/Add-commander-to-an-incident-returns-OK-response.yml index 6e677a631df1..707562f11f77 100644 --- a/cassettes/features/v2/incidents/Add-commander-to-an-incident-returns-OK-response.yml +++ b/cassettes/features/v2/incidents/Add-commander-to-an-incident-returns-OK-response.yml @@ -1,9 +1,9 @@ http_interactions: -- recorded_at: Mon, 19 Jan 2026 20:15:42 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:27 GMT request: body: encoding: UTF-8 - string: '{"data":{"attributes":{"email":"Test-Add_commander_to_an_incident_returns_OK_response-1768853742@datadoghq.com","title":"user + string: '{"data":{"attributes":{"email":"Test-Add_commander_to_an_incident_returns_OK_response-1771855587@datadoghq.com","title":"user title"},"type":"users"}}' headers: Accept: @@ -15,7 +15,7 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":{"type":"users","id":"d4474f3a-4550-4fe9-b0a9-5a77c253d77f","attributes":{"name":null,"handle":"test-add_commander_to_an_incident_returns_ok_response-1768853742@datadoghq.com","created_at":"2026-01-19T20:15:42.619665+00:00","modified_at":"2026-01-19T20:15:42.619665+00:00","email":"test-add_commander_to_an_incident_returns_ok_response-1768853742@datadoghq.com","icon":"https://secure.gravatar.com/avatar/64249dd4e05b3c0d6e4a959455524e72?s=48&d=retro","title":"user + string: '{"data":{"type":"users","id":"0a671397-1bda-468b-9087-8aa191057af8","attributes":{"name":null,"handle":"test-add_commander_to_an_incident_returns_ok_response-1771855587@datadoghq.com","created_at":"2026-02-23T14:06:27.197025+00:00","modified_at":"2026-02-23T14:06:27.197025+00:00","email":"test-add_commander_to_an_incident_returns_ok_response-1771855587@datadoghq.com","icon":"https://secure.gravatar.com/avatar/74babd7ce1dd50485eb9a0d9d6ed7806?s=48&d=retro","title":"user title","verified":false,"service_account":false,"disabled":false,"allowed_login_methods":[],"status":"Pending","last_login_time":null},"relationships":{"roles":{"data":[]},"org":{"data":{"type":"orgs","id":"4dee724d-00cc-11ea-a77b-570c9d03c6c5"}}}}} ' @@ -25,11 +25,11 @@ http_interactions: status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:15:42 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:27 GMT request: body: encoding: UTF-8 - string: '{"data":{"attributes":{"customer_impacted":false,"title":"Test-Add_commander_to_an_incident_returns_OK_response-1768853742"},"type":"incidents"}}' + string: '{"data":{"attributes":{"customer_impacted":false,"title":"Test-Add_commander_to_an_incident_returns_OK_response-1771855587"},"type":"incidents"}}' headers: Accept: - application/json @@ -40,7 +40,7 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":{"type":"incidents","id":"a25e2476-5ef2-592e-9c2c-e5502361de41","attributes":{"public_id":331298,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Add_commander_to_an_incident_returns_OK_response-1768853742","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-19T20:15:42.855591+00:00","modified":"2026-01-19T20:15:42.855591+00:00","commander":null,"detected":"2026-01-19T20:15:42.844747+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-19T20:15:42.855591+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}}} + string: '{"data":{"type":"incidents","id":"e7a543e2-56dd-5618-9504-3d21644f7505","attributes":{"public_id":338012,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Add_commander_to_an_incident_returns_OK_response-1771855587","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-02-23T14:06:27.384097+00:00","modified":"2026-02-23T14:06:27.384097+00:00","commander":null,"detected":"2026-02-23T14:06:27.373488+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-02-23T14:06:27.384097+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"slug":{"type":"textbox","value":"IR-338012"}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"},{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"2b9f1063-b915-4c7a-8bbd-fc3940245529"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}}} ' headers: @@ -49,22 +49,22 @@ http_interactions: status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:15:42 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:27 GMT request: body: encoding: UTF-8 - string: '{"data":{"id":"a25e2476-5ef2-592e-9c2c-e5502361de41","relationships":{"commander_user":{"data":{"id":"d4474f3a-4550-4fe9-b0a9-5a77c253d77f","type":"users"}}},"type":"incidents"}}' + string: '{"data":{"id":"e7a543e2-56dd-5618-9504-3d21644f7505","relationships":{"commander_user":{"data":{"id":"0a671397-1bda-468b-9087-8aa191057af8","type":"users"}}},"type":"incidents"}}' headers: Accept: - application/json Content-Type: - application/json method: PATCH - uri: https://api.datadoghq.com/api/v2/incidents/a25e2476-5ef2-592e-9c2c-e5502361de41 + uri: https://api.datadoghq.com/api/v2/incidents/e7a543e2-56dd-5618-9504-3d21644f7505 response: body: encoding: UTF-8 - string: '{"data":{"type":"incidents","id":"a25e2476-5ef2-592e-9c2c-e5502361de41","attributes":{"public_id":331298,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Add_commander_to_an_incident_returns_OK_response-1768853742","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","created":"2026-01-19T20:15:42.855591+00:00","modified":"2026-01-19T20:15:43.387702+00:00","commander":{"data":{"type":"users","id":"d4474f3a-4550-4fe9-b0a9-5a77c253d77f","attributes":{"uuid":"d4474f3a-4550-4fe9-b0a9-5a77c253d77f","handle":"test-add_commander_to_an_incident_returns_ok_response-1768853742@datadoghq.com","email":"test-add_commander_to_an_incident_returns_ok_response-1768853742@datadoghq.com","name":null,"icon":"https://secure.gravatar.com/avatar/64249dd4e05b3c0d6e4a959455524e72?s=48&d=retro"}}},"detected":"2026-01-19T20:15:42.844747+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-19T20:15:42.855591+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[{"type":"incident_responders","id":"bcd56649-a36b-57da-8ab9-452a3b27bf35"},{"type":"incident_responders","id":"b54a019a-76cc-5a91-b465-e79647ae4c91"}]},"impacts":{"data":[]}}}} + string: '{"data":{"type":"incidents","id":"e7a543e2-56dd-5618-9504-3d21644f7505","attributes":{"public_id":338012,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Add_commander_to_an_incident_returns_OK_response-1771855587","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","created":"2026-02-23T14:06:27.384097+00:00","modified":"2026-02-23T14:06:27.844609+00:00","commander":{"data":{"type":"users","id":"0a671397-1bda-468b-9087-8aa191057af8","attributes":{"uuid":"0a671397-1bda-468b-9087-8aa191057af8","handle":"test-add_commander_to_an_incident_returns_ok_response-1771855587@datadoghq.com","email":"test-add_commander_to_an_incident_returns_ok_response-1771855587@datadoghq.com","name":null,"icon":"https://secure.gravatar.com/avatar/74babd7ce1dd50485eb9a0d9d6ed7806?s=48&d=retro"}}},"detected":"2026-02-23T14:06:27.373488+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-02-23T14:06:27.384097+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","fields":{"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"slug":{"type":"textbox","value":"IR-338012"}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"},{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"2b9f1063-b915-4c7a-8bbd-fc3940245529"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[{"type":"incident_responders","id":"0fefdfa8-b1bd-52f5-a4a7-e02d7ac61d91"},{"type":"incident_responders","id":"d5fa1fc7-4320-5d6c-b244-16e0cf2d6e7d"}]},"impacts":{"data":[]}}}} ' headers: @@ -73,14 +73,14 @@ http_interactions: status: code: 200 message: OK -- recorded_at: Mon, 19 Jan 2026 20:15:42 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:27 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/a25e2476-5ef2-592e-9c2c-e5502361de41 + uri: https://api.datadoghq.com/api/v2/incidents/e7a543e2-56dd-5618-9504-3d21644f7505 response: body: encoding: UTF-8 @@ -91,14 +91,14 @@ http_interactions: status: code: 204 message: No Content -- recorded_at: Mon, 19 Jan 2026 20:15:42 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:27 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/users/d4474f3a-4550-4fe9-b0a9-5a77c253d77f + uri: https://api.datadoghq.com/api/v2/users/0a671397-1bda-468b-9087-8aa191057af8 response: body: encoding: UTF-8 diff --git a/cassettes/features/v2/incidents/Create-an-incident-integration-metadata-returns-CREATED-response.frozen b/cassettes/features/v2/incidents/Create-an-incident-integration-metadata-returns-CREATED-response.frozen index 74c4d5b06960..f8af8c56bf6e 100644 --- a/cassettes/features/v2/incidents/Create-an-incident-integration-metadata-returns-CREATED-response.frozen +++ b/cassettes/features/v2/incidents/Create-an-incident-integration-metadata-returns-CREATED-response.frozen @@ -1 +1 @@ -2026-01-19T20:15:44.507Z \ No newline at end of file +2026-02-23T14:06:28.722Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/Create-an-incident-integration-metadata-returns-CREATED-response.yml b/cassettes/features/v2/incidents/Create-an-incident-integration-metadata-returns-CREATED-response.yml index bb7d5cc35255..a70c7be01e7b 100644 --- a/cassettes/features/v2/incidents/Create-an-incident-integration-metadata-returns-CREATED-response.yml +++ b/cassettes/features/v2/incidents/Create-an-incident-integration-metadata-returns-CREATED-response.yml @@ -1,9 +1,9 @@ http_interactions: -- recorded_at: Mon, 19 Jan 2026 20:15:44 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:28 GMT request: body: encoding: UTF-8 - string: '{"data":{"attributes":{"customer_impacted":false,"title":"Test-Create_an_incident_integration_metadata_returns_CREATED_response-1768853744"},"type":"incidents"}}' + string: '{"data":{"attributes":{"customer_impacted":false,"title":"Test-Create_an_incident_integration_metadata_returns_CREATED_response-1771855588"},"type":"incidents"}}' headers: Accept: - application/json @@ -14,7 +14,7 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":{"type":"incidents","id":"be62dcc2-a7ce-5b97-b64a-d09a8231566c","attributes":{"public_id":331299,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Create_an_incident_integration_metadata_returns_CREATED_response-1768853744","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-19T20:15:44.734019+00:00","modified":"2026-01-19T20:15:44.734019+00:00","commander":null,"detected":"2026-01-19T20:15:44.723133+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-19T20:15:44.734019+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}}} + string: '{"data":{"type":"incidents","id":"b5a0789a-5592-56fc-8ba4-bfae2e983acf","attributes":{"public_id":338013,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Create_an_incident_integration_metadata_returns_CREATED_response-1771855588","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-02-23T14:06:30.599716+00:00","modified":"2026-02-23T14:06:30.599716+00:00","commander":null,"detected":"2026-02-23T14:06:30.587487+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-02-23T14:06:30.599716+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"slug":{"type":"textbox","value":"IR-338013"}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"},{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"2b9f1063-b915-4c7a-8bbd-fc3940245529"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}}} ' headers: @@ -23,22 +23,22 @@ http_interactions: status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:15:44 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:28 GMT request: body: encoding: UTF-8 - string: '{"data":{"attributes":{"incident_id":"be62dcc2-a7ce-5b97-b64a-d09a8231566c","integration_type":1,"metadata":{"channels":[{"channel_id":"C0123456789","channel_name":"#new-channel","redirect_url":"https://slack.com/app_redirect?channel=C0123456789&team=T01234567","team_id":"T01234567"}]}},"type":"incident_integrations"}}' + string: '{"data":{"attributes":{"incident_id":"b5a0789a-5592-56fc-8ba4-bfae2e983acf","integration_type":1,"metadata":{"channels":[{"channel_id":"C0123456789","channel_name":"#new-channel","redirect_url":"https://slack.com/app_redirect?channel=C0123456789&team=T01234567","team_id":"T01234567"}]}},"type":"incident_integrations"}}' headers: Accept: - application/json Content-Type: - application/json method: POST - uri: https://api.datadoghq.com/api/v2/incidents/be62dcc2-a7ce-5b97-b64a-d09a8231566c/relationships/integrations + uri: https://api.datadoghq.com/api/v2/incidents/b5a0789a-5592-56fc-8ba4-bfae2e983acf/relationships/integrations response: body: encoding: UTF-8 - string: '{"data":{"type":"incident_integrations","id":"f3b2a250-f1ca-5e47-a9a6-b7a4511fbe16","attributes":{"created":"2026-01-19T20:15:45.176817+00:00","modified":"2026-01-19T20:15:45.176817+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","incident_id":"be62dcc2-a7ce-5b97-b64a-d09a8231566c","last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","status":3,"integration_type":1,"metadata":{"channels":[{"channel_id":"C0123456789","channel_name":"#new-channel","redirect_url":"https://slack.com/app_redirect?channel=C0123456789&team=T01234567","team_id":"T01234567"}]}},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}}}}} + string: '{"data":{"type":"incident_integrations","id":"4b033fce-123e-5390-be11-ce0c26a7e1dd","attributes":{"created":"2026-02-23T14:06:31.053271+00:00","modified":"2026-02-23T14:06:31.053271+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","incident_id":"b5a0789a-5592-56fc-8ba4-bfae2e983acf","last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","status":3,"integration_type":1,"metadata":{"channels":[{"channel_id":"C0123456789","channel_name":"#new-channel","redirect_url":"https://slack.com/app_redirect?channel=C0123456789&team=T01234567","team_id":"T01234567"}]}},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}}}}} ' headers: @@ -47,14 +47,14 @@ http_interactions: status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:15:44 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:28 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/be62dcc2-a7ce-5b97-b64a-d09a8231566c/relationships/integrations/f3b2a250-f1ca-5e47-a9a6-b7a4511fbe16 + uri: https://api.datadoghq.com/api/v2/incidents/b5a0789a-5592-56fc-8ba4-bfae2e983acf/relationships/integrations/4b033fce-123e-5390-be11-ce0c26a7e1dd response: body: encoding: UTF-8 @@ -63,14 +63,14 @@ http_interactions: status: code: 204 message: No Content -- recorded_at: Mon, 19 Jan 2026 20:15:44 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:28 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/be62dcc2-a7ce-5b97-b64a-d09a8231566c + uri: https://api.datadoghq.com/api/v2/incidents/b5a0789a-5592-56fc-8ba4-bfae2e983acf response: body: encoding: UTF-8 diff --git a/cassettes/features/v2/incidents/Create-an-incident-returns-CREATED-response.frozen b/cassettes/features/v2/incidents/Create-an-incident-returns-CREATED-response.frozen index 6eded6fce9f0..f91539add100 100644 --- a/cassettes/features/v2/incidents/Create-an-incident-returns-CREATED-response.frozen +++ b/cassettes/features/v2/incidents/Create-an-incident-returns-CREATED-response.frozen @@ -1 +1 @@ -2026-01-19T20:15:45.890Z \ No newline at end of file +2026-02-23T14:06:31.613Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/Create-an-incident-returns-CREATED-response.yml b/cassettes/features/v2/incidents/Create-an-incident-returns-CREATED-response.yml index cac03225a717..71630b3ad0aa 100644 --- a/cassettes/features/v2/incidents/Create-an-incident-returns-CREATED-response.yml +++ b/cassettes/features/v2/incidents/Create-an-incident-returns-CREATED-response.yml @@ -1,9 +1,9 @@ http_interactions: -- recorded_at: Mon, 19 Jan 2026 20:15:45 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:31 GMT request: body: encoding: UTF-8 - string: '{"data":{"attributes":{"email":"Test-Create_an_incident_returns_CREATED_response-1768853745@datadoghq.com","title":"user + string: '{"data":{"attributes":{"email":"Test-Create_an_incident_returns_CREATED_response-1771855591@datadoghq.com","title":"user title"},"type":"users"}}' headers: Accept: @@ -15,7 +15,7 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":{"type":"users","id":"d78b3aff-2e28-4667-8e29-e94ee38bd788","attributes":{"name":null,"handle":"test-create_an_incident_returns_created_response-1768853745@datadoghq.com","created_at":"2026-01-19T20:15:46.089360+00:00","modified_at":"2026-01-19T20:15:46.089360+00:00","email":"test-create_an_incident_returns_created_response-1768853745@datadoghq.com","icon":"https://secure.gravatar.com/avatar/00bdd4aedb03ea4b00cc0f3f11ecc50f?s=48&d=retro","title":"user + string: '{"data":{"type":"users","id":"654d8602-a17a-45dc-b651-ed566eb8a26b","attributes":{"name":null,"handle":"test-create_an_incident_returns_created_response-1771855591@datadoghq.com","created_at":"2026-02-23T14:06:31.782922+00:00","modified_at":"2026-02-23T14:06:31.782922+00:00","email":"test-create_an_incident_returns_created_response-1771855591@datadoghq.com","icon":"https://secure.gravatar.com/avatar/eda02c4de638a2c7760884edacb98f5b?s=48&d=retro","title":"user title","verified":false,"service_account":false,"disabled":false,"allowed_login_methods":[],"status":"Pending","last_login_time":null},"relationships":{"roles":{"data":[]},"org":{"data":{"type":"orgs","id":"4dee724d-00cc-11ea-a77b-570c9d03c6c5"}}}}} ' @@ -25,11 +25,11 @@ http_interactions: status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:15:45 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:31 GMT request: body: encoding: UTF-8 - string: '{"data":{"attributes":{"customer_impacted":false,"fields":{"state":{"type":"dropdown","value":"resolved"}},"title":"Test-Create_an_incident_returns_CREATED_response-1768853745"},"relationships":{"commander_user":{"data":{"id":"d78b3aff-2e28-4667-8e29-e94ee38bd788","type":"users"}}},"type":"incidents"}}' + string: '{"data":{"attributes":{"customer_impacted":false,"fields":{"state":{"type":"dropdown","value":"resolved"}},"title":"Test-Create_an_incident_returns_CREATED_response-1771855591"},"relationships":{"commander_user":{"data":{"id":"654d8602-a17a-45dc-b651-ed566eb8a26b","type":"users"}}},"type":"incidents"}}' headers: Accept: - application/json @@ -40,7 +40,7 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":{"type":"incidents","id":"58dcf408-084e-5f2a-befe-c5fd3629bad1","attributes":{"public_id":331300,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Create_an_incident_returns_CREATED_response-1768853745","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-19T20:15:46.352847+00:00","modified":"2026-01-19T20:15:46.352847+00:00","commander":{"data":{"type":"users","id":"d78b3aff-2e28-4667-8e29-e94ee38bd788","attributes":{"uuid":"d78b3aff-2e28-4667-8e29-e94ee38bd788","handle":"test-create_an_incident_returns_created_response-1768853745@datadoghq.com","email":"test-create_an_incident_returns_created_response-1768853745@datadoghq.com","name":null,"icon":"https://secure.gravatar.com/avatar/00bdd4aedb03ea4b00cc0f3f11ecc50f?s=48&d=retro"}}},"detected":"2026-01-19T20:15:46.343323+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-19T20:15:46.352847+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"resolved"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"resolved","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":{"type":"users","id":"d78b3aff-2e28-4667-8e29-e94ee38bd788"}},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[{"type":"incident_responders","id":"976395cc-d626-5f22-9943-e70e9fe10941"}]},"impacts":{"data":[]}}}} + string: '{"data":{"type":"incidents","id":"d466fcca-9324-5212-97d5-2f7e6d216322","attributes":{"public_id":338014,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Create_an_incident_returns_CREATED_response-1771855591","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-02-23T14:06:31.985081+00:00","modified":"2026-02-23T14:06:31.985081+00:00","commander":{"data":{"type":"users","id":"654d8602-a17a-45dc-b651-ed566eb8a26b","attributes":{"uuid":"654d8602-a17a-45dc-b651-ed566eb8a26b","handle":"test-create_an_incident_returns_created_response-1771855591@datadoghq.com","email":"test-create_an_incident_returns_created_response-1771855591@datadoghq.com","name":null,"icon":"https://secure.gravatar.com/avatar/eda02c4de638a2c7760884edacb98f5b?s=48&d=retro"}}},"detected":"2026-02-23T14:06:31.972725+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-02-23T14:06:31.985081+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"resolved"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"slug":{"type":"textbox","value":"IR-338014"}},"field_analytics":null,"severity":"UNKNOWN","state":"resolved","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":{"type":"users","id":"654d8602-a17a-45dc-b651-ed566eb8a26b"}},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"},{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"2b9f1063-b915-4c7a-8bbd-fc3940245529"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[{"type":"incident_responders","id":"5a0984bb-e7ed-5294-9da4-2fc213169685"}]},"impacts":{"data":[]}}}} ' headers: @@ -49,14 +49,14 @@ http_interactions: status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:15:45 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:31 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/58dcf408-084e-5f2a-befe-c5fd3629bad1 + uri: https://api.datadoghq.com/api/v2/incidents/d466fcca-9324-5212-97d5-2f7e6d216322 response: body: encoding: UTF-8 @@ -67,14 +67,14 @@ http_interactions: status: code: 204 message: No Content -- recorded_at: Mon, 19 Jan 2026 20:15:45 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:31 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/users/d78b3aff-2e28-4667-8e29-e94ee38bd788 + uri: https://api.datadoghq.com/api/v2/users/654d8602-a17a-45dc-b651-ed566eb8a26b response: body: encoding: UTF-8 diff --git a/cassettes/features/v2/incidents/Create-an-incident-type-returns-CREATED-response.frozen b/cassettes/features/v2/incidents/Create-an-incident-type-returns-CREATED-response.frozen index d103e7aa16a1..122af3d629f9 100644 --- a/cassettes/features/v2/incidents/Create-an-incident-type-returns-CREATED-response.frozen +++ b/cassettes/features/v2/incidents/Create-an-incident-type-returns-CREATED-response.frozen @@ -1 +1 @@ -2026-01-19T20:15:47.346Z \ No newline at end of file +2026-02-23T14:06:32.836Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/Create-an-incident-type-returns-CREATED-response.yml b/cassettes/features/v2/incidents/Create-an-incident-type-returns-CREATED-response.yml index a02a429fad93..ae9e5648f95e 100644 --- a/cassettes/features/v2/incidents/Create-an-incident-type-returns-CREATED-response.yml +++ b/cassettes/features/v2/incidents/Create-an-incident-type-returns-CREATED-response.yml @@ -1,5 +1,5 @@ http_interactions: -- recorded_at: Mon, 19 Jan 2026 20:15:47 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:32 GMT request: body: encoding: UTF-8 @@ -16,9 +16,9 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":{"id":"311bd438-9e1e-4920-8d9a-902c036e2530","type":"incident_types","attributes":{"createdAt":"2026-01-19T20:15:47.514049947Z","createdBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","description":"Any + string: '{"data":{"id":"9387e733-5624-4fff-9a9c-89a8544e3bc9","type":"incident_types","attributes":{"createdAt":"2026-02-23T14:06:32.955040877Z","createdBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","description":"Any incidents that harm (or have the potential to) the confidentiality, integrity, - or availability of our data.","is_default":false,"lastModifiedBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","modifiedAt":"2026-01-19T20:15:47.514050021Z","name":"Security + or availability of our data.","is_default":false,"lastModifiedBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","modifiedAt":"2026-02-23T14:06:32.955040959Z","name":"Security Incident","prefix":"IR"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"google_chat_configuration":{"data":null},"google_meet_configuration":{"data":null},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"microsoft_teams_configuration":{"data":null},"zoom_configuration":{"data":null}}}}' headers: Content-Type: @@ -26,14 +26,14 @@ http_interactions: status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:15:47 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:32 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/config/types/311bd438-9e1e-4920-8d9a-902c036e2530 + uri: https://api.datadoghq.com/api/v2/incidents/config/types/9387e733-5624-4fff-9a9c-89a8544e3bc9 response: body: encoding: UTF-8 diff --git a/cassettes/features/v2/incidents/Create-incident-attachment-returns-Created-response.frozen b/cassettes/features/v2/incidents/Create-incident-attachment-returns-Created-response.frozen index b5f2634ea428..e3bc41086304 100644 --- a/cassettes/features/v2/incidents/Create-incident-attachment-returns-Created-response.frozen +++ b/cassettes/features/v2/incidents/Create-incident-attachment-returns-Created-response.frozen @@ -1 +1 @@ -2026-01-19T20:15:47.830Z \ No newline at end of file +2026-02-23T14:06:33.258Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/Create-incident-attachment-returns-Created-response.yml b/cassettes/features/v2/incidents/Create-incident-attachment-returns-Created-response.yml index 73b400feab2d..632ba6b92fad 100644 --- a/cassettes/features/v2/incidents/Create-incident-attachment-returns-Created-response.yml +++ b/cassettes/features/v2/incidents/Create-incident-attachment-returns-Created-response.yml @@ -1,9 +1,9 @@ http_interactions: -- recorded_at: Mon, 19 Jan 2026 20:15:47 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:33 GMT request: body: encoding: UTF-8 - string: '{"data":{"attributes":{"customer_impacted":false,"title":"Test-Create_incident_attachment_returns_Created_response-1768853747"},"type":"incidents"}}' + string: '{"data":{"attributes":{"customer_impacted":false,"title":"Test-Create_incident_attachment_returns_Created_response-1771855593"},"type":"incidents"}}' headers: Accept: - application/json @@ -14,7 +14,7 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":{"type":"incidents","id":"8aadcaa2-2a83-5e81-a433-837664bba9b2","attributes":{"public_id":331301,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Create_incident_attachment_returns_Created_response-1768853747","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-19T20:15:48.033469+00:00","modified":"2026-01-19T20:15:48.033469+00:00","commander":null,"detected":"2026-01-19T20:15:48.023926+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-19T20:15:48.033469+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}}} + string: '{"data":{"type":"incidents","id":"c4e18909-57e4-5f57-8d64-74c2c1b13290","attributes":{"public_id":338015,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Create_incident_attachment_returns_Created_response-1771855593","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-02-23T14:06:33.421258+00:00","modified":"2026-02-23T14:06:33.421258+00:00","commander":null,"detected":"2026-02-23T14:06:33.412085+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-02-23T14:06:33.421258+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"slug":{"type":"textbox","value":"IR-338015"}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"},{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"2b9f1063-b915-4c7a-8bbd-fc3940245529"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}}} ' headers: @@ -23,36 +23,36 @@ http_interactions: status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:15:47 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:33 GMT request: body: encoding: UTF-8 - string: '{"data":{"attributes":{"attachment":{"documentUrl":"https://app.datadoghq.com/notebook/TestCreateincidentattachmentreturnsCreatedresponse1768853747/Test-Create_incident_attachment_returns_Created_response-1768853747","title":"Test-Create_incident_attachment_returns_Created_response-1768853747"},"attachment_type":"postmortem"},"type":"incident_attachments"}}' + string: '{"data":{"attributes":{"attachment":{"documentUrl":"https://app.datadoghq.com/notebook/TestCreateincidentattachmentreturnsCreatedresponse1771855593/Test-Create_incident_attachment_returns_Created_response-1771855593","title":"Test-Create_incident_attachment_returns_Created_response-1771855593"},"attachment_type":"postmortem"},"type":"incident_attachments"}}' headers: Accept: - application/json Content-Type: - application/json method: POST - uri: https://api.datadoghq.com/api/v2/incidents/8aadcaa2-2a83-5e81-a433-837664bba9b2/attachments + uri: https://api.datadoghq.com/api/v2/incidents/c4e18909-57e4-5f57-8d64-74c2c1b13290/attachments response: body: encoding: UTF-8 - string: '{"data":{"id":"a953a914-4667-43ca-b915-babd4fd06ef4","type":"incident_attachments","attributes":{"attachment":{"title":"Test-Create_incident_attachment_returns_Created_response-1768853747","documentUrl":"https://app.datadoghq.com/notebook/TestCreateincidentattachmentreturnsCreatedresponse1768853747/Test-Create_incident_attachment_returns_Created_response-1768853747"},"attachment_type":"postmortem","modified":"2026-01-19T20:15:48.422208Z"},"relationships":{"incident":{"data":{"id":"8aadcaa2-2a83-5e81-a433-837664bba9b2","type":"incidents"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},"included":[{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users","attributes":{"email":"frog@datadoghq.com","handle":"frog@datadoghq.com","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?d=retro\u0026s=48","name":"frog","uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0"}}]}' + string: '{"data":{"id":"77ff4d10-fba3-4a1a-83b1-7296249a5572","type":"incident_attachments","attributes":{"attachment":{"title":"Test-Create_incident_attachment_returns_Created_response-1771855593","documentUrl":"https://app.datadoghq.com/notebook/TestCreateincidentattachmentreturnsCreatedresponse1771855593/Test-Create_incident_attachment_returns_Created_response-1771855593"},"attachment_type":"postmortem","modified":"2026-02-23T14:06:33.732994Z"},"relationships":{"incident":{"data":{"id":"c4e18909-57e4-5f57-8d64-74c2c1b13290","type":"incidents"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},"included":[{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users","attributes":{"email":"frog@datadoghq.com","handle":"frog@datadoghq.com","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?d=retro\u0026s=48","name":"frog","uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0"}}]}' headers: Content-Type: - application/vnd.api+json status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:15:47 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:33 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/8aadcaa2-2a83-5e81-a433-837664bba9b2/attachments/a953a914-4667-43ca-b915-babd4fd06ef4 + uri: https://api.datadoghq.com/api/v2/incidents/c4e18909-57e4-5f57-8d64-74c2c1b13290/attachments/77ff4d10-fba3-4a1a-83b1-7296249a5572 response: body: encoding: UTF-8 @@ -61,14 +61,14 @@ http_interactions: status: code: 204 message: No Content -- recorded_at: Mon, 19 Jan 2026 20:15:47 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:33 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/8aadcaa2-2a83-5e81-a433-837664bba9b2 + uri: https://api.datadoghq.com/api/v2/incidents/c4e18909-57e4-5f57-8d64-74c2c1b13290 response: body: encoding: UTF-8 diff --git a/cassettes/features/v2/incidents/Create-incident-notification-rule-returns-Bad-Request-response.frozen b/cassettes/features/v2/incidents/Create-incident-notification-rule-returns-Bad-Request-response.frozen index df22fef159bc..a3a3b7f28a45 100644 --- a/cassettes/features/v2/incidents/Create-incident-notification-rule-returns-Bad-Request-response.frozen +++ b/cassettes/features/v2/incidents/Create-incident-notification-rule-returns-Bad-Request-response.frozen @@ -1 +1 @@ -2026-01-19T20:15:49.692Z \ No newline at end of file +2026-02-23T14:06:34.889Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/Create-incident-notification-rule-returns-Bad-Request-response.yml b/cassettes/features/v2/incidents/Create-incident-notification-rule-returns-Bad-Request-response.yml index 434555088eb5..9fb7cecddd6c 100644 --- a/cassettes/features/v2/incidents/Create-incident-notification-rule-returns-Bad-Request-response.yml +++ b/cassettes/features/v2/incidents/Create-incident-notification-rule-returns-Bad-Request-response.yml @@ -1,5 +1,5 @@ http_interactions: -- recorded_at: Mon, 19 Jan 2026 20:15:49 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:34 GMT request: body: encoding: UTF-8 diff --git a/cassettes/features/v2/incidents/Create-incident-notification-rule-returns-Created-response.frozen b/cassettes/features/v2/incidents/Create-incident-notification-rule-returns-Created-response.frozen index 4cdd89aba7fb..be05f5858506 100644 --- a/cassettes/features/v2/incidents/Create-incident-notification-rule-returns-Created-response.frozen +++ b/cassettes/features/v2/incidents/Create-incident-notification-rule-returns-Created-response.frozen @@ -1 +1 @@ -2026-01-19T20:15:49.851Z \ No newline at end of file +2026-02-23T14:06:34.978Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/Create-incident-notification-rule-returns-Created-response.yml b/cassettes/features/v2/incidents/Create-incident-notification-rule-returns-Created-response.yml index 30e7b8aa54df..1e8395302c0d 100644 --- a/cassettes/features/v2/incidents/Create-incident-notification-rule-returns-Created-response.yml +++ b/cassettes/features/v2/incidents/Create-incident-notification-rule-returns-Created-response.yml @@ -1,5 +1,5 @@ http_interactions: -- recorded_at: Mon, 19 Jan 2026 20:15:49 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:34 GMT request: body: encoding: UTF-8 @@ -16,9 +16,9 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":{"id":"b2e185e1-d2c0-4e8f-a04b-7772b916b76e","type":"incident_types","attributes":{"createdAt":"2026-01-19T20:15:49.999626031Z","createdBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","description":"Any + string: '{"data":{"id":"02a6c50e-60f7-4deb-b828-15f6de4a421b","type":"incident_types","attributes":{"createdAt":"2026-02-23T14:06:35.091613563Z","createdBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","description":"Any incidents that harm (or have the potential to) the confidentiality, integrity, - or availability of our data.","is_default":false,"lastModifiedBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","modifiedAt":"2026-01-19T20:15:49.999626146Z","name":"Security + or availability of our data.","is_default":false,"lastModifiedBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","modifiedAt":"2026-02-23T14:06:35.091613645Z","name":"Security Incident","prefix":"IR"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"google_chat_configuration":{"data":null},"google_meet_configuration":{"data":null},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"microsoft_teams_configuration":{"data":null},"zoom_configuration":{"data":null}}}}' headers: Content-Type: @@ -26,11 +26,11 @@ http_interactions: status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:15:49 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:34 GMT request: body: encoding: UTF-8 - string: '{"data":{"attributes":{"conditions":[{"field":"severity","values":["SEV-1","SEV-2"]}],"enabled":true,"handles":["@test-email@company.com"],"trigger":"incident_created_trigger","visibility":"organization"},"relationships":{"incident_type":{"data":{"id":"b2e185e1-d2c0-4e8f-a04b-7772b916b76e","type":"incident_types"}}},"type":"incident_notification_rules"}}' + string: '{"data":{"attributes":{"conditions":[{"field":"severity","values":["SEV-1","SEV-2"]}],"enabled":true,"handles":["@test-email@company.com"],"trigger":"incident_created_trigger","visibility":"organization"},"relationships":{"incident_type":{"data":{"id":"02a6c50e-60f7-4deb-b828-15f6de4a421b","type":"incident_types"}}},"type":"incident_notification_rules"}}' headers: Accept: - application/json @@ -41,21 +41,21 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":{"id":"9aabcfd1-25fc-4453-9e43-fe046bc5db74","type":"incident_notification_rules","attributes":{"conditions":[{"field":"severity","values":["SEV-1","SEV-2"]}],"created":"2026-01-19T20:15:50.34977794Z","enabled":true,"handles":["@test-email@company.com"],"modified":"2026-01-19T20:15:50.34977794Z","renotify_on":[],"trigger":"incident_created_trigger","visibility":"organization"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"incident_type":{"data":{"id":"b2e185e1-d2c0-4e8f-a04b-7772b916b76e","type":"incident_types"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' + string: '{"data":{"id":"160a9a8f-0db7-494a-87b2-1f02859e38f5","type":"incident_notification_rules","attributes":{"conditions":[{"field":"severity","values":["SEV-1","SEV-2"]}],"created":"2026-02-23T14:06:35.419838663Z","enabled":true,"handles":["@test-email@company.com"],"modified":"2026-02-23T14:06:35.419838663Z","renotify_on":[],"trigger":"incident_created_trigger","visibility":"organization"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"incident_type":{"data":{"id":"02a6c50e-60f7-4deb-b828-15f6de4a421b","type":"incident_types"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' headers: Content-Type: - application/vnd.api+json status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:15:49 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:34 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/config/notification-rules/9aabcfd1-25fc-4453-9e43-fe046bc5db74 + uri: https://api.datadoghq.com/api/v2/incidents/config/notification-rules/160a9a8f-0db7-494a-87b2-1f02859e38f5 response: body: encoding: UTF-8 @@ -64,14 +64,14 @@ http_interactions: status: code: 204 message: No Content -- recorded_at: Mon, 19 Jan 2026 20:15:49 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:34 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/config/types/b2e185e1-d2c0-4e8f-a04b-7772b916b76e + uri: https://api.datadoghq.com/api/v2/incidents/config/types/02a6c50e-60f7-4deb-b828-15f6de4a421b response: body: encoding: UTF-8 diff --git a/cassettes/features/v2/incidents/Create-incident-notification-template-returns-Bad-Request-response.frozen b/cassettes/features/v2/incidents/Create-incident-notification-template-returns-Bad-Request-response.frozen index f6690957413e..182d5d27be96 100644 --- a/cassettes/features/v2/incidents/Create-incident-notification-template-returns-Bad-Request-response.frozen +++ b/cassettes/features/v2/incidents/Create-incident-notification-template-returns-Bad-Request-response.frozen @@ -1 +1 @@ -2026-01-19T20:15:50.670Z \ No newline at end of file +2026-02-23T14:06:35.640Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/Create-incident-notification-template-returns-Bad-Request-response.yml b/cassettes/features/v2/incidents/Create-incident-notification-template-returns-Bad-Request-response.yml index ee4225a7e574..7e98f327410e 100644 --- a/cassettes/features/v2/incidents/Create-incident-notification-template-returns-Bad-Request-response.yml +++ b/cassettes/features/v2/incidents/Create-incident-notification-template-returns-Bad-Request-response.yml @@ -1,5 +1,5 @@ http_interactions: -- recorded_at: Mon, 19 Jan 2026 20:15:50 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:35 GMT request: body: encoding: UTF-8 diff --git a/cassettes/features/v2/incidents/Create-incident-notification-template-returns-Created-response.frozen b/cassettes/features/v2/incidents/Create-incident-notification-template-returns-Created-response.frozen index de9d7500e9ed..690ac02e8749 100644 --- a/cassettes/features/v2/incidents/Create-incident-notification-template-returns-Created-response.frozen +++ b/cassettes/features/v2/incidents/Create-incident-notification-template-returns-Created-response.frozen @@ -1 +1 @@ -2026-01-19T20:15:50.820Z \ No newline at end of file +2026-02-23T14:06:35.727Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/Create-incident-notification-template-returns-Created-response.yml b/cassettes/features/v2/incidents/Create-incident-notification-template-returns-Created-response.yml index e26c7b43058e..f9d0a23e139a 100644 --- a/cassettes/features/v2/incidents/Create-incident-notification-template-returns-Created-response.yml +++ b/cassettes/features/v2/incidents/Create-incident-notification-template-returns-Created-response.yml @@ -1,5 +1,5 @@ http_interactions: -- recorded_at: Mon, 19 Jan 2026 20:15:50 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:35 GMT request: body: encoding: UTF-8 @@ -16,9 +16,9 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":{"id":"f0e95b2e-1132-46eb-95ad-86ea23bd5ef1","type":"incident_types","attributes":{"createdAt":"2026-01-19T20:15:50.950799587Z","createdBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","description":"Any + string: '{"data":{"id":"2cc8f1be-44fd-4c28-a266-d6f849c67ae7","type":"incident_types","attributes":{"createdAt":"2026-02-23T14:06:35.843225271Z","createdBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","description":"Any incidents that harm (or have the potential to) the confidentiality, integrity, - or availability of our data.","is_default":false,"lastModifiedBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","modifiedAt":"2026-01-19T20:15:50.950799669Z","name":"Security + or availability of our data.","is_default":false,"lastModifiedBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","modifiedAt":"2026-02-23T14:06:35.843225369Z","name":"Security Incident","prefix":"IR"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"google_chat_configuration":{"data":null},"google_meet_configuration":{"data":null},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"microsoft_teams_configuration":{"data":null},"zoom_configuration":{"data":null}}}}' headers: Content-Type: @@ -26,15 +26,15 @@ http_interactions: status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:15:50 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:35 GMT request: body: encoding: UTF-8 string: '{"data":{"attributes":{"category":"alert","content":"An incident has been declared.\n\nTitle: Sample Incident Title\nSeverity: SEV-2\nAffected Services: web-service, database-service\nStatus: active\n\nPlease join the - incident channel for updates.","name":"Test-Create_incident_notification_template_returns_Created_response-1768853750","subject":"SEV-2 - Incident: Sample Incident Title"},"relationships":{"incident_type":{"data":{"id":"f0e95b2e-1132-46eb-95ad-86ea23bd5ef1","type":"incident_types"}}},"type":"notification_templates"}}' + incident channel for updates.","name":"Test-Create_incident_notification_template_returns_Created_response-1771855595","subject":"SEV-2 + Incident: Sample Incident Title"},"relationships":{"incident_type":{"data":{"id":"2cc8f1be-44fd-4c28-a266-d6f849c67ae7","type":"incident_types"}}},"type":"notification_templates"}}' headers: Accept: - application/json @@ -45,25 +45,25 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":{"id":"f1e7a13e-f9c4-41ac-9d49-1b10bf6b5910","type":"notification_templates","attributes":{"category":"alert","content":"An + string: '{"data":{"id":"f5d303e8-5bd4-45f4-9f7e-449c1d57db68","type":"notification_templates","attributes":{"category":"alert","content":"An incident has been declared.\n\nTitle: Sample Incident Title\nSeverity: SEV-2\nAffected Services: web-service, database-service\nStatus: active\n\nPlease join the - incident channel for updates.","created":"2026-01-19T20:15:51.200076Z","modified":"2026-01-19T20:15:51.200076Z","name":"Test-Create_incident_notification_template_returns_Created_response-1768853750","subject":"SEV-2 - Incident: Sample Incident Title"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"incident_type":{"data":{"id":"f0e95b2e-1132-46eb-95ad-86ea23bd5ef1","type":"incident_types"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' + incident channel for updates.","created":"2026-02-23T14:06:36.148518Z","modified":"2026-02-23T14:06:36.148518Z","name":"Test-Create_incident_notification_template_returns_Created_response-1771855595","subject":"SEV-2 + Incident: Sample Incident Title"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"incident_type":{"data":{"id":"2cc8f1be-44fd-4c28-a266-d6f849c67ae7","type":"incident_types"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' headers: Content-Type: - application/vnd.api+json status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:15:50 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:35 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/config/notification-templates/f1e7a13e-f9c4-41ac-9d49-1b10bf6b5910 + uri: https://api.datadoghq.com/api/v2/incidents/config/notification-templates/f5d303e8-5bd4-45f4-9f7e-449c1d57db68 response: body: encoding: UTF-8 @@ -72,14 +72,14 @@ http_interactions: status: code: 204 message: No Content -- recorded_at: Mon, 19 Jan 2026 20:15:50 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:35 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/config/types/f0e95b2e-1132-46eb-95ad-86ea23bd5ef1 + uri: https://api.datadoghq.com/api/v2/incidents/config/types/2cc8f1be-44fd-4c28-a266-d6f849c67ae7 response: body: encoding: UTF-8 diff --git a/cassettes/features/v2/incidents/Create-incident-notification-template-returns-Not-Found-response.frozen b/cassettes/features/v2/incidents/Create-incident-notification-template-returns-Not-Found-response.frozen index 6e6e64f4e1d3..e0f8b40013d1 100644 --- a/cassettes/features/v2/incidents/Create-incident-notification-template-returns-Not-Found-response.frozen +++ b/cassettes/features/v2/incidents/Create-incident-notification-template-returns-Not-Found-response.frozen @@ -1 +1 @@ -2026-01-19T20:15:51.492Z \ No newline at end of file +2026-02-23T14:06:36.336Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/Create-incident-notification-template-returns-Not-Found-response.yml b/cassettes/features/v2/incidents/Create-incident-notification-template-returns-Not-Found-response.yml index e0a9bfc7f8e8..d940ce3edf2b 100644 --- a/cassettes/features/v2/incidents/Create-incident-notification-template-returns-Not-Found-response.yml +++ b/cassettes/features/v2/incidents/Create-incident-notification-template-returns-Not-Found-response.yml @@ -1,5 +1,5 @@ http_interactions: -- recorded_at: Mon, 19 Jan 2026 20:15:51 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:36 GMT request: body: encoding: UTF-8 diff --git a/cassettes/features/v2/incidents/Delete-an-existing-incident-returns-OK-response.frozen b/cassettes/features/v2/incidents/Delete-an-existing-incident-returns-OK-response.frozen index de55405068a8..a3a25aab2026 100644 --- a/cassettes/features/v2/incidents/Delete-an-existing-incident-returns-OK-response.frozen +++ b/cassettes/features/v2/incidents/Delete-an-existing-incident-returns-OK-response.frozen @@ -1 +1 @@ -2026-01-19T20:15:51.633Z \ No newline at end of file +2026-02-23T14:06:36.468Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/Delete-an-existing-incident-returns-OK-response.yml b/cassettes/features/v2/incidents/Delete-an-existing-incident-returns-OK-response.yml index 07caaf10c4d9..73a6c0d8d2b2 100644 --- a/cassettes/features/v2/incidents/Delete-an-existing-incident-returns-OK-response.yml +++ b/cassettes/features/v2/incidents/Delete-an-existing-incident-returns-OK-response.yml @@ -1,9 +1,9 @@ http_interactions: -- recorded_at: Mon, 19 Jan 2026 20:15:51 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:36 GMT request: body: encoding: UTF-8 - string: '{"data":{"attributes":{"customer_impacted":false,"title":"Test-Delete_an_existing_incident_returns_OK_response-1768853751"},"type":"incidents"}}' + string: '{"data":{"attributes":{"customer_impacted":false,"title":"Test-Delete_an_existing_incident_returns_OK_response-1771855596"},"type":"incidents"}}' headers: Accept: - application/json @@ -14,7 +14,7 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":{"type":"incidents","id":"76b9bd04-d60a-59b4-a2b3-b2f1b0acc200","attributes":{"public_id":331302,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Delete_an_existing_incident_returns_OK_response-1768853751","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-19T20:15:51.822728+00:00","modified":"2026-01-19T20:15:51.822728+00:00","commander":null,"detected":"2026-01-19T20:15:51.812861+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-19T20:15:51.822728+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}}} + string: '{"data":{"type":"incidents","id":"6248184c-3ce0-54e7-a9f3-8db44efede9d","attributes":{"public_id":338016,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Delete_an_existing_incident_returns_OK_response-1771855596","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-02-23T14:06:36.626037+00:00","modified":"2026-02-23T14:06:36.626037+00:00","commander":null,"detected":"2026-02-23T14:06:36.615282+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-02-23T14:06:36.626037+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"slug":{"type":"textbox","value":"IR-338016"}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"},{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"2b9f1063-b915-4c7a-8bbd-fc3940245529"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}}} ' headers: @@ -23,14 +23,14 @@ http_interactions: status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:15:51 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:36 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/76b9bd04-d60a-59b4-a2b3-b2f1b0acc200 + uri: https://api.datadoghq.com/api/v2/incidents/6248184c-3ce0-54e7-a9f3-8db44efede9d response: body: encoding: UTF-8 @@ -41,18 +41,18 @@ http_interactions: status: code: 204 message: No Content -- recorded_at: Mon, 19 Jan 2026 20:15:51 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:36 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/76b9bd04-d60a-59b4-a2b3-b2f1b0acc200 + uri: https://api.datadoghq.com/api/v2/incidents/6248184c-3ce0-54e7-a9f3-8db44efede9d response: body: encoding: UTF-8 - string: '{"errors":["incident 76b9bd04-d60a-59b4-a2b3-b2f1b0acc200 not found"]}' + string: '{"errors":["incident 6248184c-3ce0-54e7-a9f3-8db44efede9d not found"]}' headers: Content-Type: - application/json diff --git a/cassettes/features/v2/incidents/Delete-an-incident-integration-metadata-returns-OK-response.frozen b/cassettes/features/v2/incidents/Delete-an-incident-integration-metadata-returns-OK-response.frozen index bf15156b5ab7..ac25ae3ec065 100644 --- a/cassettes/features/v2/incidents/Delete-an-incident-integration-metadata-returns-OK-response.frozen +++ b/cassettes/features/v2/incidents/Delete-an-incident-integration-metadata-returns-OK-response.frozen @@ -1 +1 @@ -2026-01-19T20:15:52.489Z \ No newline at end of file +2026-02-23T14:06:37.736Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/Delete-an-incident-integration-metadata-returns-OK-response.yml b/cassettes/features/v2/incidents/Delete-an-incident-integration-metadata-returns-OK-response.yml index e19d828eb16b..dd00ff65dcc4 100644 --- a/cassettes/features/v2/incidents/Delete-an-incident-integration-metadata-returns-OK-response.yml +++ b/cassettes/features/v2/incidents/Delete-an-incident-integration-metadata-returns-OK-response.yml @@ -1,9 +1,9 @@ http_interactions: -- recorded_at: Mon, 19 Jan 2026 20:15:52 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:37 GMT request: body: encoding: UTF-8 - string: '{"data":{"attributes":{"customer_impacted":false,"title":"Test-Delete_an_incident_integration_metadata_returns_OK_response-1768853752"},"type":"incidents"}}' + string: '{"data":{"attributes":{"customer_impacted":false,"title":"Test-Delete_an_incident_integration_metadata_returns_OK_response-1771855597"},"type":"incidents"}}' headers: Accept: - application/json @@ -14,7 +14,7 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":{"type":"incidents","id":"4977f787-6a5a-5b52-a9e2-e531647ffcab","attributes":{"public_id":331303,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Delete_an_incident_integration_metadata_returns_OK_response-1768853752","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-19T20:15:52.704233+00:00","modified":"2026-01-19T20:15:52.704233+00:00","commander":null,"detected":"2026-01-19T20:15:52.692954+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-19T20:15:52.704233+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}}} + string: '{"data":{"type":"incidents","id":"2730490c-dcca-5736-bd07-5ac94560b128","attributes":{"public_id":338017,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Delete_an_incident_integration_metadata_returns_OK_response-1771855597","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-02-23T14:06:37.902127+00:00","modified":"2026-02-23T14:06:37.902127+00:00","commander":null,"detected":"2026-02-23T14:06:37.892533+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-02-23T14:06:37.902127+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"slug":{"type":"textbox","value":"IR-338017"}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"},{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"2b9f1063-b915-4c7a-8bbd-fc3940245529"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}}} ' headers: @@ -23,22 +23,22 @@ http_interactions: status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:15:52 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:37 GMT request: body: encoding: UTF-8 - string: '{"data":{"attributes":{"incident_id":"4977f787-6a5a-5b52-a9e2-e531647ffcab","integration_type":1,"metadata":{"channels":[{"channel_id":"C0123456789","channel_name":"#example-channel-name","redirect_url":"https://slack.com/app_redirect?channel=C0123456789&team=T01234567","team_id":"T01234567"}]},"status":2},"type":"incident_integrations"}}' + string: '{"data":{"attributes":{"incident_id":"2730490c-dcca-5736-bd07-5ac94560b128","integration_type":1,"metadata":{"channels":[{"channel_id":"C0123456789","channel_name":"#example-channel-name","redirect_url":"https://slack.com/app_redirect?channel=C0123456789&team=T01234567","team_id":"T01234567"}]},"status":2},"type":"incident_integrations"}}' headers: Accept: - application/json Content-Type: - application/json method: POST - uri: https://api.datadoghq.com/api/v2/incidents/4977f787-6a5a-5b52-a9e2-e531647ffcab/relationships/integrations + uri: https://api.datadoghq.com/api/v2/incidents/2730490c-dcca-5736-bd07-5ac94560b128/relationships/integrations response: body: encoding: UTF-8 - string: '{"data":{"type":"incident_integrations","id":"6e80046c-ad6b-568d-9dd1-47bee52e477f","attributes":{"created":"2026-01-19T20:15:53.241811+00:00","modified":"2026-01-19T20:15:53.241811+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","incident_id":"4977f787-6a5a-5b52-a9e2-e531647ffcab","last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","status":3,"integration_type":1,"metadata":{"channels":[{"channel_id":"C0123456789","channel_name":"#example-channel-name","redirect_url":"https://slack.com/app_redirect?channel=C0123456789&team=T01234567","team_id":"T01234567"}]}},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}}}}} + string: '{"data":{"type":"incident_integrations","id":"ef1a8d20-ebae-5389-84ea-35ee453413f6","attributes":{"created":"2026-02-23T14:06:38.291683+00:00","modified":"2026-02-23T14:06:38.291683+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","incident_id":"2730490c-dcca-5736-bd07-5ac94560b128","last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","status":3,"integration_type":1,"metadata":{"channels":[{"channel_id":"C0123456789","channel_name":"#example-channel-name","redirect_url":"https://slack.com/app_redirect?channel=C0123456789&team=T01234567","team_id":"T01234567"}]}},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}}}}} ' headers: @@ -47,14 +47,14 @@ http_interactions: status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:15:52 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:37 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/4977f787-6a5a-5b52-a9e2-e531647ffcab/relationships/integrations/6e80046c-ad6b-568d-9dd1-47bee52e477f + uri: https://api.datadoghq.com/api/v2/incidents/2730490c-dcca-5736-bd07-5ac94560b128/relationships/integrations/ef1a8d20-ebae-5389-84ea-35ee453413f6 response: body: encoding: UTF-8 @@ -63,14 +63,14 @@ http_interactions: status: code: 204 message: No Content -- recorded_at: Mon, 19 Jan 2026 20:15:52 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:37 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/4977f787-6a5a-5b52-a9e2-e531647ffcab/relationships/integrations/6e80046c-ad6b-568d-9dd1-47bee52e477f + uri: https://api.datadoghq.com/api/v2/incidents/2730490c-dcca-5736-bd07-5ac94560b128/relationships/integrations/ef1a8d20-ebae-5389-84ea-35ee453413f6 response: body: encoding: UTF-8 @@ -82,14 +82,14 @@ http_interactions: status: code: 404 message: Not Found -- recorded_at: Mon, 19 Jan 2026 20:15:52 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:37 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/4977f787-6a5a-5b52-a9e2-e531647ffcab + uri: https://api.datadoghq.com/api/v2/incidents/2730490c-dcca-5736-bd07-5ac94560b128 response: body: encoding: UTF-8 diff --git a/cassettes/features/v2/incidents/Delete-an-incident-type-returns-OK-response.frozen b/cassettes/features/v2/incidents/Delete-an-incident-type-returns-OK-response.frozen index 0e0a74408627..fecd095c2275 100644 --- a/cassettes/features/v2/incidents/Delete-an-incident-type-returns-OK-response.frozen +++ b/cassettes/features/v2/incidents/Delete-an-incident-type-returns-OK-response.frozen @@ -1 +1 @@ -2026-01-19T20:15:54.090Z \ No newline at end of file +2026-02-23T14:06:38.985Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/Delete-an-incident-type-returns-OK-response.yml b/cassettes/features/v2/incidents/Delete-an-incident-type-returns-OK-response.yml index 86c0f5c34fa7..ee3dab5bb154 100644 --- a/cassettes/features/v2/incidents/Delete-an-incident-type-returns-OK-response.yml +++ b/cassettes/features/v2/incidents/Delete-an-incident-type-returns-OK-response.yml @@ -1,5 +1,5 @@ http_interactions: -- recorded_at: Mon, 19 Jan 2026 20:15:54 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:38 GMT request: body: encoding: UTF-8 @@ -16,9 +16,9 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":{"id":"277726ef-7483-47e6-9dd8-b09734169bc3","type":"incident_types","attributes":{"createdAt":"2026-01-19T20:15:54.23038215Z","createdBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","description":"Any + string: '{"data":{"id":"4de83701-6769-48fd-aed0-702443e803df","type":"incident_types","attributes":{"createdAt":"2026-02-23T14:06:39.095823286Z","createdBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","description":"Any incidents that harm (or have the potential to) the confidentiality, integrity, - or availability of our data.","is_default":false,"lastModifiedBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","modifiedAt":"2026-01-19T20:15:54.230382224Z","name":"Security + or availability of our data.","is_default":false,"lastModifiedBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","modifiedAt":"2026-02-23T14:06:39.095823376Z","name":"Security Incident","prefix":"IR"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"google_chat_configuration":{"data":null},"google_meet_configuration":{"data":null},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"microsoft_teams_configuration":{"data":null},"zoom_configuration":{"data":null}}}}' headers: Content-Type: @@ -26,14 +26,14 @@ http_interactions: status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:15:54 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:38 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/config/types/277726ef-7483-47e6-9dd8-b09734169bc3 + uri: https://api.datadoghq.com/api/v2/incidents/config/types/4de83701-6769-48fd-aed0-702443e803df response: body: encoding: UTF-8 @@ -42,14 +42,14 @@ http_interactions: status: code: 204 message: No Content -- recorded_at: Mon, 19 Jan 2026 20:15:54 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:38 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/config/types/277726ef-7483-47e6-9dd8-b09734169bc3 + uri: https://api.datadoghq.com/api/v2/incidents/config/types/4de83701-6769-48fd-aed0-702443e803df response: body: encoding: UTF-8 diff --git a/cassettes/features/v2/incidents/Delete-incident-attachment-returns-Not-Found-response.frozen b/cassettes/features/v2/incidents/Delete-incident-attachment-returns-Not-Found-response.frozen index b4661542dd5d..fd91f4d19fe2 100644 --- a/cassettes/features/v2/incidents/Delete-incident-attachment-returns-Not-Found-response.frozen +++ b/cassettes/features/v2/incidents/Delete-incident-attachment-returns-Not-Found-response.frozen @@ -1 +1 @@ -2026-01-19T20:15:54.713Z \ No newline at end of file +2026-02-23T14:06:39.450Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/Delete-incident-attachment-returns-Not-Found-response.yml b/cassettes/features/v2/incidents/Delete-incident-attachment-returns-Not-Found-response.yml index b46c14508ff6..1175842a1bb8 100644 --- a/cassettes/features/v2/incidents/Delete-incident-attachment-returns-Not-Found-response.yml +++ b/cassettes/features/v2/incidents/Delete-incident-attachment-returns-Not-Found-response.yml @@ -1,5 +1,5 @@ http_interactions: -- recorded_at: Mon, 19 Jan 2026 20:15:54 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:39 GMT request: body: null headers: diff --git a/cassettes/features/v2/incidents/Delete-incident-notification-rule-returns-No-Content-response.frozen b/cassettes/features/v2/incidents/Delete-incident-notification-rule-returns-No-Content-response.frozen index a93cdc294667..67f4c2fb5bf4 100644 --- a/cassettes/features/v2/incidents/Delete-incident-notification-rule-returns-No-Content-response.frozen +++ b/cassettes/features/v2/incidents/Delete-incident-notification-rule-returns-No-Content-response.frozen @@ -1 +1 @@ -2026-01-19T20:15:54.879Z \ No newline at end of file +2026-02-23T14:06:39.572Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/Delete-incident-notification-rule-returns-No-Content-response.yml b/cassettes/features/v2/incidents/Delete-incident-notification-rule-returns-No-Content-response.yml index ac32812da396..9f3189b26914 100644 --- a/cassettes/features/v2/incidents/Delete-incident-notification-rule-returns-No-Content-response.yml +++ b/cassettes/features/v2/incidents/Delete-incident-notification-rule-returns-No-Content-response.yml @@ -1,5 +1,5 @@ http_interactions: -- recorded_at: Mon, 19 Jan 2026 20:15:54 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:39 GMT request: body: encoding: UTF-8 @@ -16,9 +16,9 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":{"id":"9ff0a6b4-5e86-46c9-a92f-e656551264b2","type":"incident_types","attributes":{"createdAt":"2026-01-19T20:15:55.015947772Z","createdBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","description":"Any + string: '{"data":{"id":"e64d4c78-53b3-48ce-8e67-e6eec5d2bf1f","type":"incident_types","attributes":{"createdAt":"2026-02-23T14:06:39.676479437Z","createdBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","description":"Any incidents that harm (or have the potential to) the confidentiality, integrity, - or availability of our data.","is_default":false,"lastModifiedBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","modifiedAt":"2026-01-19T20:15:55.015947854Z","name":"Security + or availability of our data.","is_default":false,"lastModifiedBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","modifiedAt":"2026-02-23T14:06:39.676479519Z","name":"Security Incident","prefix":"IR"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"google_chat_configuration":{"data":null},"google_meet_configuration":{"data":null},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"microsoft_teams_configuration":{"data":null},"zoom_configuration":{"data":null}}}}' headers: Content-Type: @@ -26,11 +26,11 @@ http_interactions: status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:15:54 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:39 GMT request: body: encoding: UTF-8 - string: '{"data":{"attributes":{"conditions":[{"field":"severity","values":["SEV-1","SEV-2"]}],"enabled":true,"handles":["@test-email@company.com"],"trigger":"incident_created_trigger","visibility":"organization"},"relationships":{"incident_type":{"data":{"id":"9ff0a6b4-5e86-46c9-a92f-e656551264b2","type":"incident_types"}}},"type":"incident_notification_rules"}}' + string: '{"data":{"attributes":{"conditions":[{"field":"severity","values":["SEV-1","SEV-2"]}],"enabled":true,"handles":["@test-email@company.com"],"trigger":"incident_created_trigger","visibility":"organization"},"relationships":{"incident_type":{"data":{"id":"e64d4c78-53b3-48ce-8e67-e6eec5d2bf1f","type":"incident_types"}}},"type":"incident_notification_rules"}}' headers: Accept: - application/json @@ -41,21 +41,21 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":{"id":"c35898ba-d355-4e68-a6a5-47e3bcb87d63","type":"incident_notification_rules","attributes":{"conditions":[{"field":"severity","values":["SEV-1","SEV-2"]}],"created":"2026-01-19T20:15:55.288625248Z","enabled":true,"handles":["@test-email@company.com"],"modified":"2026-01-19T20:15:55.288625248Z","renotify_on":[],"trigger":"incident_created_trigger","visibility":"organization"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"incident_type":{"data":{"id":"9ff0a6b4-5e86-46c9-a92f-e656551264b2","type":"incident_types"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' + string: '{"data":{"id":"71eed31b-15c3-418f-9492-3fe4e4966540","type":"incident_notification_rules","attributes":{"conditions":[{"field":"severity","values":["SEV-1","SEV-2"]}],"created":"2026-02-23T14:06:39.918910755Z","enabled":true,"handles":["@test-email@company.com"],"modified":"2026-02-23T14:06:39.918910755Z","renotify_on":[],"trigger":"incident_created_trigger","visibility":"organization"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"incident_type":{"data":{"id":"e64d4c78-53b3-48ce-8e67-e6eec5d2bf1f","type":"incident_types"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' headers: Content-Type: - application/vnd.api+json status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:15:54 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:39 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/config/notification-rules/c35898ba-d355-4e68-a6a5-47e3bcb87d63 + uri: https://api.datadoghq.com/api/v2/incidents/config/notification-rules/71eed31b-15c3-418f-9492-3fe4e4966540 response: body: encoding: UTF-8 @@ -64,14 +64,14 @@ http_interactions: status: code: 204 message: No Content -- recorded_at: Mon, 19 Jan 2026 20:15:54 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:39 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/config/notification-rules/c35898ba-d355-4e68-a6a5-47e3bcb87d63 + uri: https://api.datadoghq.com/api/v2/incidents/config/notification-rules/71eed31b-15c3-418f-9492-3fe4e4966540 response: body: encoding: UTF-8 @@ -82,14 +82,14 @@ http_interactions: status: code: 404 message: Not Found -- recorded_at: Mon, 19 Jan 2026 20:15:54 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:39 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/config/types/9ff0a6b4-5e86-46c9-a92f-e656551264b2 + uri: https://api.datadoghq.com/api/v2/incidents/config/types/e64d4c78-53b3-48ce-8e67-e6eec5d2bf1f response: body: encoding: UTF-8 diff --git a/cassettes/features/v2/incidents/Delete-incident-notification-rule-returns-Not-Found-response.frozen b/cassettes/features/v2/incidents/Delete-incident-notification-rule-returns-Not-Found-response.frozen index cfacb1bc08ea..64fa5523fcad 100644 --- a/cassettes/features/v2/incidents/Delete-incident-notification-rule-returns-Not-Found-response.frozen +++ b/cassettes/features/v2/incidents/Delete-incident-notification-rule-returns-Not-Found-response.frozen @@ -1 +1 @@ -2026-01-19T20:15:55.726Z \ No newline at end of file +2026-02-23T14:06:40.217Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/Delete-incident-notification-rule-returns-Not-Found-response.yml b/cassettes/features/v2/incidents/Delete-incident-notification-rule-returns-Not-Found-response.yml index 144f4781bbb8..5e4591e09722 100644 --- a/cassettes/features/v2/incidents/Delete-incident-notification-rule-returns-Not-Found-response.yml +++ b/cassettes/features/v2/incidents/Delete-incident-notification-rule-returns-Not-Found-response.yml @@ -1,5 +1,5 @@ http_interactions: -- recorded_at: Mon, 19 Jan 2026 20:15:55 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:40 GMT request: body: null headers: diff --git a/cassettes/features/v2/incidents/Delete-incident-notification-template-returns-No-Content-response.frozen b/cassettes/features/v2/incidents/Delete-incident-notification-template-returns-No-Content-response.frozen index 204aab2b2323..3e1a8b358600 100644 --- a/cassettes/features/v2/incidents/Delete-incident-notification-template-returns-No-Content-response.frozen +++ b/cassettes/features/v2/incidents/Delete-incident-notification-template-returns-No-Content-response.frozen @@ -1 +1 @@ -2026-01-19T20:15:55.863Z \ No newline at end of file +2026-02-23T14:06:40.305Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/Delete-incident-notification-template-returns-No-Content-response.yml b/cassettes/features/v2/incidents/Delete-incident-notification-template-returns-No-Content-response.yml index ae9c8e219ecf..cd5dd4a7d40c 100644 --- a/cassettes/features/v2/incidents/Delete-incident-notification-template-returns-No-Content-response.yml +++ b/cassettes/features/v2/incidents/Delete-incident-notification-template-returns-No-Content-response.yml @@ -1,5 +1,5 @@ http_interactions: -- recorded_at: Mon, 19 Jan 2026 20:15:55 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:40 GMT request: body: encoding: UTF-8 @@ -16,9 +16,9 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":{"id":"f3cd4435-48ee-4b07-bf6f-bfabd4d61b78","type":"incident_types","attributes":{"createdAt":"2026-01-19T20:15:55.998248893Z","createdBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","description":"Any + string: '{"data":{"id":"486b278d-6bd2-4eb4-950b-5985c3ed155f","type":"incident_types","attributes":{"createdAt":"2026-02-23T14:06:40.417374516Z","createdBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","description":"Any incidents that harm (or have the potential to) the confidentiality, integrity, - or availability of our data.","is_default":false,"lastModifiedBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","modifiedAt":"2026-01-19T20:15:55.998248991Z","name":"Security + or availability of our data.","is_default":false,"lastModifiedBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","modifiedAt":"2026-02-23T14:06:40.417374598Z","name":"Security Incident","prefix":"IR"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"google_chat_configuration":{"data":null},"google_meet_configuration":{"data":null},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"microsoft_teams_configuration":{"data":null},"zoom_configuration":{"data":null}}}}' headers: Content-Type: @@ -26,13 +26,13 @@ http_interactions: status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:15:55 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:40 GMT request: body: encoding: UTF-8 string: '{"data":{"attributes":{"category":"alert","content":"Test notification - template","name":"Test Template Test-Delete_incident_notification_template_returns_No_Content_response-1768853755","subject":"Test - Subject"},"relationships":{"incident_type":{"data":{"id":"f3cd4435-48ee-4b07-bf6f-bfabd4d61b78","type":"incident_types"}}},"type":"notification_templates"}}' + template","name":"Test Template Test-Delete_incident_notification_template_returns_No_Content_response-1771855600","subject":"Test + Subject"},"relationships":{"incident_type":{"data":{"id":"486b278d-6bd2-4eb4-950b-5985c3ed155f","type":"incident_types"}}},"type":"notification_templates"}}' headers: Accept: - application/json @@ -43,24 +43,24 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":{"id":"defd8fff-8d3c-47fa-a7ae-b1aa3ddc552b","type":"notification_templates","attributes":{"category":"alert","content":"Test - notification template","created":"2026-01-19T20:15:56.26957Z","modified":"2026-01-19T20:15:56.26957Z","name":"Test - Template Test-Delete_incident_notification_template_returns_No_Content_response-1768853755","subject":"Test - Subject"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"incident_type":{"data":{"id":"f3cd4435-48ee-4b07-bf6f-bfabd4d61b78","type":"incident_types"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' + string: '{"data":{"id":"4e29aefe-98c5-4cdf-a837-2a916bc79395","type":"notification_templates","attributes":{"category":"alert","content":"Test + notification template","created":"2026-02-23T14:06:40.827464Z","modified":"2026-02-23T14:06:40.827464Z","name":"Test + Template Test-Delete_incident_notification_template_returns_No_Content_response-1771855600","subject":"Test + Subject"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"incident_type":{"data":{"id":"486b278d-6bd2-4eb4-950b-5985c3ed155f","type":"incident_types"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' headers: Content-Type: - application/vnd.api+json status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:15:55 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:40 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/config/notification-templates/defd8fff-8d3c-47fa-a7ae-b1aa3ddc552b + uri: https://api.datadoghq.com/api/v2/incidents/config/notification-templates/4e29aefe-98c5-4cdf-a837-2a916bc79395 response: body: encoding: UTF-8 @@ -69,14 +69,14 @@ http_interactions: status: code: 204 message: No Content -- recorded_at: Mon, 19 Jan 2026 20:15:55 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:40 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/config/notification-templates/defd8fff-8d3c-47fa-a7ae-b1aa3ddc552b + uri: https://api.datadoghq.com/api/v2/incidents/config/notification-templates/4e29aefe-98c5-4cdf-a837-2a916bc79395 response: body: encoding: UTF-8 @@ -87,14 +87,14 @@ http_interactions: status: code: 404 message: Not Found -- recorded_at: Mon, 19 Jan 2026 20:15:55 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:40 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/config/types/f3cd4435-48ee-4b07-bf6f-bfabd4d61b78 + uri: https://api.datadoghq.com/api/v2/incidents/config/types/486b278d-6bd2-4eb4-950b-5985c3ed155f response: body: encoding: UTF-8 diff --git a/cassettes/features/v2/incidents/Get-a-list-of-an-incident-s-integration-metadata-returns-OK-response.frozen b/cassettes/features/v2/incidents/Get-a-list-of-an-incident-s-integration-metadata-returns-OK-response.frozen index dc13f490d118..721098dbf9a1 100644 --- a/cassettes/features/v2/incidents/Get-a-list-of-an-incident-s-integration-metadata-returns-OK-response.frozen +++ b/cassettes/features/v2/incidents/Get-a-list-of-an-incident-s-integration-metadata-returns-OK-response.frozen @@ -1 +1 @@ -2026-01-19T20:15:56.705Z \ No newline at end of file +2026-02-23T14:06:41.205Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/Get-a-list-of-an-incident-s-integration-metadata-returns-OK-response.yml b/cassettes/features/v2/incidents/Get-a-list-of-an-incident-s-integration-metadata-returns-OK-response.yml index b61c0be9b430..b69a03623dd5 100644 --- a/cassettes/features/v2/incidents/Get-a-list-of-an-incident-s-integration-metadata-returns-OK-response.yml +++ b/cassettes/features/v2/incidents/Get-a-list-of-an-incident-s-integration-metadata-returns-OK-response.yml @@ -1,9 +1,9 @@ http_interactions: -- recorded_at: Mon, 19 Jan 2026 20:15:56 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:41 GMT request: body: encoding: UTF-8 - string: '{"data":{"attributes":{"customer_impacted":false,"title":"Test-Get_a_list_of_an_incident_s_integration_metadata_returns_OK_response-1768853756"},"type":"incidents"}}' + string: '{"data":{"attributes":{"customer_impacted":false,"title":"Test-Get_a_list_of_an_incident_s_integration_metadata_returns_OK_response-1771855601"},"type":"incidents"}}' headers: Accept: - application/json @@ -14,7 +14,7 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":{"type":"incidents","id":"a5985815-27b5-5041-ae6c-9aab8e83d368","attributes":{"public_id":331304,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Get_a_list_of_an_incident_s_integration_metadata_returns_OK_response-1768853756","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-19T20:15:56.880881+00:00","modified":"2026-01-19T20:15:56.880881+00:00","commander":null,"detected":"2026-01-19T20:15:56.871849+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-19T20:15:56.880881+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}}} + string: '{"data":{"type":"incidents","id":"6443dedf-4664-5a19-b321-8948ddc9d30c","attributes":{"public_id":338018,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Get_a_list_of_an_incident_s_integration_metadata_returns_OK_response-1771855601","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-02-23T14:06:41.357032+00:00","modified":"2026-02-23T14:06:41.357032+00:00","commander":null,"detected":"2026-02-23T14:06:41.347849+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-02-23T14:06:41.357032+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"slug":{"type":"textbox","value":"IR-338018"}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"},{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"2b9f1063-b915-4c7a-8bbd-fc3940245529"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}}} ' headers: @@ -23,22 +23,22 @@ http_interactions: status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:15:56 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:41 GMT request: body: encoding: UTF-8 - string: '{"data":{"attributes":{"incident_id":"a5985815-27b5-5041-ae6c-9aab8e83d368","integration_type":1,"metadata":{"channels":[{"channel_id":"C0123456789","channel_name":"#example-channel-name","redirect_url":"https://slack.com/app_redirect?channel=C0123456789&team=T01234567","team_id":"T01234567"}]},"status":2},"type":"incident_integrations"}}' + string: '{"data":{"attributes":{"incident_id":"6443dedf-4664-5a19-b321-8948ddc9d30c","integration_type":1,"metadata":{"channels":[{"channel_id":"C0123456789","channel_name":"#example-channel-name","redirect_url":"https://slack.com/app_redirect?channel=C0123456789&team=T01234567","team_id":"T01234567"}]},"status":2},"type":"incident_integrations"}}' headers: Accept: - application/json Content-Type: - application/json method: POST - uri: https://api.datadoghq.com/api/v2/incidents/a5985815-27b5-5041-ae6c-9aab8e83d368/relationships/integrations + uri: https://api.datadoghq.com/api/v2/incidents/6443dedf-4664-5a19-b321-8948ddc9d30c/relationships/integrations response: body: encoding: UTF-8 - string: '{"data":{"type":"incident_integrations","id":"31cbe842-8b15-5eff-a554-ea6380e47222","attributes":{"created":"2026-01-19T20:15:57.388410+00:00","modified":"2026-01-19T20:15:57.388410+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","incident_id":"a5985815-27b5-5041-ae6c-9aab8e83d368","last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","status":3,"integration_type":1,"metadata":{"channels":[{"channel_id":"C0123456789","channel_name":"#example-channel-name","redirect_url":"https://slack.com/app_redirect?channel=C0123456789&team=T01234567","team_id":"T01234567"}]}},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}}}}} + string: '{"data":{"type":"incident_integrations","id":"2d47ae0b-b4fb-5a92-b1d1-3ee1fb69445a","attributes":{"created":"2026-02-23T14:06:41.745348+00:00","modified":"2026-02-23T14:06:41.745348+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","incident_id":"6443dedf-4664-5a19-b321-8948ddc9d30c","last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","status":3,"integration_type":1,"metadata":{"channels":[{"channel_id":"C0123456789","channel_name":"#example-channel-name","redirect_url":"https://slack.com/app_redirect?channel=C0123456789&team=T01234567","team_id":"T01234567"}]}},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}}}}} ' headers: @@ -47,32 +47,32 @@ http_interactions: status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:15:56 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:41 GMT request: body: null headers: Accept: - application/json method: GET - uri: https://api.datadoghq.com/api/v2/incidents/a5985815-27b5-5041-ae6c-9aab8e83d368/relationships/integrations + uri: https://api.datadoghq.com/api/v2/incidents/6443dedf-4664-5a19-b321-8948ddc9d30c/relationships/integrations response: body: encoding: UTF-8 - string: '{"data":[{"id":"31cbe842-8b15-5eff-a554-ea6380e47222","type":"incident_integrations","attributes":{"created":"2026-01-19T20:15:57.38841Z","created_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","incident_id":"a5985815-27b5-5041-ae6c-9aab8e83d368","integration_type":1,"last_modified_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","metadata":{"channels":[{"team_id":"T01234567","channel_id":"C0123456789","channel_name":"#example-channel-name","redirect_url":"https://slack.com/app_redirect?channel=C0123456789\u0026team=T01234567"}]},"modified":"2026-01-19T20:15:57.38841Z","status":3},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}],"meta":{"pagination":{"offset":0,"next_offset":25,"size":1}}}' + string: '{"data":[{"id":"2d47ae0b-b4fb-5a92-b1d1-3ee1fb69445a","type":"incident_integrations","attributes":{"created":"2026-02-23T14:06:41.745348Z","created_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","incident_id":"6443dedf-4664-5a19-b321-8948ddc9d30c","integration_type":1,"last_modified_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","metadata":{"channels":[{"team_id":"T01234567","channel_id":"C0123456789","channel_name":"#example-channel-name","redirect_url":"https://slack.com/app_redirect?channel=C0123456789\u0026team=T01234567"}]},"modified":"2026-02-23T14:06:41.745348Z","status":3},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}],"meta":{"pagination":{"offset":0,"next_offset":25,"size":1}}}' headers: Content-Type: - application/vnd.api+json status: code: 200 message: OK -- recorded_at: Mon, 19 Jan 2026 20:15:56 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:41 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/a5985815-27b5-5041-ae6c-9aab8e83d368/relationships/integrations/31cbe842-8b15-5eff-a554-ea6380e47222 + uri: https://api.datadoghq.com/api/v2/incidents/6443dedf-4664-5a19-b321-8948ddc9d30c/relationships/integrations/2d47ae0b-b4fb-5a92-b1d1-3ee1fb69445a response: body: encoding: UTF-8 @@ -81,14 +81,14 @@ http_interactions: status: code: 204 message: No Content -- recorded_at: Mon, 19 Jan 2026 20:15:56 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:41 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/a5985815-27b5-5041-ae6c-9aab8e83d368 + uri: https://api.datadoghq.com/api/v2/incidents/6443dedf-4664-5a19-b321-8948ddc9d30c response: body: encoding: UTF-8 diff --git a/cassettes/features/v2/incidents/Get-a-list-of-incidents-returns-OK-response.frozen b/cassettes/features/v2/incidents/Get-a-list-of-incidents-returns-OK-response.frozen index 6ae1999a44f1..a41d09422206 100644 --- a/cassettes/features/v2/incidents/Get-a-list-of-incidents-returns-OK-response.frozen +++ b/cassettes/features/v2/incidents/Get-a-list-of-incidents-returns-OK-response.frozen @@ -1 +1 @@ -2026-01-19T20:15:58.252Z \ No newline at end of file +2026-02-23T14:06:42.399Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/Get-a-list-of-incidents-returns-OK-response.yml b/cassettes/features/v2/incidents/Get-a-list-of-incidents-returns-OK-response.yml index a94d5fe776ed..a2feaefc7f4a 100644 --- a/cassettes/features/v2/incidents/Get-a-list-of-incidents-returns-OK-response.yml +++ b/cassettes/features/v2/incidents/Get-a-list-of-incidents-returns-OK-response.yml @@ -1,9 +1,9 @@ http_interactions: -- recorded_at: Mon, 19 Jan 2026 20:15:58 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:42 GMT request: body: encoding: UTF-8 - string: '{"data":{"attributes":{"customer_impacted":false,"title":"Test-Get_a_list_of_incidents_returns_OK_response-1768853758"},"type":"incidents"}}' + string: '{"data":{"attributes":{"customer_impacted":false,"title":"Test-Get_a_list_of_incidents_returns_OK_response-1771855602"},"type":"incidents"}}' headers: Accept: - application/json @@ -14,7 +14,7 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":{"type":"incidents","id":"d9fe118a-ff95-5e43-a7b7-47149a8b0b05","attributes":{"public_id":331305,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Get_a_list_of_incidents_returns_OK_response-1768853758","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-19T20:15:58.453764+00:00","modified":"2026-01-19T20:15:58.453764+00:00","commander":null,"detected":"2026-01-19T20:15:58.443409+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-19T20:15:58.453764+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}}} + string: '{"data":{"type":"incidents","id":"f5f7e414-a9bf-50d2-8d46-e12c8be381d9","attributes":{"public_id":338019,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Get_a_list_of_incidents_returns_OK_response-1771855602","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-02-23T14:06:42.549748+00:00","modified":"2026-02-23T14:06:42.549748+00:00","commander":null,"detected":"2026-02-23T14:06:42.541000+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-02-23T14:06:42.549748+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"slug":{"type":"textbox","value":"IR-338019"}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"},{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"2b9f1063-b915-4c7a-8bbd-fc3940245529"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}}} ' headers: @@ -23,7 +23,7 @@ http_interactions: status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:15:58 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:42 GMT request: body: null headers: @@ -34,7 +34,7 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":[{"type":"incidents","id":"5767f1db-a2fa-5b39-9975-3bf5b391f1cc","attributes":{"public_id":304434,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Typescript-Add_commander_to_an_incident_returns_OK_response-1755515495","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","created":"2025-08-18T11:11:35.687169+00:00","modified":"2025-08-18T11:11:35.687169+00:00","detected":"2025-08-18T11:11:35.673290+00:00","created_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2025-08-18T11:11:35.687169+00:00","declared_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"last_modified_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"f1a35e64-46ca-5c2f-b257-a5ddc8ef6e52","attributes":{"public_id":304435,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Typescript-Create_an_incident_attachment_returns_OK_response-1755515496","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","created":"2025-08-18T11:11:36.287413+00:00","modified":"2025-08-18T11:11:36.287413+00:00","detected":"2025-08-18T11:11:36.274291+00:00","created_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2025-08-18T11:11:36.287413+00:00","declared_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"last_modified_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"d5606de0-5ba1-55b8-939f-fbf84cd9f9a3","attributes":{"public_id":304436,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Typescript-Create_an_incident_integration_metadata_returns_CREATED_response-1755515496","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","created":"2025-08-18T11:11:36.565337+00:00","modified":"2025-08-18T11:11:36.565337+00:00","detected":"2025-08-18T11:11:36.554968+00:00","created_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2025-08-18T11:11:36.565337+00:00","declared_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"last_modified_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"164e2152-36ae-5eaf-9104-62662275f1a5","attributes":{"public_id":304437,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Typescript-Create_an_incident_returns_CREATED_response-1755515496","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","created":"2025-08-18T11:11:37.048787+00:00","modified":"2025-08-18T11:11:37.048787+00:00","detected":"2025-08-18T11:11:37.030990+00:00","created_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2025-08-18T11:11:37.048787+00:00","declared_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"resolved"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"resolved","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"last_modified_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"commander_user":{"data":{"type":"users","id":"1b66a89c-7c24-11f0-82ce-56b8c7416041"}},"declared_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[{"type":"incident_responders","id":"ab16b388-11c7-54db-a1ab-4cb226248909"}]},"impacts":{"data":[]}}},{"type":"incidents","id":"0ca9cde5-deac-5965-b2a9-822e30397180","attributes":{"public_id":304438,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Typescript-Delete_an_existing_incident_returns_OK_response-1755515497","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","created":"2025-08-18T11:11:37.863308+00:00","modified":"2025-08-18T11:11:37.863308+00:00","detected":"2025-08-18T11:11:37.850191+00:00","created_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2025-08-18T11:11:37.863308+00:00","declared_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"last_modified_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"298196bc-7f15-54d6-b1e9-795e72a45bdf","attributes":{"public_id":304439,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Typescript-Delete_an_incident_integration_metadata_returns_OK_response-1755515498","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","created":"2025-08-18T11:11:38.229205+00:00","modified":"2025-08-18T11:11:38.229205+00:00","detected":"2025-08-18T11:11:38.216463+00:00","created_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2025-08-18T11:11:38.229205+00:00","declared_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"last_modified_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"affe2d1c-fa3d-53f7-bce0-d21ccaabbe31","attributes":{"public_id":304440,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Typescript-Get_a_list_of_an_incident_s_integration_metadata_returns_OK_response-1755515498","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","created":"2025-08-18T11:11:38.519642+00:00","modified":"2025-08-18T11:11:38.519642+00:00","detected":"2025-08-18T11:11:38.504994+00:00","created_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2025-08-18T11:11:38.519642+00:00","declared_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"last_modified_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"6b5ac13e-2332-5179-943f-38d86a0b0c77","attributes":{"public_id":304441,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Typescript-Get_a_list_of_incidents_returns_OK_response-1755515498","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","created":"2025-08-18T11:11:38.860261+00:00","modified":"2025-08-18T11:11:38.860261+00:00","detected":"2025-08-18T11:11:38.848243+00:00","created_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2025-08-18T11:11:38.860261+00:00","declared_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"last_modified_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"81864d0b-40ae-5590-9b1e-35f551e49519","attributes":{"public_id":304442,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Typescript-Get_incident_attachments_returns_OK_response-1755515499","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","created":"2025-08-18T11:11:39.168645+00:00","modified":"2025-08-18T11:11:39.168645+00:00","detected":"2025-08-18T11:11:39.155530+00:00","created_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2025-08-18T11:11:39.168645+00:00","declared_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"last_modified_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"c19c927f-659d-5744-89da-228e8bde084e","attributes":{"public_id":304443,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Typescript-Get_incident_integration_metadata_details_returns_OK_response-1755515499","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","created":"2025-08-18T11:11:39.521364+00:00","modified":"2025-08-18T11:11:39.521364+00:00","detected":"2025-08-18T11:11:39.510054+00:00","created_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2025-08-18T11:11:39.521364+00:00","declared_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"last_modified_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"63e030fa-a2e4-591d-8c82-4a9132797abd","attributes":{"public_id":304444,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Typescript-Get_the_details_of_an_incident_returns_OK_response-1755515499","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","created":"2025-08-18T11:11:39.828135+00:00","modified":"2025-08-18T11:11:39.828135+00:00","detected":"2025-08-18T11:11:39.815744+00:00","created_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2025-08-18T11:11:39.828135+00:00","declared_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"last_modified_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"d351fedb-94e9-515d-a176-2517cdcd9fe1","attributes":{"public_id":304445,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Typescript-Remove_commander_from_an_incident_returns_OK_response-1755515500","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","created":"2025-08-18T11:11:40.131009+00:00","modified":"2025-08-18T11:11:40.131009+00:00","detected":"2025-08-18T11:11:40.111446+00:00","created_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2025-08-18T11:11:40.131009+00:00","declared_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"last_modified_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"11d74b52-6ceb-550b-ae1b-e67e7d5f4e15","attributes":{"public_id":304446,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Typescript-Update_an_existing_incident_integration_metadata_returns_OK_response-1755515500","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","created":"2025-08-18T11:11:40.444428+00:00","modified":"2025-08-18T11:11:40.444428+00:00","detected":"2025-08-18T11:11:40.432874+00:00","created_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2025-08-18T11:11:40.444428+00:00","declared_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"last_modified_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"3d016518-c79b-5c58-a8a9-e2a9011a8c77","attributes":{"public_id":304447,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Typescript-Update_an_existing_incident_returns_OK_response-1755515500","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","created":"2025-08-18T11:11:40.787973+00:00","modified":"2025-08-18T11:11:40.787973+00:00","detected":"2025-08-18T11:11:40.775879+00:00","created_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2025-08-18T11:11:40.787973+00:00","declared_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"last_modified_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"bb0222fd-c62f-5548-a2b9-2b326ec99884","attributes":{"public_id":304448,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Typescript-Update_an_incident_todo_returns_OK_response-1755515500","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","created":"2025-08-18T11:11:41.069461+00:00","modified":"2025-08-18T11:11:41.069461+00:00","detected":"2025-08-18T11:11:41.055205+00:00","created_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2025-08-18T11:11:41.069461+00:00","declared_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"last_modified_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"57685d06-6b3b-5d88-9aad-6f22d3588446","attributes":{"public_id":304609,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Typescript-Add_commander_to_an_incident_returns_OK_response-1755601870","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","created":"2025-08-19T11:11:10.467537+00:00","modified":"2025-08-19T11:11:10.467537+00:00","detected":"2025-08-19T11:11:10.456726+00:00","created_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2025-08-19T11:11:10.467537+00:00","declared_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"last_modified_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"94134cbd-426f-5b29-bba0-a8eb05d5476a","attributes":{"public_id":304610,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Typescript-Create_an_incident_attachment_returns_OK_response-1755601870","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","created":"2025-08-19T11:11:11.086359+00:00","modified":"2025-08-19T11:11:11.086359+00:00","detected":"2025-08-19T11:11:11.072824+00:00","created_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2025-08-19T11:11:11.086359+00:00","declared_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"last_modified_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"25e0889e-62bf-59ba-b673-57c26d8559a8","attributes":{"public_id":304611,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Typescript-Create_an_incident_integration_metadata_returns_CREATED_response-1755601871","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","created":"2025-08-19T11:11:11.464911+00:00","modified":"2025-08-19T11:11:11.464911+00:00","detected":"2025-08-19T11:11:11.452551+00:00","created_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2025-08-19T11:11:11.464911+00:00","declared_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"last_modified_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"ca1a6cb3-d286-562e-ac64-cffcaf68f382","attributes":{"public_id":304612,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Typescript-Create_an_incident_returns_CREATED_response-1755601871","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","created":"2025-08-19T11:11:11.994051+00:00","modified":"2025-08-19T11:11:11.994051+00:00","detected":"2025-08-19T11:11:11.973036+00:00","created_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2025-08-19T11:11:11.994051+00:00","declared_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"resolved"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"resolved","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"last_modified_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"commander_user":{"data":{"type":"users","id":"36db2935-7ced-11f0-8ab2-aaa6cfbf43ab"}},"declared_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[{"type":"incident_responders","id":"c30270a3-09b3-5c33-ad86-7bfb33673ede"}]},"impacts":{"data":[]}}},{"type":"incidents","id":"9c4687ae-f197-5591-96f4-628fb8ea5483","attributes":{"public_id":304613,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Typescript-Delete_an_existing_incident_returns_OK_response-1755601872","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","created":"2025-08-19T11:11:12.832769+00:00","modified":"2025-08-19T11:11:12.832769+00:00","detected":"2025-08-19T11:11:12.821456+00:00","created_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2025-08-19T11:11:12.832769+00:00","declared_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"last_modified_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"ed8a9581-d4c7-563c-9d26-edbcc9466048","attributes":{"public_id":304614,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Typescript-Delete_an_incident_integration_metadata_returns_OK_response-1755601873","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","created":"2025-08-19T11:11:13.134689+00:00","modified":"2025-08-19T11:11:13.134689+00:00","detected":"2025-08-19T11:11:13.121312+00:00","created_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2025-08-19T11:11:13.134689+00:00","declared_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"last_modified_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"ed61e152-b189-5849-bdce-0e29396e3218","attributes":{"public_id":304615,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Typescript-Get_a_list_of_an_incident_s_integration_metadata_returns_OK_response-1755601873","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","created":"2025-08-19T11:11:13.505774+00:00","modified":"2025-08-19T11:11:13.505774+00:00","detected":"2025-08-19T11:11:13.490652+00:00","created_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2025-08-19T11:11:13.505774+00:00","declared_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"last_modified_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"8c5ff732-d154-5dfd-8941-894f4266bbd8","attributes":{"public_id":304616,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Typescript-Get_a_list_of_incidents_returns_OK_response-1755601873","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","created":"2025-08-19T11:11:13.854406+00:00","modified":"2025-08-19T11:11:13.854406+00:00","detected":"2025-08-19T11:11:13.841896+00:00","created_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2025-08-19T11:11:13.854406+00:00","declared_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"last_modified_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"e5b2967c-12a6-5ac8-aeed-ab82e8984c71","attributes":{"public_id":304617,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Typescript-Get_incident_attachments_returns_OK_response-1755601874","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","created":"2025-08-19T11:11:14.219825+00:00","modified":"2025-08-19T11:11:14.219825+00:00","detected":"2025-08-19T11:11:14.207958+00:00","created_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2025-08-19T11:11:14.219825+00:00","declared_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"last_modified_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"bf2d55ad-ca99-5546-8f98-299f59fb9f17","attributes":{"public_id":304618,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Typescript-Get_incident_integration_metadata_details_returns_OK_response-1755601874","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","created":"2025-08-19T11:11:14.577264+00:00","modified":"2025-08-19T11:11:14.577264+00:00","detected":"2025-08-19T11:11:14.566385+00:00","created_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2025-08-19T11:11:14.577264+00:00","declared_by_uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"last_modified_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}}],"meta":{"pagination":{"offset":0,"next_offset":25,"size":25}}} + string: '{"data":[{"type":"incidents","id":"d3c614dc-93e7-4648-b104-b4047548deca","attributes":{"public_id":336084,"incident_type_uuid":"227f4739-de77-47ac-ac1b-5b0fd5497b54","title":"Test-Import_an_incident_returns_CREATED_response-1771015099","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","created":"2026-02-13T20:38:19.565010+00:00","modified":"2026-02-13T20:38:19.565010+00:00","detected":"2025-01-01T00:00:00+00:00","created_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2025-01-01T00:00:00+00:00","declared_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","fields":{"state":{"type":"dropdown","value":"active"},"severity":{"type":"dropdown","value":"SEV-5"},"summary":{"type":"textbox","value":null},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null},"slug":{"type":"textbox","value":"IR-336084"}},"field_analytics":null,"severity":"SEV-5","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"06c38fa7-53ae-43ed-8a81-4ef2ce79e8e4"},{"type":"user_defined_field","id":"82dfe0f7-6471-45c2-893a-b0ddb905a5cc"},{"type":"user_defined_field","id":"a992a7af-78df-428b-84cb-415a80a35ca8"},{"type":"user_defined_field","id":"bedafc53-5878-43d3-8e43-edb0ea909d41"},{"type":"user_defined_field","id":"3f68cbf4-58c5-48ad-b345-d0c3ea07b575"},{"type":"user_defined_field","id":"d6774541-57a3-4e12-a420-8a46eea00af3"},{"type":"user_defined_field","id":"77452a89-fe1b-4dca-8d05-cd2784a3d334"},{"type":"user_defined_field","id":"57d451dc-32ae-4b62-bd25-95e7afee4e91"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"cdb0f1f2-33ce-4465-85ea-fc8aa3f85d21","attributes":{"public_id":336102,"incident_type_uuid":"b19568c3-f758-47f3-8359-b7d3136ee4ce","title":"Test-Import_an_incident_returns_CREATED_response-1771015188","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","created":"2026-02-13T20:39:48.595903+00:00","modified":"2026-02-13T20:39:48.595903+00:00","detected":"2025-01-01T00:00:00+00:00","created_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2025-01-01T00:00:00+00:00","declared_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","fields":{"state":{"type":"dropdown","value":"active"},"severity":{"type":"dropdown","value":"SEV-5"},"summary":{"type":"textbox","value":null},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null},"slug":{"type":"textbox","value":"IR-336102"}},"field_analytics":null,"severity":"SEV-5","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"9dc9e986-51ba-49ec-a280-411baa25eadf"},{"type":"user_defined_field","id":"8a1d9752-b811-4e08-92c9-1f06dbbb4b54"},{"type":"user_defined_field","id":"05283c83-bf61-4a44-8e66-d521abcc24c5"},{"type":"user_defined_field","id":"8a955548-f058-4410-8855-18180468f21b"},{"type":"user_defined_field","id":"22e9116b-943d-4494-96e7-13652e2f1576"},{"type":"user_defined_field","id":"7659819d-57d0-4b2f-b48b-5e2e1da7b6c3"},{"type":"user_defined_field","id":"5bc060a5-9fd1-4388-b658-dc72f99f2077"},{"type":"user_defined_field","id":"ea3560b3-fc7e-4aad-9096-3e646b5feea2"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"fb49e1f3-89af-496f-9587-107ea13b9adc","attributes":{"public_id":336131,"incident_type_uuid":"e571c40e-671e-468e-b2d2-49abcddb2730","title":"Test-Import_an_incident_returns_CREATED_response-1771020049","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","created":"2026-02-13T22:00:49.957007+00:00","modified":"2026-02-13T22:00:49.957007+00:00","detected":"2025-01-01T00:00:00+00:00","created_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2025-01-01T00:00:00+00:00","declared_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","fields":{"state":{"type":"dropdown","value":"active"},"severity":{"type":"dropdown","value":"SEV-5"},"summary":{"type":"textbox","value":null},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null},"slug":{"type":"textbox","value":"IR-336131"}},"field_analytics":null,"severity":"SEV-5","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"d61d15f3-99d2-4c81-9ee7-bc9ff4963dae"},{"type":"user_defined_field","id":"519d3368-b64f-45c2-bded-62e7d71ea1ac"},{"type":"user_defined_field","id":"c6b63995-8b1e-4a15-9aa7-9ad7ef8e0290"},{"type":"user_defined_field","id":"18008a44-087f-4e2b-866b-5dfb3538d31c"},{"type":"user_defined_field","id":"3a6dc62c-0a2d-40c3-bc70-fdb85491793d"},{"type":"user_defined_field","id":"d749a065-a736-429f-9c64-b1d7cb974c50"},{"type":"user_defined_field","id":"05597b87-b001-4e79-9cab-b9cf0ddfc746"},{"type":"user_defined_field","id":"8f9b2254-b75e-49bb-af4a-0fef13e7e7f5"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"405ffa23-71f5-4f91-942a-9bf8a0bfa581","attributes":{"public_id":336149,"incident_type_uuid":"d5d8a5e6-0e41-4acb-bc80-e5476ba4711d","title":"Test-Import_an_incident_returns_CREATED_response-1771020502","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","created":"2026-02-13T22:08:22.924980+00:00","modified":"2026-02-13T22:08:22.924980+00:00","detected":"2025-01-01T00:00:00+00:00","created_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2025-01-01T00:00:00+00:00","declared_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","fields":{"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null},"slug":{"type":"textbox","value":"IR-336149"},"state":{"type":"dropdown","value":"active"},"severity":{"type":"dropdown","value":"SEV-5"},"summary":{"type":"textbox","value":null},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null}},"field_analytics":null,"severity":"SEV-5","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"a6400643-892c-48c0-bf3b-8a8d7776bd5b"},{"type":"user_defined_field","id":"80b9e233-562e-4b7a-8544-f53ef9e94c32"},{"type":"user_defined_field","id":"20aa840f-af0c-4033-bd7d-332b92554d63"},{"type":"user_defined_field","id":"ddabebb7-6079-4162-a7c1-45088cd17bf0"},{"type":"user_defined_field","id":"405da1b0-0e66-4b4c-b2e5-8d08d1a39f38"},{"type":"user_defined_field","id":"bb73ede2-fc0c-40f6-8098-503253707e67"},{"type":"user_defined_field","id":"107a7787-e705-4ad6-af81-c6199beb02cf"},{"type":"user_defined_field","id":"1f9e6588-e332-4533-a6b7-9b70d7ecb822"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"77afaefe-9585-5eba-9e1e-195149b3dc66","attributes":{"public_id":336599,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Example-Create_an_incident_returns_CREATED_response_1771235254","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","created":"2026-02-16T09:47:35.513888+00:00","modified":"2026-02-16T09:47:35.513888+00:00","detected":"2026-02-16T09:47:35.502740+00:00","created_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-02-16T09:47:35.513888+00:00","declared_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","fields":{"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"resolved"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"slug":{"type":"textbox","value":"IR-336599"}},"field_analytics":null,"severity":"UNKNOWN","state":"resolved","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":{"type":"users","id":"677cf521-c579-4b83-988f-bf8eb6fb2d6c"}},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"},{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"2b9f1063-b915-4c7a-8bbd-fc3940245529"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[{"type":"incident_responders","id":"f393bc25-a7d0-54f4-9114-98e6385143aa"}]},"impacts":{"data":[]}}},{"type":"incidents","id":"f5f7e414-a9bf-50d2-8d46-e12c8be381d9","attributes":{"public_id":338019,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Get_a_list_of_incidents_returns_OK_response-1771855602","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","created":"2026-02-23T14:06:42.549748+00:00","modified":"2026-02-23T14:06:42.549748+00:00","detected":"2026-02-23T14:06:42.541000+00:00","created_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-02-23T14:06:42.549748+00:00","declared_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","fields":{"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"slug":{"type":"textbox","value":"IR-338019"}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"},{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"2b9f1063-b915-4c7a-8bbd-fc3940245529"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}}],"meta":{"pagination":{"offset":0,"next_offset":6,"size":6}}} ' headers: @@ -43,14 +43,14 @@ http_interactions: status: code: 200 message: OK -- recorded_at: Mon, 19 Jan 2026 20:15:58 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:42 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/d9fe118a-ff95-5e43-a7b7-47149a8b0b05 + uri: https://api.datadoghq.com/api/v2/incidents/f5f7e414-a9bf-50d2-8d46-e12c8be381d9 response: body: encoding: UTF-8 diff --git a/cassettes/features/v2/incidents/Get-incident-integration-metadata-details-returns-OK-response.frozen b/cassettes/features/v2/incidents/Get-incident-integration-metadata-details-returns-OK-response.frozen index 6018d7c7b4a2..88c0245f2562 100644 --- a/cassettes/features/v2/incidents/Get-incident-integration-metadata-details-returns-OK-response.frozen +++ b/cassettes/features/v2/incidents/Get-incident-integration-metadata-details-returns-OK-response.frozen @@ -1 +1 @@ -2026-01-19T20:15:59.959Z \ No newline at end of file +2026-02-23T14:06:43.426Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/Get-incident-integration-metadata-details-returns-OK-response.yml b/cassettes/features/v2/incidents/Get-incident-integration-metadata-details-returns-OK-response.yml index 226314c45df7..eb5e916bdb2c 100644 --- a/cassettes/features/v2/incidents/Get-incident-integration-metadata-details-returns-OK-response.yml +++ b/cassettes/features/v2/incidents/Get-incident-integration-metadata-details-returns-OK-response.yml @@ -1,9 +1,9 @@ http_interactions: -- recorded_at: Mon, 19 Jan 2026 20:15:59 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:43 GMT request: body: encoding: UTF-8 - string: '{"data":{"attributes":{"customer_impacted":false,"title":"Test-Get_incident_integration_metadata_details_returns_OK_response-1768853759"},"type":"incidents"}}' + string: '{"data":{"attributes":{"customer_impacted":false,"title":"Test-Get_incident_integration_metadata_details_returns_OK_response-1771855603"},"type":"incidents"}}' headers: Accept: - application/json @@ -14,7 +14,7 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":{"type":"incidents","id":"aab3639f-f55b-527d-9691-60e057d43bbe","attributes":{"public_id":331306,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Get_incident_integration_metadata_details_returns_OK_response-1768853759","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-19T20:16:00.173828+00:00","modified":"2026-01-19T20:16:00.173828+00:00","commander":null,"detected":"2026-01-19T20:16:00.159402+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-19T20:16:00.173828+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}}} + string: '{"data":{"type":"incidents","id":"e2c7502d-b95c-55ee-b2d9-c523316ec5a5","attributes":{"public_id":338020,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Get_incident_integration_metadata_details_returns_OK_response-1771855603","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-02-23T14:06:43.591433+00:00","modified":"2026-02-23T14:06:43.591433+00:00","commander":null,"detected":"2026-02-23T14:06:43.581979+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-02-23T14:06:43.591433+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"slug":{"type":"textbox","value":"IR-338020"}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"},{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"2b9f1063-b915-4c7a-8bbd-fc3940245529"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}}} ' headers: @@ -23,22 +23,22 @@ http_interactions: status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:15:59 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:43 GMT request: body: encoding: UTF-8 - string: '{"data":{"attributes":{"incident_id":"aab3639f-f55b-527d-9691-60e057d43bbe","integration_type":1,"metadata":{"channels":[{"channel_id":"C0123456789","channel_name":"#example-channel-name","redirect_url":"https://slack.com/app_redirect?channel=C0123456789&team=T01234567","team_id":"T01234567"}]},"status":2},"type":"incident_integrations"}}' + string: '{"data":{"attributes":{"incident_id":"e2c7502d-b95c-55ee-b2d9-c523316ec5a5","integration_type":1,"metadata":{"channels":[{"channel_id":"C0123456789","channel_name":"#example-channel-name","redirect_url":"https://slack.com/app_redirect?channel=C0123456789&team=T01234567","team_id":"T01234567"}]},"status":2},"type":"incident_integrations"}}' headers: Accept: - application/json Content-Type: - application/json method: POST - uri: https://api.datadoghq.com/api/v2/incidents/aab3639f-f55b-527d-9691-60e057d43bbe/relationships/integrations + uri: https://api.datadoghq.com/api/v2/incidents/e2c7502d-b95c-55ee-b2d9-c523316ec5a5/relationships/integrations response: body: encoding: UTF-8 - string: '{"data":{"type":"incident_integrations","id":"5e168b00-dde7-5b0c-baba-68a690d7821b","attributes":{"created":"2026-01-19T20:16:00.627386+00:00","modified":"2026-01-19T20:16:00.627386+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","incident_id":"aab3639f-f55b-527d-9691-60e057d43bbe","last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","status":3,"integration_type":1,"metadata":{"channels":[{"channel_id":"C0123456789","channel_name":"#example-channel-name","redirect_url":"https://slack.com/app_redirect?channel=C0123456789&team=T01234567","team_id":"T01234567"}]}},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}}}}} + string: '{"data":{"type":"incident_integrations","id":"57c74987-fe14-5f4b-a482-f0f9637e7f94","attributes":{"created":"2026-02-23T14:06:44.006984+00:00","modified":"2026-02-23T14:06:44.006984+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","incident_id":"e2c7502d-b95c-55ee-b2d9-c523316ec5a5","last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","status":3,"integration_type":1,"metadata":{"channels":[{"channel_id":"C0123456789","channel_name":"#example-channel-name","redirect_url":"https://slack.com/app_redirect?channel=C0123456789&team=T01234567","team_id":"T01234567"}]}},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}}}}} ' headers: @@ -47,32 +47,32 @@ http_interactions: status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:15:59 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:43 GMT request: body: null headers: Accept: - application/json method: GET - uri: https://api.datadoghq.com/api/v2/incidents/aab3639f-f55b-527d-9691-60e057d43bbe/relationships/integrations/5e168b00-dde7-5b0c-baba-68a690d7821b + uri: https://api.datadoghq.com/api/v2/incidents/e2c7502d-b95c-55ee-b2d9-c523316ec5a5/relationships/integrations/57c74987-fe14-5f4b-a482-f0f9637e7f94 response: body: encoding: UTF-8 - string: '{"data":{"id":"5e168b00-dde7-5b0c-baba-68a690d7821b","type":"incident_integrations","attributes":{"created":"2026-01-19T20:16:00.627386Z","created_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","incident_id":"aab3639f-f55b-527d-9691-60e057d43bbe","integration_type":1,"last_modified_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","metadata":{"channels":[{"team_id":"T01234567","channel_id":"C0123456789","channel_name":"#example-channel-name","redirect_url":"https://slack.com/app_redirect?channel=C0123456789\u0026team=T01234567"}]},"modified":"2026-01-19T20:16:00.627386Z","status":3},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' + string: '{"data":{"id":"57c74987-fe14-5f4b-a482-f0f9637e7f94","type":"incident_integrations","attributes":{"created":"2026-02-23T14:06:44.006984Z","created_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","incident_id":"e2c7502d-b95c-55ee-b2d9-c523316ec5a5","integration_type":1,"last_modified_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","metadata":{"channels":[{"team_id":"T01234567","channel_id":"C0123456789","channel_name":"#example-channel-name","redirect_url":"https://slack.com/app_redirect?channel=C0123456789\u0026team=T01234567"}]},"modified":"2026-02-23T14:06:44.006984Z","status":3},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' headers: Content-Type: - application/vnd.api+json status: code: 200 message: OK -- recorded_at: Mon, 19 Jan 2026 20:15:59 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:43 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/aab3639f-f55b-527d-9691-60e057d43bbe/relationships/integrations/5e168b00-dde7-5b0c-baba-68a690d7821b + uri: https://api.datadoghq.com/api/v2/incidents/e2c7502d-b95c-55ee-b2d9-c523316ec5a5/relationships/integrations/57c74987-fe14-5f4b-a482-f0f9637e7f94 response: body: encoding: UTF-8 @@ -81,14 +81,14 @@ http_interactions: status: code: 204 message: No Content -- recorded_at: Mon, 19 Jan 2026 20:15:59 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:43 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/aab3639f-f55b-527d-9691-60e057d43bbe + uri: https://api.datadoghq.com/api/v2/incidents/e2c7502d-b95c-55ee-b2d9-c523316ec5a5 response: body: encoding: UTF-8 diff --git a/cassettes/features/v2/incidents/Get-incident-notification-rule-returns-Not-Found-response.frozen b/cassettes/features/v2/incidents/Get-incident-notification-rule-returns-Not-Found-response.frozen index a2361c3fe6df..e5142cc949e1 100644 --- a/cassettes/features/v2/incidents/Get-incident-notification-rule-returns-Not-Found-response.frozen +++ b/cassettes/features/v2/incidents/Get-incident-notification-rule-returns-Not-Found-response.frozen @@ -1 +1 @@ -2026-01-19T20:16:01.447Z \ No newline at end of file +2026-02-23T14:06:44.658Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/Get-incident-notification-rule-returns-Not-Found-response.yml b/cassettes/features/v2/incidents/Get-incident-notification-rule-returns-Not-Found-response.yml index 567c1aabdb1c..f4d8b015c570 100644 --- a/cassettes/features/v2/incidents/Get-incident-notification-rule-returns-Not-Found-response.yml +++ b/cassettes/features/v2/incidents/Get-incident-notification-rule-returns-Not-Found-response.yml @@ -1,5 +1,5 @@ http_interactions: -- recorded_at: Mon, 19 Jan 2026 20:16:01 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:44 GMT request: body: null headers: diff --git a/cassettes/features/v2/incidents/Get-incident-notification-rule-returns-OK-response.frozen b/cassettes/features/v2/incidents/Get-incident-notification-rule-returns-OK-response.frozen index e4d29b66f855..7a74ff757ea4 100644 --- a/cassettes/features/v2/incidents/Get-incident-notification-rule-returns-OK-response.frozen +++ b/cassettes/features/v2/incidents/Get-incident-notification-rule-returns-OK-response.frozen @@ -1 +1 @@ -2026-01-19T20:16:01.622Z \ No newline at end of file +2026-02-23T14:06:44.763Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/Get-incident-notification-rule-returns-OK-response.yml b/cassettes/features/v2/incidents/Get-incident-notification-rule-returns-OK-response.yml index 1b23854d90d7..c790adca76fa 100644 --- a/cassettes/features/v2/incidents/Get-incident-notification-rule-returns-OK-response.yml +++ b/cassettes/features/v2/incidents/Get-incident-notification-rule-returns-OK-response.yml @@ -1,5 +1,5 @@ http_interactions: -- recorded_at: Mon, 19 Jan 2026 20:16:01 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:44 GMT request: body: encoding: UTF-8 @@ -16,9 +16,9 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":{"id":"4f4c6a0e-66c1-4abd-9656-bb02bac80b80","type":"incident_types","attributes":{"createdAt":"2026-01-19T20:16:01.766314791Z","createdBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","description":"Any + string: '{"data":{"id":"e501c63a-c862-4f27-a4c5-cf1cb1c6bded","type":"incident_types","attributes":{"createdAt":"2026-02-23T14:06:44.873800964Z","createdBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","description":"Any incidents that harm (or have the potential to) the confidentiality, integrity, - or availability of our data.","is_default":false,"lastModifiedBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","modifiedAt":"2026-01-19T20:16:01.766314922Z","name":"Security + or availability of our data.","is_default":false,"lastModifiedBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","modifiedAt":"2026-02-23T14:06:44.873801062Z","name":"Security Incident","prefix":"IR"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"google_chat_configuration":{"data":null},"google_meet_configuration":{"data":null},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"microsoft_teams_configuration":{"data":null},"zoom_configuration":{"data":null}}}}' headers: Content-Type: @@ -26,11 +26,11 @@ http_interactions: status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:16:01 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:44 GMT request: body: encoding: UTF-8 - string: '{"data":{"attributes":{"conditions":[{"field":"severity","values":["SEV-1","SEV-2"]}],"enabled":true,"handles":["@test-email@company.com"],"trigger":"incident_created_trigger","visibility":"organization"},"relationships":{"incident_type":{"data":{"id":"4f4c6a0e-66c1-4abd-9656-bb02bac80b80","type":"incident_types"}}},"type":"incident_notification_rules"}}' + string: '{"data":{"attributes":{"conditions":[{"field":"severity","values":["SEV-1","SEV-2"]}],"enabled":true,"handles":["@test-email@company.com"],"trigger":"incident_created_trigger","visibility":"organization"},"relationships":{"incident_type":{"data":{"id":"e501c63a-c862-4f27-a4c5-cf1cb1c6bded","type":"incident_types"}}},"type":"incident_notification_rules"}}' headers: Accept: - application/json @@ -41,39 +41,39 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":{"id":"d8352a2d-c13c-4e18-864c-7ee75c43c2f1","type":"incident_notification_rules","attributes":{"conditions":[{"field":"severity","values":["SEV-1","SEV-2"]}],"created":"2026-01-19T20:16:02.220312293Z","enabled":true,"handles":["@test-email@company.com"],"modified":"2026-01-19T20:16:02.220312293Z","renotify_on":[],"trigger":"incident_created_trigger","visibility":"organization"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"incident_type":{"data":{"id":"4f4c6a0e-66c1-4abd-9656-bb02bac80b80","type":"incident_types"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' + string: '{"data":{"id":"68f007c9-ab37-4fac-9964-eb5facc4ed86","type":"incident_notification_rules","attributes":{"conditions":[{"field":"severity","values":["SEV-1","SEV-2"]}],"created":"2026-02-23T14:06:45.175539245Z","enabled":true,"handles":["@test-email@company.com"],"modified":"2026-02-23T14:06:45.175539245Z","renotify_on":[],"trigger":"incident_created_trigger","visibility":"organization"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"incident_type":{"data":{"id":"e501c63a-c862-4f27-a4c5-cf1cb1c6bded","type":"incident_types"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' headers: Content-Type: - application/vnd.api+json status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:16:01 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:44 GMT request: body: null headers: Accept: - application/json method: GET - uri: https://api.datadoghq.com/api/v2/incidents/config/notification-rules/d8352a2d-c13c-4e18-864c-7ee75c43c2f1 + uri: https://api.datadoghq.com/api/v2/incidents/config/notification-rules/68f007c9-ab37-4fac-9964-eb5facc4ed86 response: body: encoding: UTF-8 - string: '{"data":{"id":"d8352a2d-c13c-4e18-864c-7ee75c43c2f1","type":"incident_notification_rules","attributes":{"conditions":[{"field":"severity","values":["SEV-1","SEV-2"]}],"created":"2026-01-19T20:16:02.220312Z","enabled":true,"handles":["@test-email@company.com"],"modified":"2026-01-19T20:16:02.220312Z","renotify_on":[],"trigger":"incident_created_trigger","visibility":"organization"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"incident_type":{"data":{"id":"4f4c6a0e-66c1-4abd-9656-bb02bac80b80","type":"incident_types"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' + string: '{"data":{"id":"68f007c9-ab37-4fac-9964-eb5facc4ed86","type":"incident_notification_rules","attributes":{"conditions":[{"field":"severity","values":["SEV-1","SEV-2"]}],"created":"2026-02-23T14:06:45.175539Z","enabled":true,"handles":["@test-email@company.com"],"modified":"2026-02-23T14:06:45.175539Z","renotify_on":[],"trigger":"incident_created_trigger","visibility":"organization"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"incident_type":{"data":{"id":"e501c63a-c862-4f27-a4c5-cf1cb1c6bded","type":"incident_types"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' headers: Content-Type: - application/vnd.api+json status: code: 200 message: OK -- recorded_at: Mon, 19 Jan 2026 20:16:01 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:44 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/config/notification-rules/d8352a2d-c13c-4e18-864c-7ee75c43c2f1 + uri: https://api.datadoghq.com/api/v2/incidents/config/notification-rules/68f007c9-ab37-4fac-9964-eb5facc4ed86 response: body: encoding: UTF-8 @@ -82,14 +82,14 @@ http_interactions: status: code: 204 message: No Content -- recorded_at: Mon, 19 Jan 2026 20:16:01 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:44 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/config/types/4f4c6a0e-66c1-4abd-9656-bb02bac80b80 + uri: https://api.datadoghq.com/api/v2/incidents/config/types/e501c63a-c862-4f27-a4c5-cf1cb1c6bded response: body: encoding: UTF-8 diff --git a/cassettes/features/v2/incidents/Get-incident-notification-template-returns-OK-response.frozen b/cassettes/features/v2/incidents/Get-incident-notification-template-returns-OK-response.frozen index fd240f874f5b..42a0ca370751 100644 --- a/cassettes/features/v2/incidents/Get-incident-notification-template-returns-OK-response.frozen +++ b/cassettes/features/v2/incidents/Get-incident-notification-template-returns-OK-response.frozen @@ -1 +1 @@ -2026-01-19T20:16:03.012Z \ No newline at end of file +2026-02-23T14:06:45.515Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/Get-incident-notification-template-returns-OK-response.yml b/cassettes/features/v2/incidents/Get-incident-notification-template-returns-OK-response.yml index 0e11351ac287..b9ba76618353 100644 --- a/cassettes/features/v2/incidents/Get-incident-notification-template-returns-OK-response.yml +++ b/cassettes/features/v2/incidents/Get-incident-notification-template-returns-OK-response.yml @@ -1,5 +1,5 @@ http_interactions: -- recorded_at: Mon, 19 Jan 2026 20:16:03 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:45 GMT request: body: encoding: UTF-8 @@ -16,9 +16,9 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":{"id":"b343a0f3-a053-4ece-9ef0-299ecc71f31c","type":"incident_types","attributes":{"createdAt":"2026-01-19T20:16:03.169531598Z","createdBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","description":"Any + string: '{"data":{"id":"962a94cb-6fbd-42fe-806f-4b2f4dfa6e01","type":"incident_types","attributes":{"createdAt":"2026-02-23T14:06:45.623977968Z","createdBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","description":"Any incidents that harm (or have the potential to) the confidentiality, integrity, - or availability of our data.","is_default":false,"lastModifiedBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","modifiedAt":"2026-01-19T20:16:03.16953168Z","name":"Security + or availability of our data.","is_default":false,"lastModifiedBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","modifiedAt":"2026-02-23T14:06:45.623978059Z","name":"Security Incident","prefix":"IR"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"google_chat_configuration":{"data":null},"google_meet_configuration":{"data":null},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"microsoft_teams_configuration":{"data":null},"zoom_configuration":{"data":null}}}}' headers: Content-Type: @@ -26,13 +26,13 @@ http_interactions: status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:16:03 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:45 GMT request: body: encoding: UTF-8 string: '{"data":{"attributes":{"category":"alert","content":"Test notification - template","name":"Test Template Test-Get_incident_notification_template_returns_OK_response-1768853763","subject":"Test - Subject"},"relationships":{"incident_type":{"data":{"id":"b343a0f3-a053-4ece-9ef0-299ecc71f31c","type":"incident_types"}}},"type":"notification_templates"}}' + template","name":"Test Template Test-Get_incident_notification_template_returns_OK_response-1771855605","subject":"Test + Subject"},"relationships":{"incident_type":{"data":{"id":"962a94cb-6fbd-42fe-806f-4b2f4dfa6e01","type":"incident_types"}}},"type":"notification_templates"}}' headers: Accept: - application/json @@ -43,45 +43,45 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":{"id":"58f54f9e-a7fa-4388-9e67-58c697a7a993","type":"notification_templates","attributes":{"category":"alert","content":"Test - notification template","created":"2026-01-19T20:16:03.548779Z","modified":"2026-01-19T20:16:03.548779Z","name":"Test - Template Test-Get_incident_notification_template_returns_OK_response-1768853763","subject":"Test - Subject"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"incident_type":{"data":{"id":"b343a0f3-a053-4ece-9ef0-299ecc71f31c","type":"incident_types"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' + string: '{"data":{"id":"fcafa9e4-8c66-4bcf-b77a-2d899ddc42ab","type":"notification_templates","attributes":{"category":"alert","content":"Test + notification template","created":"2026-02-23T14:06:45.884503Z","modified":"2026-02-23T14:06:45.884503Z","name":"Test + Template Test-Get_incident_notification_template_returns_OK_response-1771855605","subject":"Test + Subject"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"incident_type":{"data":{"id":"962a94cb-6fbd-42fe-806f-4b2f4dfa6e01","type":"incident_types"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' headers: Content-Type: - application/vnd.api+json status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:16:03 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:45 GMT request: body: null headers: Accept: - application/json method: GET - uri: https://api.datadoghq.com/api/v2/incidents/config/notification-templates/58f54f9e-a7fa-4388-9e67-58c697a7a993 + uri: https://api.datadoghq.com/api/v2/incidents/config/notification-templates/fcafa9e4-8c66-4bcf-b77a-2d899ddc42ab response: body: encoding: UTF-8 - string: '{"data":{"id":"58f54f9e-a7fa-4388-9e67-58c697a7a993","type":"notification_templates","attributes":{"category":"alert","content":"Test - notification template","created":"2026-01-19T20:16:03.548779Z","modified":"2026-01-19T20:16:03.548779Z","name":"Test - Template Test-Get_incident_notification_template_returns_OK_response-1768853763","subject":"Test - Subject"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"incident_type":{"data":{"id":"b343a0f3-a053-4ece-9ef0-299ecc71f31c","type":"incident_types"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' + string: '{"data":{"id":"fcafa9e4-8c66-4bcf-b77a-2d899ddc42ab","type":"notification_templates","attributes":{"category":"alert","content":"Test + notification template","created":"2026-02-23T14:06:45.884503Z","modified":"2026-02-23T14:06:45.884503Z","name":"Test + Template Test-Get_incident_notification_template_returns_OK_response-1771855605","subject":"Test + Subject"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"incident_type":{"data":{"id":"962a94cb-6fbd-42fe-806f-4b2f4dfa6e01","type":"incident_types"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' headers: Content-Type: - application/vnd.api+json status: code: 200 message: OK -- recorded_at: Mon, 19 Jan 2026 20:16:03 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:45 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/config/notification-templates/58f54f9e-a7fa-4388-9e67-58c697a7a993 + uri: https://api.datadoghq.com/api/v2/incidents/config/notification-templates/fcafa9e4-8c66-4bcf-b77a-2d899ddc42ab response: body: encoding: UTF-8 @@ -90,14 +90,14 @@ http_interactions: status: code: 204 message: No Content -- recorded_at: Mon, 19 Jan 2026 20:16:03 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:45 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/config/types/b343a0f3-a053-4ece-9ef0-299ecc71f31c + uri: https://api.datadoghq.com/api/v2/incidents/config/types/962a94cb-6fbd-42fe-806f-4b2f4dfa6e01 response: body: encoding: UTF-8 diff --git a/cassettes/features/v2/incidents/Get-the-details-of-an-incident-returns-OK-response.frozen b/cassettes/features/v2/incidents/Get-the-details-of-an-incident-returns-OK-response.frozen index 1567a4ba9eba..abef001d9995 100644 --- a/cassettes/features/v2/incidents/Get-the-details-of-an-incident-returns-OK-response.frozen +++ b/cassettes/features/v2/incidents/Get-the-details-of-an-incident-returns-OK-response.frozen @@ -1 +1 @@ -2026-01-19T20:16:04.006Z \ No newline at end of file +2026-02-23T14:06:46.146Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/Get-the-details-of-an-incident-returns-OK-response.yml b/cassettes/features/v2/incidents/Get-the-details-of-an-incident-returns-OK-response.yml index 4aaf3e416a67..ad775b6e8b95 100644 --- a/cassettes/features/v2/incidents/Get-the-details-of-an-incident-returns-OK-response.yml +++ b/cassettes/features/v2/incidents/Get-the-details-of-an-incident-returns-OK-response.yml @@ -1,9 +1,9 @@ http_interactions: -- recorded_at: Mon, 19 Jan 2026 20:16:04 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:46 GMT request: body: encoding: UTF-8 - string: '{"data":{"attributes":{"customer_impacted":false,"title":"Test-Get_the_details_of_an_incident_returns_OK_response-1768853764"},"type":"incidents"}}' + string: '{"data":{"attributes":{"customer_impacted":false,"title":"Test-Get_the_details_of_an_incident_returns_OK_response-1771855606"},"type":"incidents"}}' headers: Accept: - application/json @@ -14,7 +14,7 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":{"type":"incidents","id":"04db6de8-4eab-5146-bc87-061fc42b4ba9","attributes":{"public_id":331307,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Get_the_details_of_an_incident_returns_OK_response-1768853764","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-19T20:16:04.221505+00:00","modified":"2026-01-19T20:16:04.221505+00:00","commander":null,"detected":"2026-01-19T20:16:04.208410+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-19T20:16:04.221505+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}}} + string: '{"data":{"type":"incidents","id":"19c87e47-487a-5ce4-8841-61d23ea414d4","attributes":{"public_id":338021,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Get_the_details_of_an_incident_returns_OK_response-1771855606","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-02-23T14:06:46.306566+00:00","modified":"2026-02-23T14:06:46.306566+00:00","commander":null,"detected":"2026-02-23T14:06:46.292796+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-02-23T14:06:46.306566+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"slug":{"type":"textbox","value":"IR-338021"}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"},{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"2b9f1063-b915-4c7a-8bbd-fc3940245529"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}}} ' headers: @@ -23,18 +23,18 @@ http_interactions: status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:16:04 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:46 GMT request: body: null headers: Accept: - application/json method: GET - uri: https://api.datadoghq.com/api/v2/incidents/04db6de8-4eab-5146-bc87-061fc42b4ba9 + uri: https://api.datadoghq.com/api/v2/incidents/19c87e47-487a-5ce4-8841-61d23ea414d4 response: body: encoding: UTF-8 - string: '{"data":{"type":"incidents","id":"04db6de8-4eab-5146-bc87-061fc42b4ba9","attributes":{"public_id":331307,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Get_the_details_of_an_incident_returns_OK_response-1768853764","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","created":"2026-01-19T20:16:04.221505+00:00","modified":"2026-01-19T20:16:04.221505+00:00","detected":"2026-01-19T20:16:04.208410+00:00","created_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-19T20:16:04.221505+00:00","declared_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}}} + string: '{"data":{"type":"incidents","id":"19c87e47-487a-5ce4-8841-61d23ea414d4","attributes":{"public_id":338021,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Get_the_details_of_an_incident_returns_OK_response-1771855606","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","created":"2026-02-23T14:06:46.306566+00:00","modified":"2026-02-23T14:06:46.306566+00:00","detected":"2026-02-23T14:06:46.292796+00:00","created_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-02-23T14:06:46.306566+00:00","declared_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","fields":{"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"slug":{"type":"textbox","value":"IR-338021"}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"},{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"2b9f1063-b915-4c7a-8bbd-fc3940245529"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}}} ' headers: @@ -43,14 +43,14 @@ http_interactions: status: code: 200 message: OK -- recorded_at: Mon, 19 Jan 2026 20:16:04 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:46 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/04db6de8-4eab-5146-bc87-061fc42b4ba9 + uri: https://api.datadoghq.com/api/v2/incidents/19c87e47-487a-5ce4-8841-61d23ea414d4 response: body: encoding: UTF-8 diff --git a/cassettes/features/v2/incidents/Import-an-incident-returns-CREATED-response.frozen b/cassettes/features/v2/incidents/Import-an-incident-returns-CREATED-response.frozen new file mode 100644 index 000000000000..cde6b1eaf293 --- /dev/null +++ b/cassettes/features/v2/incidents/Import-an-incident-returns-CREATED-response.frozen @@ -0,0 +1 @@ +2026-02-23T14:06:46.943Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/Import-an-incident-returns-CREATED-response.yml b/cassettes/features/v2/incidents/Import-an-incident-returns-CREATED-response.yml new file mode 100644 index 000000000000..997e2c361c82 --- /dev/null +++ b/cassettes/features/v2/incidents/Import-an-incident-returns-CREATED-response.yml @@ -0,0 +1,42 @@ +http_interactions: +- recorded_at: Mon, 23 Feb 2026 14:06:46 GMT + request: + body: + encoding: UTF-8 + string: '{"data":{"attributes":{"title":"Test-Import_an_incident_returns_CREATED_response-1771855606","visibility":"organization"},"type":"incidents"}}' + headers: + Accept: + - application/json + Content-Type: + - application/json + method: POST + uri: https://api.datadoghq.com/api/v2/incidents/import + response: + body: + encoding: UTF-8 + string: '{"data":{"id":"e2fe83b8-e433-476f-bf2c-d076aee55bed","type":"incidents","attributes":{"archived":null,"case_id":null,"created":"2026-02-23T14:06:47.048266Z","created_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","creation_idempotency_key":null,"customer_impact_end":null,"customer_impact_scope":null,"customer_impact_start":null,"declared":"2026-02-23T14:06:47.048266Z","declared_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","detected":"2026-02-23T14:06:47.048266Z","fields":{"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"slug":{"type":"textbox","value":"IR-338022"},"state":{"type":"dropdown","value":"active"},"summary":{"type":"textbox","value":null},"teams":{"type":"autocomplete","value":null}},"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","is_test":false,"last_modified_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","modified":"2026-02-23T14:06:47.048266Z","non_datadog_creator":null,"notification_handles":null,"public_id":338022,"resolved":null,"severity":"UNKNOWN","state":"active","title":"Test-Import_an_incident_returns_CREATED_response-1771855606","visibility":"organization"},"relationships":{"attachments":{"data":[]},"commander_user":{"data":null},"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"declared_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"impacts":{"data":[]},"incident_type":{"data":{"id":"41d2e10b-4108-4736-92d7-791d00ea0702","type":"incident_types"}},"integrations":{"data":[]},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"responders":{"data":[]},"user_defined_fields":{"data":[{"id":"39044b03-cee4-555f-b1e0-3eb3aa759a86","type":"user_defined_field"},{"id":"2b9f1063-b915-4c7a-8bbd-fc3940245529","type":"user_defined_field"},{"id":"d003693c-bee9-5420-8d46-859269c20914","type":"user_defined_field"},{"id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d","type":"user_defined_field"},{"id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629","type":"user_defined_field"},{"id":"3cbe9e60-d794-532c-acc0-73641f782813","type":"user_defined_field"},{"id":"33457d2a-570c-5567-b4af-979a2a8f1164","type":"user_defined_field"},{"id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf","type":"user_defined_field"}]}}}}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 201 + message: Created +- recorded_at: Mon, 23 Feb 2026 14:06:46 GMT + request: + body: null + headers: + Accept: + - '*/*' + method: DELETE + uri: https://api.datadoghq.com/api/v2/incidents/e2fe83b8-e433-476f-bf2c-d076aee55bed + response: + body: + encoding: UTF-8 + string: '' + headers: + Content-Type: + - text/html; charset=utf-8 + status: + code: 204 + message: No Content +recorded_with: VCR 6.0.0 diff --git a/cassettes/features/v2/incidents/List-incident-attachments-returns-OK-response.frozen b/cassettes/features/v2/incidents/List-incident-attachments-returns-OK-response.frozen index 72a998017d90..766d071a9adc 100644 --- a/cassettes/features/v2/incidents/List-incident-attachments-returns-OK-response.frozen +++ b/cassettes/features/v2/incidents/List-incident-attachments-returns-OK-response.frozen @@ -1 +1 @@ -2026-01-19T20:16:04.934Z \ No newline at end of file +2026-02-23T14:06:47.600Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/List-incident-attachments-returns-OK-response.yml b/cassettes/features/v2/incidents/List-incident-attachments-returns-OK-response.yml index 685eb40f097c..2b2c79a24d58 100644 --- a/cassettes/features/v2/incidents/List-incident-attachments-returns-OK-response.yml +++ b/cassettes/features/v2/incidents/List-incident-attachments-returns-OK-response.yml @@ -1,9 +1,9 @@ http_interactions: -- recorded_at: Mon, 19 Jan 2026 20:16:04 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:47 GMT request: body: encoding: UTF-8 - string: '{"data":{"attributes":{"customer_impacted":false,"title":"Test-List_incident_attachments_returns_OK_response-1768853764"},"type":"incidents"}}' + string: '{"data":{"attributes":{"customer_impacted":false,"title":"Test-List_incident_attachments_returns_OK_response-1771855607"},"type":"incidents"}}' headers: Accept: - application/json @@ -14,7 +14,7 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":{"type":"incidents","id":"16bd363c-3150-527c-b2b5-e91e07175d7e","attributes":{"public_id":331308,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-List_incident_attachments_returns_OK_response-1768853764","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-19T20:16:05.132120+00:00","modified":"2026-01-19T20:16:05.132120+00:00","commander":null,"detected":"2026-01-19T20:16:05.115428+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-19T20:16:05.132120+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}}} + string: '{"data":{"type":"incidents","id":"548c9855-15a4-5015-8a20-4d237f24d784","attributes":{"public_id":338023,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-List_incident_attachments_returns_OK_response-1771855607","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-02-23T14:06:47.756667+00:00","modified":"2026-02-23T14:06:47.756667+00:00","commander":null,"detected":"2026-02-23T14:06:47.748081+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-02-23T14:06:47.756667+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"slug":{"type":"textbox","value":"IR-338023"}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"},{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"2b9f1063-b915-4c7a-8bbd-fc3940245529"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}}} ' headers: @@ -23,54 +23,54 @@ http_interactions: status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:16:04 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:47 GMT request: body: encoding: UTF-8 - string: '{"data":{"attributes":{"attachment":{"documentUrl":"https://app.datadoghq.com/notebook/TestListincidentattachmentsreturnsOKresponse1768853764/Test-List_incident_attachments_returns_OK_response-1768853764","title":"Test-List_incident_attachments_returns_OK_response-1768853764"},"attachment_type":"postmortem"},"type":"incident_attachments"}}' + string: '{"data":{"attributes":{"attachment":{"documentUrl":"https://app.datadoghq.com/notebook/TestListincidentattachmentsreturnsOKresponse1771855607/Test-List_incident_attachments_returns_OK_response-1771855607","title":"Test-List_incident_attachments_returns_OK_response-1771855607"},"attachment_type":"postmortem"},"type":"incident_attachments"}}' headers: Accept: - application/json Content-Type: - application/json method: POST - uri: https://api.datadoghq.com/api/v2/incidents/16bd363c-3150-527c-b2b5-e91e07175d7e/attachments + uri: https://api.datadoghq.com/api/v2/incidents/548c9855-15a4-5015-8a20-4d237f24d784/attachments response: body: encoding: UTF-8 - string: '{"data":{"id":"fb70095c-f8b9-4199-8285-e99c4afbd120","type":"incident_attachments","attributes":{"attachment":{"title":"Test-List_incident_attachments_returns_OK_response-1768853764","documentUrl":"https://app.datadoghq.com/notebook/TestListincidentattachmentsreturnsOKresponse1768853764/Test-List_incident_attachments_returns_OK_response-1768853764"},"attachment_type":"postmortem","modified":"2026-01-19T20:16:05.556828Z"},"relationships":{"incident":{"data":{"id":"16bd363c-3150-527c-b2b5-e91e07175d7e","type":"incidents"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},"included":[{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users","attributes":{"email":"frog@datadoghq.com","handle":"frog@datadoghq.com","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?d=retro\u0026s=48","name":"frog","uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0"}}]}' + string: '{"data":{"id":"70c374d6-069a-46cf-8031-d2be47b432cb","type":"incident_attachments","attributes":{"attachment":{"title":"Test-List_incident_attachments_returns_OK_response-1771855607","documentUrl":"https://app.datadoghq.com/notebook/TestListincidentattachmentsreturnsOKresponse1771855607/Test-List_incident_attachments_returns_OK_response-1771855607"},"attachment_type":"postmortem","modified":"2026-02-23T14:06:48.072714Z"},"relationships":{"incident":{"data":{"id":"548c9855-15a4-5015-8a20-4d237f24d784","type":"incidents"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},"included":[{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users","attributes":{"email":"frog@datadoghq.com","handle":"frog@datadoghq.com","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?d=retro\u0026s=48","name":"frog","uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0"}}]}' headers: Content-Type: - application/vnd.api+json status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:16:04 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:47 GMT request: body: null headers: Accept: - application/json method: GET - uri: https://api.datadoghq.com/api/v2/incidents/16bd363c-3150-527c-b2b5-e91e07175d7e/attachments + uri: https://api.datadoghq.com/api/v2/incidents/548c9855-15a4-5015-8a20-4d237f24d784/attachments response: body: encoding: UTF-8 - string: '{"data":[{"id":"fb70095c-f8b9-4199-8285-e99c4afbd120","type":"incident_attachments","attributes":{"attachment":{"title":"Test-List_incident_attachments_returns_OK_response-1768853764","documentUrl":"https://app.datadoghq.com/notebook/TestListincidentattachmentsreturnsOKresponse1768853764/Test-List_incident_attachments_returns_OK_response-1768853764"},"attachment_type":"postmortem","modified":"2026-01-19T20:16:05.556828Z"},"relationships":{"incident":{"data":{"id":"16bd363c-3150-527c-b2b5-e91e07175d7e","type":"incidents"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}],"included":[{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users","attributes":{"email":"frog@datadoghq.com","handle":"frog@datadoghq.com","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?d=retro\u0026s=48","name":"frog","uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0"}}]}' + string: '{"data":[{"id":"70c374d6-069a-46cf-8031-d2be47b432cb","type":"incident_attachments","attributes":{"attachment":{"title":"Test-List_incident_attachments_returns_OK_response-1771855607","documentUrl":"https://app.datadoghq.com/notebook/TestListincidentattachmentsreturnsOKresponse1771855607/Test-List_incident_attachments_returns_OK_response-1771855607"},"attachment_type":"postmortem","modified":"2026-02-23T14:06:48.072714Z"},"relationships":{"incident":{"data":{"id":"548c9855-15a4-5015-8a20-4d237f24d784","type":"incidents"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}],"included":[{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users","attributes":{"email":"frog@datadoghq.com","handle":"frog@datadoghq.com","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?d=retro\u0026s=48","name":"frog","uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0"}}]}' headers: Content-Type: - application/vnd.api+json status: code: 200 message: OK -- recorded_at: Mon, 19 Jan 2026 20:16:04 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:47 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/16bd363c-3150-527c-b2b5-e91e07175d7e/attachments/fb70095c-f8b9-4199-8285-e99c4afbd120 + uri: https://api.datadoghq.com/api/v2/incidents/548c9855-15a4-5015-8a20-4d237f24d784/attachments/70c374d6-069a-46cf-8031-d2be47b432cb response: body: encoding: UTF-8 @@ -79,14 +79,14 @@ http_interactions: status: code: 204 message: No Content -- recorded_at: Mon, 19 Jan 2026 20:16:04 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:47 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/16bd363c-3150-527c-b2b5-e91e07175d7e + uri: https://api.datadoghq.com/api/v2/incidents/548c9855-15a4-5015-8a20-4d237f24d784 response: body: encoding: UTF-8 diff --git a/cassettes/features/v2/incidents/List-incident-notification-rules-returns-OK-response.frozen b/cassettes/features/v2/incidents/List-incident-notification-rules-returns-OK-response.frozen index 223edd5e1012..e29d7f34a059 100644 --- a/cassettes/features/v2/incidents/List-incident-notification-rules-returns-OK-response.frozen +++ b/cassettes/features/v2/incidents/List-incident-notification-rules-returns-OK-response.frozen @@ -1 +1 @@ -2026-01-19T20:16:06.971Z \ No newline at end of file +2026-02-23T14:06:49.303Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/List-incident-notification-rules-returns-OK-response.yml b/cassettes/features/v2/incidents/List-incident-notification-rules-returns-OK-response.yml index cff1618f6b91..dfd05ca4a21a 100644 --- a/cassettes/features/v2/incidents/List-incident-notification-rules-returns-OK-response.yml +++ b/cassettes/features/v2/incidents/List-incident-notification-rules-returns-OK-response.yml @@ -1,5 +1,5 @@ http_interactions: -- recorded_at: Mon, 19 Jan 2026 20:16:06 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:49 GMT request: body: encoding: UTF-8 @@ -16,9 +16,9 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":{"id":"df9dd594-214a-4ff6-ad38-ce2eed607f33","type":"incident_types","attributes":{"createdAt":"2026-01-19T20:16:07.114979137Z","createdBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","description":"Any + string: '{"data":{"id":"637b6149-2ec4-4fbb-9346-ca814670a349","type":"incident_types","attributes":{"createdAt":"2026-02-23T14:06:49.406817513Z","createdBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","description":"Any incidents that harm (or have the potential to) the confidentiality, integrity, - or availability of our data.","is_default":false,"lastModifiedBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","modifiedAt":"2026-01-19T20:16:07.114979235Z","name":"Security + or availability of our data.","is_default":false,"lastModifiedBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","modifiedAt":"2026-02-23T14:06:49.406817586Z","name":"Security Incident","prefix":"IR"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"google_chat_configuration":{"data":null},"google_meet_configuration":{"data":null},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"microsoft_teams_configuration":{"data":null},"zoom_configuration":{"data":null}}}}' headers: Content-Type: @@ -26,11 +26,11 @@ http_interactions: status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:16:06 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:49 GMT request: body: encoding: UTF-8 - string: '{"data":{"attributes":{"conditions":[{"field":"severity","values":["SEV-1","SEV-2"]}],"enabled":true,"handles":["@test-email@company.com"],"trigger":"incident_created_trigger","visibility":"organization"},"relationships":{"incident_type":{"data":{"id":"df9dd594-214a-4ff6-ad38-ce2eed607f33","type":"incident_types"}}},"type":"incident_notification_rules"}}' + string: '{"data":{"attributes":{"conditions":[{"field":"severity","values":["SEV-1","SEV-2"]}],"enabled":true,"handles":["@test-email@company.com"],"trigger":"incident_created_trigger","visibility":"organization"},"relationships":{"incident_type":{"data":{"id":"637b6149-2ec4-4fbb-9346-ca814670a349","type":"incident_types"}}},"type":"incident_notification_rules"}}' headers: Accept: - application/json @@ -41,14 +41,14 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":{"id":"ee710f27-a197-4fc5-b83e-cae632c7dc36","type":"incident_notification_rules","attributes":{"conditions":[{"field":"severity","values":["SEV-1","SEV-2"]}],"created":"2026-01-19T20:16:07.401071384Z","enabled":true,"handles":["@test-email@company.com"],"modified":"2026-01-19T20:16:07.401071384Z","renotify_on":[],"trigger":"incident_created_trigger","visibility":"organization"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"incident_type":{"data":{"id":"df9dd594-214a-4ff6-ad38-ce2eed607f33","type":"incident_types"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' + string: '{"data":{"id":"dba18fe0-a558-46b5-b20f-614d1e20e05c","type":"incident_notification_rules","attributes":{"conditions":[{"field":"severity","values":["SEV-1","SEV-2"]}],"created":"2026-02-23T14:06:49.680631804Z","enabled":true,"handles":["@test-email@company.com"],"modified":"2026-02-23T14:06:49.680631804Z","renotify_on":[],"trigger":"incident_created_trigger","visibility":"organization"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"incident_type":{"data":{"id":"637b6149-2ec4-4fbb-9346-ca814670a349","type":"incident_types"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' headers: Content-Type: - application/vnd.api+json status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:16:06 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:49 GMT request: body: null headers: @@ -59,21 +59,21 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":[{"id":"ee710f27-a197-4fc5-b83e-cae632c7dc36","type":"incident_notification_rules","attributes":{"conditions":[{"field":"severity","values":["SEV-1","SEV-2"]}],"created":"2026-01-19T20:16:07.401071Z","enabled":true,"handles":["@test-email@company.com"],"modified":"2026-01-19T20:16:07.401071Z","renotify_on":[],"trigger":"incident_created_trigger","visibility":"organization"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"incident_type":{"data":{"id":"df9dd594-214a-4ff6-ad38-ce2eed607f33","type":"incident_types"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}],"meta":{"pagination":{"offset":0,"next_offset":1,"size":1}}}' + string: '{"data":[{"id":"dba18fe0-a558-46b5-b20f-614d1e20e05c","type":"incident_notification_rules","attributes":{"conditions":[{"field":"severity","values":["SEV-1","SEV-2"]}],"created":"2026-02-23T14:06:49.680631Z","enabled":true,"handles":["@test-email@company.com"],"modified":"2026-02-23T14:06:49.680631Z","renotify_on":[],"trigger":"incident_created_trigger","visibility":"organization"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"incident_type":{"data":{"id":"637b6149-2ec4-4fbb-9346-ca814670a349","type":"incident_types"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}],"meta":{"pagination":{"offset":0,"next_offset":1,"size":1}}}' headers: Content-Type: - application/vnd.api+json status: code: 200 message: OK -- recorded_at: Mon, 19 Jan 2026 20:16:06 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:49 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/config/notification-rules/ee710f27-a197-4fc5-b83e-cae632c7dc36 + uri: https://api.datadoghq.com/api/v2/incidents/config/notification-rules/dba18fe0-a558-46b5-b20f-614d1e20e05c response: body: encoding: UTF-8 @@ -82,14 +82,14 @@ http_interactions: status: code: 204 message: No Content -- recorded_at: Mon, 19 Jan 2026 20:16:06 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:49 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/config/types/df9dd594-214a-4ff6-ad38-ce2eed607f33 + uri: https://api.datadoghq.com/api/v2/incidents/config/types/637b6149-2ec4-4fbb-9346-ca814670a349 response: body: encoding: UTF-8 diff --git a/cassettes/features/v2/incidents/List-incident-notification-templates-returns-OK-response.frozen b/cassettes/features/v2/incidents/List-incident-notification-templates-returns-OK-response.frozen index 907826b95bc7..a7f8af803829 100644 --- a/cassettes/features/v2/incidents/List-incident-notification-templates-returns-OK-response.frozen +++ b/cassettes/features/v2/incidents/List-incident-notification-templates-returns-OK-response.frozen @@ -1 +1 @@ -2026-01-19T20:16:07.954Z \ No newline at end of file +2026-02-23T14:06:49.999Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/List-incident-notification-templates-returns-OK-response.yml b/cassettes/features/v2/incidents/List-incident-notification-templates-returns-OK-response.yml index 307f43372c02..1381667054d6 100644 --- a/cassettes/features/v2/incidents/List-incident-notification-templates-returns-OK-response.yml +++ b/cassettes/features/v2/incidents/List-incident-notification-templates-returns-OK-response.yml @@ -1,5 +1,5 @@ http_interactions: -- recorded_at: Mon, 19 Jan 2026 20:16:07 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:49 GMT request: body: null headers: diff --git a/cassettes/features/v2/incidents/Remove-commander-from-an-incident-returns-OK-response.frozen b/cassettes/features/v2/incidents/Remove-commander-from-an-incident-returns-OK-response.frozen index 97b25660f1bd..6659ed5e4a3f 100644 --- a/cassettes/features/v2/incidents/Remove-commander-from-an-incident-returns-OK-response.frozen +++ b/cassettes/features/v2/incidents/Remove-commander-from-an-incident-returns-OK-response.frozen @@ -1 +1 @@ -2026-01-19T20:16:08.104Z \ No newline at end of file +2026-02-23T14:06:50.098Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/Remove-commander-from-an-incident-returns-OK-response.yml b/cassettes/features/v2/incidents/Remove-commander-from-an-incident-returns-OK-response.yml index d54758ed8fb8..d1be798c049a 100644 --- a/cassettes/features/v2/incidents/Remove-commander-from-an-incident-returns-OK-response.yml +++ b/cassettes/features/v2/incidents/Remove-commander-from-an-incident-returns-OK-response.yml @@ -1,9 +1,9 @@ http_interactions: -- recorded_at: Mon, 19 Jan 2026 20:16:08 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:50 GMT request: body: encoding: UTF-8 - string: '{"data":{"attributes":{"customer_impacted":false,"title":"Test-Remove_commander_from_an_incident_returns_OK_response-1768853768"},"type":"incidents"}}' + string: '{"data":{"attributes":{"customer_impacted":false,"title":"Test-Remove_commander_from_an_incident_returns_OK_response-1771855610"},"type":"incidents"}}' headers: Accept: - application/json @@ -14,7 +14,7 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":{"type":"incidents","id":"b076e05a-db01-5a1b-b786-bf5ec5802596","attributes":{"public_id":331309,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Remove_commander_from_an_incident_returns_OK_response-1768853768","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-19T20:16:08.296317+00:00","modified":"2026-01-19T20:16:08.296317+00:00","commander":null,"detected":"2026-01-19T20:16:08.281556+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-19T20:16:08.296317+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}}} + string: '{"data":{"type":"incidents","id":"0716c140-d36a-51c2-a94a-c6ac657f1062","attributes":{"public_id":338024,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Remove_commander_from_an_incident_returns_OK_response-1771855610","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-02-23T14:06:50.256974+00:00","modified":"2026-02-23T14:06:50.256974+00:00","commander":null,"detected":"2026-02-23T14:06:50.245563+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-02-23T14:06:50.256974+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"slug":{"type":"textbox","value":"IR-338024"}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"},{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"2b9f1063-b915-4c7a-8bbd-fc3940245529"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}}} ' headers: @@ -23,22 +23,22 @@ http_interactions: status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:16:08 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:50 GMT request: body: encoding: UTF-8 - string: '{"data":{"id":"b076e05a-db01-5a1b-b786-bf5ec5802596","relationships":{"commander_user":{"data":null}},"type":"incidents"}}' + string: '{"data":{"id":"0716c140-d36a-51c2-a94a-c6ac657f1062","relationships":{"commander_user":{"data":null}},"type":"incidents"}}' headers: Accept: - application/json Content-Type: - application/json method: PATCH - uri: https://api.datadoghq.com/api/v2/incidents/b076e05a-db01-5a1b-b786-bf5ec5802596 + uri: https://api.datadoghq.com/api/v2/incidents/0716c140-d36a-51c2-a94a-c6ac657f1062 response: body: encoding: UTF-8 - string: '{"data":{"type":"incidents","id":"b076e05a-db01-5a1b-b786-bf5ec5802596","attributes":{"public_id":331309,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Remove_commander_from_an_incident_returns_OK_response-1768853768","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","created":"2026-01-19T20:16:08.296317+00:00","modified":"2026-01-19T20:16:08.868833+00:00","commander":null,"detected":"2026-01-19T20:16:08.281556+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-19T20:16:08.296317+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[{"type":"incident_responders","id":"39676192-251c-592f-a578-fc8d6b8d6bc4"}]},"impacts":{"data":[]}}}} + string: '{"data":{"type":"incidents","id":"0716c140-d36a-51c2-a94a-c6ac657f1062","attributes":{"public_id":338024,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Remove_commander_from_an_incident_returns_OK_response-1771855610","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","created":"2026-02-23T14:06:50.256974+00:00","modified":"2026-02-23T14:06:50.738252+00:00","commander":null,"detected":"2026-02-23T14:06:50.245563+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-02-23T14:06:50.256974+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","fields":{"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"slug":{"type":"textbox","value":"IR-338024"}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"},{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"2b9f1063-b915-4c7a-8bbd-fc3940245529"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[{"type":"incident_responders","id":"be483c8c-6823-5185-aea4-2b5e3a1750f8"}]},"impacts":{"data":[]}}}} ' headers: @@ -47,14 +47,14 @@ http_interactions: status: code: 200 message: OK -- recorded_at: Mon, 19 Jan 2026 20:16:08 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:50 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/b076e05a-db01-5a1b-b786-bf5ec5802596 + uri: https://api.datadoghq.com/api/v2/incidents/0716c140-d36a-51c2-a94a-c6ac657f1062 response: body: encoding: UTF-8 diff --git a/cassettes/features/v2/incidents/Search-for-incidents-returns-OK-response.frozen b/cassettes/features/v2/incidents/Search-for-incidents-returns-OK-response.frozen index 6a235aba551f..f603d7559877 100644 --- a/cassettes/features/v2/incidents/Search-for-incidents-returns-OK-response.frozen +++ b/cassettes/features/v2/incidents/Search-for-incidents-returns-OK-response.frozen @@ -1 +1 @@ -2026-01-19T20:16:09.488Z \ No newline at end of file +2026-02-23T14:06:51.167Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/Search-for-incidents-returns-OK-response.yml b/cassettes/features/v2/incidents/Search-for-incidents-returns-OK-response.yml index 173f9b0f9439..c23432a7b995 100644 --- a/cassettes/features/v2/incidents/Search-for-incidents-returns-OK-response.yml +++ b/cassettes/features/v2/incidents/Search-for-incidents-returns-OK-response.yml @@ -1,9 +1,9 @@ http_interactions: -- recorded_at: Mon, 19 Jan 2026 20:16:09 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:51 GMT request: body: encoding: UTF-8 - string: '{"data":{"attributes":{"customer_impacted":false,"title":"Test-Search_for_incidents_returns_OK_response-1768853769"},"type":"incidents"}}' + string: '{"data":{"attributes":{"customer_impacted":false,"title":"Test-Search_for_incidents_returns_OK_response-1771855611"},"type":"incidents"}}' headers: Accept: - application/json @@ -14,7 +14,7 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":{"type":"incidents","id":"cb8554e7-75e5-5bc4-a9a9-d2cad60c619a","attributes":{"public_id":331310,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Search_for_incidents_returns_OK_response-1768853769","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-19T20:16:09.666429+00:00","modified":"2026-01-19T20:16:09.666429+00:00","commander":null,"detected":"2026-01-19T20:16:09.656176+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-19T20:16:09.666429+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}}} + string: '{"data":{"type":"incidents","id":"ae9bf4be-cc56-5def-b363-1afe660c60a8","attributes":{"public_id":338025,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Search_for_incidents_returns_OK_response-1771855611","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-02-23T14:06:51.320944+00:00","modified":"2026-02-23T14:06:51.320944+00:00","commander":null,"detected":"2026-02-23T14:06:51.311326+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-02-23T14:06:51.320944+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"slug":{"type":"textbox","value":"IR-338025"}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"},{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"2b9f1063-b915-4c7a-8bbd-fc3940245529"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}}} ' headers: @@ -23,7 +23,7 @@ http_interactions: status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:16:09 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:51 GMT request: body: null headers: @@ -34,117 +34,12 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":{"type":"incidents_search_results","attributes":{"total":700,"facets":{"severity":[{"name":"UNKNOWN","count":700},{"name":"SEV-1","count":0},{"name":"SEV-2","count":0},{"name":"SEV-3","count":0},{"name":"SEV-4","count":0},{"name":"SEV-5","count":0}],"time_to_repair":[{"name":"time_to_repair","aggregates":{"min":null,"max":null}}],"visibility":[{"name":"organization","count":700}],"impact":[{"name":"customer","count":10},{"name":"none","count":690}],"responder":[{"name":"frog","count":56,"handle":"frog@datadoghq.com","uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","email":"frog@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1757330078@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1757330078@datadoghq.com","uuid":"029c8527-8ca5-11f0-8a19-fe4bcd8bf1a4","email":"test-typescript-create_an_incident_returns_created_response-1757330078@datadoghq.com"},{"name":"example-create_an_incident_returns_created_response_1765720054@datadoghq.com","count":1,"handle":"example-create_an_incident_returns_created_response_1765720054@datadoghq.com","uuid":"052b5012-bb2a-4d8b-9792-0dff37df8d3d","email":"example-create_an_incident_returns_created_response_1765720054@datadoghq.com"},{"name":"example-create_an_incident_returns_created_response_1765806455@datadoghq.com","count":1,"handle":"example-create_an_incident_returns_created_response_1765806455@datadoghq.com","uuid":"0e8b1362-7fd6-4c60-9bef-20c6e112d11b","email":"example-create_an_incident_returns_created_response_1765806455@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1756206969@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1756206969@datadoghq.com","uuid":"11af5e31-826e-11f0-9a23-3249900ee276","email":"test-typescript-create_an_incident_returns_created_response-1756206969@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1758107505@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1758107505@datadoghq.com","uuid":"19419445-93b7-11f0-bdb6-32017789d097","email":"test-typescript-create_an_incident_returns_created_response-1758107505@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1755515496@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1755515496@datadoghq.com","uuid":"1b66a89c-7c24-11f0-82ce-56b8c7416041","email":"test-typescript-create_an_incident_returns_created_response-1755515496@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1756984380@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1756984380@datadoghq.com","uuid":"1eab7471-8980-11f0-9630-b68653d6f397","email":"test-typescript-create_an_incident_returns_created_response-1756984380@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1756293322@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1756293322@datadoghq.com","uuid":"1fd53080-8337-11f0-9a23-3249900ee276","email":"test-typescript-create_an_incident_returns_created_response-1756293322@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1758021204@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1758021204@datadoghq.com","uuid":"295b5018-92ee-11f0-af0f-ca7407a0de84","email":"test-typescript-create_an_incident_returns_created_response-1758021204@datadoghq.com"},{"name":"test-create_an_incident_returns_created_response-1758223936@datadoghq.com","count":1,"handle":"test-create_an_incident_returns_created_response-1758223936@datadoghq.com","uuid":"2f18eb76-94c6-11f0-b3f1-166929e0c295","email":"test-create_an_incident_returns_created_response-1758223936@datadoghq.com"},{"name":"example-add_commander_to_an_incident_returns_ok_response_1760441857@datadoghq.com","count":1,"handle":"example-add_commander_to_an_incident_returns_ok_response_1760441857@datadoghq.com","uuid":"2f902bcb-a8f2-11f0-ac7d-daceb645dfe8","email":"example-add_commander_to_an_incident_returns_ok_response_1760441857@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1755601871@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1755601871@datadoghq.com","uuid":"36db2935-7ced-11f0-8ab2-aaa6cfbf43ab","email":"test-typescript-create_an_incident_returns_created_response-1755601871@datadoghq.com"},{"name":"example-create_an_incident_returns_created_response_1765705654@datadoghq.com","count":1,"handle":"example-create_an_incident_returns_created_response_1765705654@datadoghq.com","uuid":"409fa84d-e25c-431d-b9fc-1679195174db","email":"example-create_an_incident_returns_created_response_1765705654@datadoghq.com"},{"name":"example-create_an_incident_returns_created_response_1765576054@datadoghq.com","count":1,"handle":"example-create_an_incident_returns_created_response_1765576054@datadoghq.com","uuid":"4b1bc182-4868-4c79-ac74-8852e7e65a40","email":"example-create_an_incident_returns_created_response_1765576054@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1757070809@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1757070809@datadoghq.com","uuid":"59bf6626-8a49-11f0-bed2-92bc12ac08e7","email":"test-typescript-create_an_incident_returns_created_response-1757070809@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1757934969@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1757934969@datadoghq.com","uuid":"61e23cea-9225-11f0-bbfa-e6e423bce93d","email":"test-typescript-create_an_incident_returns_created_response-1757934969@datadoghq.com"},{"name":"example-create_an_incident_returns_created_response_1765619254@datadoghq.com","count":1,"handle":"example-create_an_incident_returns_created_response_1765619254@datadoghq.com","uuid":"62bacd65-614d-4a8f-9cb4-8a715409860b","email":"example-create_an_incident_returns_created_response_1765619254@datadoghq.com"},{"name":"example-create_an_incident_returns_created_response_1765590454@datadoghq.com","count":1,"handle":"example-create_an_incident_returns_created_response_1765590454@datadoghq.com","uuid":"6836f6a1-3478-4a05-a215-dce1785619c1","email":"example-create_an_incident_returns_created_response_1765590454@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1757502926@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1757502926@datadoghq.com","uuid":"7436c633-8e37-11f0-9200-7a1e779417b3","email":"test-typescript-create_an_incident_returns_created_response-1757502926@datadoghq.com"},{"name":"example-create_an_incident_returns_created_response_1765691254@datadoghq.com","count":1,"handle":"example-create_an_incident_returns_created_response_1765691254@datadoghq.com","uuid":"7e175815-edbd-4fc9-a83f-57537228e889","email":"example-create_an_incident_returns_created_response_1765691254@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1756898212@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1756898212@datadoghq.com","uuid":"7e43074e-88b7-11f0-a3ef-5a25d22381f2","email":"test-typescript-create_an_incident_returns_created_response-1756898212@datadoghq.com"},{"name":"example-create_an_incident_returns_created_response_1765648054@datadoghq.com","count":1,"handle":"example-create_an_incident_returns_created_response_1765648054@datadoghq.com","uuid":"854b5f40-3873-4b92-9cd4-de0dd1cc46fc","email":"example-create_an_incident_returns_created_response_1765648054@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1756811476@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1756811476@datadoghq.com","uuid":"8bbd1586-87ed-11f0-b8f1-8a5791919e58","email":"test-typescript-create_an_incident_returns_created_response-1756811476@datadoghq.com"},{"name":"example-create_an_incident_returns_created_response_1765777654@datadoghq.com","count":1,"handle":"example-create_an_incident_returns_created_response_1765777654@datadoghq.com","uuid":"8f7c0f2a-4d13-46e2-90b5-a63f1e539d23","email":"example-create_an_incident_returns_created_response_1765777654@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1757675638@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1757675638@datadoghq.com","uuid":"94377120-8fc9-11f0-ad41-e6b1972572d4","email":"test-typescript-create_an_incident_returns_created_response-1757675638@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1757589313@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1757589313@datadoghq.com","uuid":"96e96996-8f00-11f0-af30-3213855fe6f1","email":"test-typescript-create_an_incident_returns_created_response-1757589313@datadoghq.com"},{"name":"CI - Account","count":1,"handle":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","email":"team-intg-tools-libs-spam@datadoghq.com"},{"name":"example-create_an_incident_returns_created_response_1765604854@datadoghq.com","count":1,"handle":"example-create_an_incident_returns_created_response_1765604854@datadoghq.com","uuid":"9afd32ab-416c-42d3-9bf0-0283d7a57e17","email":"example-create_an_incident_returns_created_response_1765604854@datadoghq.com"},{"name":"example-create_an_incident_returns_created_response_1765763254@datadoghq.com","count":1,"handle":"example-create_an_incident_returns_created_response_1765763254@datadoghq.com","uuid":"a5dae43e-288c-4865-aaf3-c99e16799d41","email":"example-create_an_incident_returns_created_response_1765763254@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1756725213@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1756725213@datadoghq.com","uuid":"b2d01131-8724-11f0-b616-ca0f201dd8de","email":"test-typescript-create_an_incident_returns_created_response-1756725213@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1756379482@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1756379482@datadoghq.com","uuid":"bb03f4a3-83ff-11f0-87da-420ecf3527d7","email":"test-typescript-create_an_incident_returns_created_response-1756379482@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1755774752@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1755774752@datadoghq.com","uuid":"bc04082e-7e7f-11f0-90c1-c2c46e0d448a","email":"test-typescript-create_an_incident_returns_created_response-1755774752@datadoghq.com"},{"name":"example-create_an_incident_returns_created_response_1765748854@datadoghq.com","count":1,"handle":"example-create_an_incident_returns_created_response_1765748854@datadoghq.com","uuid":"bebaf902-62f8-4d91-b25e-66f79a339e2d","email":"example-create_an_incident_returns_created_response_1765748854@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1756120510@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1756120510@datadoghq.com","uuid":"c3ac5d7f-81a4-11f0-a107-fa576ed43664","email":"test-typescript-create_an_incident_returns_created_response-1756120510@datadoghq.com"},{"name":"example-create_an_incident_returns_created_response_1765792054@datadoghq.com","count":1,"handle":"example-create_an_incident_returns_created_response_1765792054@datadoghq.com","uuid":"c644eec4-2e8a-47c6-9503-1826dc3210ce","email":"example-create_an_incident_returns_created_response_1765792054@datadoghq.com"},{"name":"test-rust-create_an_incident_returns_created_response-1768839374@datadoghq.com","count":1,"handle":"test-rust-create_an_incident_returns_created_response-1768839374@datadoghq.com","uuid":"c9adce01-532f-42b5-8c8e-85cf25373b05","email":"test-rust-create_an_incident_returns_created_response-1768839374@datadoghq.com"},{"name":"example-create_an_incident_returns_created_response_1765662454@datadoghq.com","count":1,"handle":"example-create_an_incident_returns_created_response_1765662454@datadoghq.com","uuid":"d02b64d9-fd38-4d4a-8cc2-fb1f08269bce","email":"example-create_an_incident_returns_created_response_1765662454@datadoghq.com"},{"name":"example-create_an_incident_returns_created_response_1765633655@datadoghq.com","count":1,"handle":"example-create_an_incident_returns_created_response_1765633655@datadoghq.com","uuid":"d0aab43b-72b3-43a2-b732-8cca1c55e462","email":"example-create_an_incident_returns_created_response_1765633655@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1757416324@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1757416324@datadoghq.com","uuid":"d0cb8069-8d6d-11f0-b01d-a6ce0754b1de","email":"test-typescript-create_an_incident_returns_created_response-1757416324@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1755861143@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1755861143@datadoghq.com","uuid":"e11e8787-7f48-11f0-a053-eef5edc77172","email":"test-typescript-create_an_incident_returns_created_response-1755861143@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1756465888@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1756465888@datadoghq.com","uuid":"e8eae437-84c8-11f0-a663-4e1fc6aa8486","email":"test-typescript-create_an_incident_returns_created_response-1756465888@datadoghq.com"},{"name":"example-create_an_incident_returns_created_response_1765734454@datadoghq.com","count":1,"handle":"example-create_an_incident_returns_created_response_1765734454@datadoghq.com","uuid":"ea00f655-d915-4552-bca7-fcf3108db0c9","email":"example-create_an_incident_returns_created_response_1765734454@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1755688511@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1755688511@datadoghq.com","uuid":"f03172a9-7db6-11f0-9f6b-6a956b5745f2","email":"test-typescript-create_an_incident_returns_created_response-1755688511@datadoghq.com"},{"name":"example-create_an_incident_returns_created_response_1765676854@datadoghq.com","count":1,"handle":"example-create_an_incident_returns_created_response_1765676854@datadoghq.com","uuid":"fceb8eb4-ff40-4d55-a371-bb6b8e32a547","email":"example-create_an_incident_returns_created_response_1765676854@datadoghq.com"}],"time_to_detect":[{"name":"time_to_detect","aggregates":{"min":7354.0,"max":343434.0}}],"postmortem":[{"name":"No","count":695},{"name":"Yes","count":5}],"time_to_resolve":[{"name":"time_to_resolve","aggregates":{"min":2.0,"max":2.0}}],"is_test":[{"name":0,"count":700},{"name":true,"count":0}],"state":[{"name":"active","count":657},{"name":"resolved","count":43},{"name":"stable","count":0}],"customer_impacted":[{"name":0,"count":690},{"name":1,"count":10}],"fields":[{"name":"detection_method","facets":[{"name":"unknown","count":700},{"name":"customer","count":0},{"name":"employee","count":0},{"name":"monitor","count":0},{"name":"other","count":0}]},{"name":"root_cause","facets":[]},{"name":"services","facets":[]},{"name":"summary","facets":[]},{"name":"teams","facets":[]}],"created_by":[{"name":"CI - Account","count":350,"handle":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","email":"team-intg-tools-libs-spam@datadoghq.com"},{"name":"frog","count":336,"handle":"frog@datadoghq.com","uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","email":"frog@datadoghq.com"},{"name":"Ulysse - Mavrocordatos","count":14,"handle":"ulysse.mavrocordatos@datadoghq.com","uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","email":"ulysse.mavrocordatos@datadoghq.com"}],"declared_by":[{"name":"CI - Account","count":350,"handle":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","email":"team-intg-tools-libs-spam@datadoghq.com"},{"name":"frog","count":336,"handle":"frog@datadoghq.com","uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","email":"frog@datadoghq.com"},{"name":"Ulysse - Mavrocordatos","count":14,"handle":"ulysse.mavrocordatos@datadoghq.com","uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","email":"ulysse.mavrocordatos@datadoghq.com"}],"last_modified_by":[{"name":"CI - Account","count":350,"handle":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","email":"team-intg-tools-libs-spam@datadoghq.com"},{"name":"frog","count":336,"handle":"frog@datadoghq.com","uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","email":"frog@datadoghq.com"},{"name":"Ulysse - Mavrocordatos","count":14,"handle":"ulysse.mavrocordatos@datadoghq.com","uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","email":"ulysse.mavrocordatos@datadoghq.com"}],"commander":[{"name":"test-typescript-create_an_incident_returns_created_response-1757330078@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1757330078@datadoghq.com","uuid":"029c8527-8ca5-11f0-8a19-fe4bcd8bf1a4","email":"test-typescript-create_an_incident_returns_created_response-1757330078@datadoghq.com"},{"name":"example-create_an_incident_returns_created_response_1765720054@datadoghq.com","count":1,"handle":"example-create_an_incident_returns_created_response_1765720054@datadoghq.com","uuid":"052b5012-bb2a-4d8b-9792-0dff37df8d3d","email":"example-create_an_incident_returns_created_response_1765720054@datadoghq.com"},{"name":"example-create_an_incident_returns_created_response_1765806455@datadoghq.com","count":1,"handle":"example-create_an_incident_returns_created_response_1765806455@datadoghq.com","uuid":"0e8b1362-7fd6-4c60-9bef-20c6e112d11b","email":"example-create_an_incident_returns_created_response_1765806455@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1756206969@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1756206969@datadoghq.com","uuid":"11af5e31-826e-11f0-9a23-3249900ee276","email":"test-typescript-create_an_incident_returns_created_response-1756206969@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1758107505@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1758107505@datadoghq.com","uuid":"19419445-93b7-11f0-bdb6-32017789d097","email":"test-typescript-create_an_incident_returns_created_response-1758107505@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1755515496@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1755515496@datadoghq.com","uuid":"1b66a89c-7c24-11f0-82ce-56b8c7416041","email":"test-typescript-create_an_incident_returns_created_response-1755515496@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1756984380@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1756984380@datadoghq.com","uuid":"1eab7471-8980-11f0-9630-b68653d6f397","email":"test-typescript-create_an_incident_returns_created_response-1756984380@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1756293322@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1756293322@datadoghq.com","uuid":"1fd53080-8337-11f0-9a23-3249900ee276","email":"test-typescript-create_an_incident_returns_created_response-1756293322@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1758021204@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1758021204@datadoghq.com","uuid":"295b5018-92ee-11f0-af0f-ca7407a0de84","email":"test-typescript-create_an_incident_returns_created_response-1758021204@datadoghq.com"},{"name":"test-create_an_incident_returns_created_response-1758223936@datadoghq.com","count":1,"handle":"test-create_an_incident_returns_created_response-1758223936@datadoghq.com","uuid":"2f18eb76-94c6-11f0-b3f1-166929e0c295","email":"test-create_an_incident_returns_created_response-1758223936@datadoghq.com"},{"name":"example-add_commander_to_an_incident_returns_ok_response_1760441857@datadoghq.com","count":1,"handle":"example-add_commander_to_an_incident_returns_ok_response_1760441857@datadoghq.com","uuid":"2f902bcb-a8f2-11f0-ac7d-daceb645dfe8","email":"example-add_commander_to_an_incident_returns_ok_response_1760441857@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1755601871@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1755601871@datadoghq.com","uuid":"36db2935-7ced-11f0-8ab2-aaa6cfbf43ab","email":"test-typescript-create_an_incident_returns_created_response-1755601871@datadoghq.com"},{"name":"example-create_an_incident_returns_created_response_1765705654@datadoghq.com","count":1,"handle":"example-create_an_incident_returns_created_response_1765705654@datadoghq.com","uuid":"409fa84d-e25c-431d-b9fc-1679195174db","email":"example-create_an_incident_returns_created_response_1765705654@datadoghq.com"},{"name":"example-create_an_incident_returns_created_response_1765576054@datadoghq.com","count":1,"handle":"example-create_an_incident_returns_created_response_1765576054@datadoghq.com","uuid":"4b1bc182-4868-4c79-ac74-8852e7e65a40","email":"example-create_an_incident_returns_created_response_1765576054@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1757070809@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1757070809@datadoghq.com","uuid":"59bf6626-8a49-11f0-bed2-92bc12ac08e7","email":"test-typescript-create_an_incident_returns_created_response-1757070809@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1757934969@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1757934969@datadoghq.com","uuid":"61e23cea-9225-11f0-bbfa-e6e423bce93d","email":"test-typescript-create_an_incident_returns_created_response-1757934969@datadoghq.com"},{"name":"example-create_an_incident_returns_created_response_1765619254@datadoghq.com","count":1,"handle":"example-create_an_incident_returns_created_response_1765619254@datadoghq.com","uuid":"62bacd65-614d-4a8f-9cb4-8a715409860b","email":"example-create_an_incident_returns_created_response_1765619254@datadoghq.com"},{"name":"example-create_an_incident_returns_created_response_1765590454@datadoghq.com","count":1,"handle":"example-create_an_incident_returns_created_response_1765590454@datadoghq.com","uuid":"6836f6a1-3478-4a05-a215-dce1785619c1","email":"example-create_an_incident_returns_created_response_1765590454@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1757502926@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1757502926@datadoghq.com","uuid":"7436c633-8e37-11f0-9200-7a1e779417b3","email":"test-typescript-create_an_incident_returns_created_response-1757502926@datadoghq.com"},{"name":"example-create_an_incident_returns_created_response_1765691254@datadoghq.com","count":1,"handle":"example-create_an_incident_returns_created_response_1765691254@datadoghq.com","uuid":"7e175815-edbd-4fc9-a83f-57537228e889","email":"example-create_an_incident_returns_created_response_1765691254@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1756898212@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1756898212@datadoghq.com","uuid":"7e43074e-88b7-11f0-a3ef-5a25d22381f2","email":"test-typescript-create_an_incident_returns_created_response-1756898212@datadoghq.com"},{"name":"example-create_an_incident_returns_created_response_1765648054@datadoghq.com","count":1,"handle":"example-create_an_incident_returns_created_response_1765648054@datadoghq.com","uuid":"854b5f40-3873-4b92-9cd4-de0dd1cc46fc","email":"example-create_an_incident_returns_created_response_1765648054@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1756811476@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1756811476@datadoghq.com","uuid":"8bbd1586-87ed-11f0-b8f1-8a5791919e58","email":"test-typescript-create_an_incident_returns_created_response-1756811476@datadoghq.com"},{"name":"example-create_an_incident_returns_created_response_1765777654@datadoghq.com","count":1,"handle":"example-create_an_incident_returns_created_response_1765777654@datadoghq.com","uuid":"8f7c0f2a-4d13-46e2-90b5-a63f1e539d23","email":"example-create_an_incident_returns_created_response_1765777654@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1757675638@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1757675638@datadoghq.com","uuid":"94377120-8fc9-11f0-ad41-e6b1972572d4","email":"test-typescript-create_an_incident_returns_created_response-1757675638@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1757589313@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1757589313@datadoghq.com","uuid":"96e96996-8f00-11f0-af30-3213855fe6f1","email":"test-typescript-create_an_incident_returns_created_response-1757589313@datadoghq.com"},{"name":"example-create_an_incident_returns_created_response_1765604854@datadoghq.com","count":1,"handle":"example-create_an_incident_returns_created_response_1765604854@datadoghq.com","uuid":"9afd32ab-416c-42d3-9bf0-0283d7a57e17","email":"example-create_an_incident_returns_created_response_1765604854@datadoghq.com"},{"name":"example-create_an_incident_returns_created_response_1765763254@datadoghq.com","count":1,"handle":"example-create_an_incident_returns_created_response_1765763254@datadoghq.com","uuid":"a5dae43e-288c-4865-aaf3-c99e16799d41","email":"example-create_an_incident_returns_created_response_1765763254@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1756725213@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1756725213@datadoghq.com","uuid":"b2d01131-8724-11f0-b616-ca0f201dd8de","email":"test-typescript-create_an_incident_returns_created_response-1756725213@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1756379482@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1756379482@datadoghq.com","uuid":"bb03f4a3-83ff-11f0-87da-420ecf3527d7","email":"test-typescript-create_an_incident_returns_created_response-1756379482@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1755774752@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1755774752@datadoghq.com","uuid":"bc04082e-7e7f-11f0-90c1-c2c46e0d448a","email":"test-typescript-create_an_incident_returns_created_response-1755774752@datadoghq.com"},{"name":"example-create_an_incident_returns_created_response_1765748854@datadoghq.com","count":1,"handle":"example-create_an_incident_returns_created_response_1765748854@datadoghq.com","uuid":"bebaf902-62f8-4d91-b25e-66f79a339e2d","email":"example-create_an_incident_returns_created_response_1765748854@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1756120510@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1756120510@datadoghq.com","uuid":"c3ac5d7f-81a4-11f0-a107-fa576ed43664","email":"test-typescript-create_an_incident_returns_created_response-1756120510@datadoghq.com"},{"name":"example-create_an_incident_returns_created_response_1765792054@datadoghq.com","count":1,"handle":"example-create_an_incident_returns_created_response_1765792054@datadoghq.com","uuid":"c644eec4-2e8a-47c6-9503-1826dc3210ce","email":"example-create_an_incident_returns_created_response_1765792054@datadoghq.com"},{"name":"test-rust-create_an_incident_returns_created_response-1768839374@datadoghq.com","count":1,"handle":"test-rust-create_an_incident_returns_created_response-1768839374@datadoghq.com","uuid":"c9adce01-532f-42b5-8c8e-85cf25373b05","email":"test-rust-create_an_incident_returns_created_response-1768839374@datadoghq.com"},{"name":"example-create_an_incident_returns_created_response_1765662454@datadoghq.com","count":1,"handle":"example-create_an_incident_returns_created_response_1765662454@datadoghq.com","uuid":"d02b64d9-fd38-4d4a-8cc2-fb1f08269bce","email":"example-create_an_incident_returns_created_response_1765662454@datadoghq.com"},{"name":"example-create_an_incident_returns_created_response_1765633655@datadoghq.com","count":1,"handle":"example-create_an_incident_returns_created_response_1765633655@datadoghq.com","uuid":"d0aab43b-72b3-43a2-b732-8cca1c55e462","email":"example-create_an_incident_returns_created_response_1765633655@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1757416324@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1757416324@datadoghq.com","uuid":"d0cb8069-8d6d-11f0-b01d-a6ce0754b1de","email":"test-typescript-create_an_incident_returns_created_response-1757416324@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1755861143@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1755861143@datadoghq.com","uuid":"e11e8787-7f48-11f0-a053-eef5edc77172","email":"test-typescript-create_an_incident_returns_created_response-1755861143@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1756465888@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1756465888@datadoghq.com","uuid":"e8eae437-84c8-11f0-a663-4e1fc6aa8486","email":"test-typescript-create_an_incident_returns_created_response-1756465888@datadoghq.com"},{"name":"example-create_an_incident_returns_created_response_1765734454@datadoghq.com","count":1,"handle":"example-create_an_incident_returns_created_response_1765734454@datadoghq.com","uuid":"ea00f655-d915-4552-bca7-fcf3108db0c9","email":"example-create_an_incident_returns_created_response_1765734454@datadoghq.com"},{"name":"test-typescript-create_an_incident_returns_created_response-1755688511@datadoghq.com","count":1,"handle":"test-typescript-create_an_incident_returns_created_response-1755688511@datadoghq.com","uuid":"f03172a9-7db6-11f0-9f6b-6a956b5745f2","email":"test-typescript-create_an_incident_returns_created_response-1755688511@datadoghq.com"},{"name":"example-create_an_incident_returns_created_response_1765676854@datadoghq.com","count":1,"handle":"example-create_an_incident_returns_created_response_1765676854@datadoghq.com","uuid":"fceb8eb4-ff40-4d55-a371-bb6b8e32a547","email":"example-create_an_incident_returns_created_response_1765676854@datadoghq.com"}],"incident_type":[{"name":"[DO - NOT EDIT] f044c1c56d438506","count":700,"id":"41d2e10b-4108-4736-92d7-791d00ea0702"}]},"incidents":[{"data":{"type":"incidents","attributes":{"declared":"2026-01-19T16:17:07+00:00","public_id":331283,"created_by_uuid":null,"state":"active","time_to_repair":0,"customer_impact_start":null,"time_to_resolve":0,"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1768839427,"end":null}]}}},"notification_handles":null,"resolved":null,"fields":{"summary":{"type":"textbox","value":null},"detection_method":{"type":"dropdown","value":"unknown"},"services":{"type":"autocomplete","value":null},"root_cause":{"type":"textbox","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"teams":{"type":"autocomplete","value":null}},"case_id":null,"customer_impact_duration":0,"created":"2026-01-19T16:17:07+00:00","last_modified_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"time_to_detect":0,"customer_impact_end":null,"created_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"commander":null,"is_test":false,"creation_idempotency_key":null,"last_modified_by_uuid":null,"customer_impact_scope":"","detected":"2026-01-19T16:17:07+00:00","incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","severity":"UNKNOWN","declared_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"time_to_internal_response":0,"customer_impacted":false,"declared_by_uuid":null,"modified":"2026-01-19T16:17:07+00:00","visibility":"organization","title":"Test-Rust-Update_an_incident_todo_returns_OK_response-1768839426","archived":null,"non_datadog_creator":null},"relationships":{"integrations":{"data":[]},"attachments":{"data":[]},"impacts":{"data":[]},"created_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"user_defined_fields":{"data":[]},"responders":{"data":[]},"commander_user":{"data":null},"last_modified_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"declared_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}}},"id":"5bd8a20b-07ff-50f6-8b10-bf64d693314d"}},{"data":{"type":"incidents","attributes":{"declared":"2026-01-19T16:17:05+00:00","public_id":331282,"created_by_uuid":null,"state":"active","time_to_repair":0,"customer_impact_start":null,"time_to_resolve":0,"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1768839426,"end":null}]}}},"notification_handles":null,"resolved":null,"fields":{"teams":{"type":"autocomplete","value":null},"summary":{"type":"textbox","value":null},"detection_method":{"type":"dropdown","value":"unknown"},"services":{"type":"autocomplete","value":null},"root_cause":{"type":"textbox","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"}},"case_id":null,"customer_impact_duration":0,"created":"2026-01-19T16:17:05+00:00","last_modified_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"time_to_detect":0,"customer_impact_end":null,"created_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"commander":null,"is_test":false,"creation_idempotency_key":null,"last_modified_by_uuid":null,"customer_impact_scope":"","detected":"2026-01-19T16:17:05+00:00","incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","severity":"UNKNOWN","declared_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"time_to_internal_response":0,"customer_impacted":false,"declared_by_uuid":null,"modified":"2026-01-19T16:17:05+00:00","visibility":"organization","title":"Test-Rust-Update_an_existing_incident_returns_OK_response-1768839425","archived":null,"non_datadog_creator":null},"relationships":{"integrations":{"data":[]},"attachments":{"data":[]},"impacts":{"data":[]},"created_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"user_defined_fields":{"data":[]},"responders":{"data":[]},"commander_user":{"data":null},"last_modified_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"declared_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}}},"id":"5eef21f5-bd00-52d3-91e9-a360e494d1a6"}},{"data":{"type":"incidents","attributes":{"declared":"2026-01-19T16:17:04+00:00","public_id":331281,"created_by_uuid":null,"state":"active","time_to_repair":0,"customer_impact_start":null,"time_to_resolve":0,"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1768839424,"end":null}]}}},"notification_handles":null,"resolved":null,"fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"teams":{"type":"autocomplete","value":null},"summary":{"type":"textbox","value":null},"detection_method":{"type":"dropdown","value":"unknown"},"services":{"type":"autocomplete","value":null},"root_cause":{"type":"textbox","value":null}},"case_id":null,"customer_impact_duration":0,"created":"2026-01-19T16:17:04+00:00","last_modified_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"time_to_detect":0,"customer_impact_end":null,"created_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"commander":null,"is_test":false,"creation_idempotency_key":null,"last_modified_by_uuid":null,"customer_impact_scope":"","detected":"2026-01-19T16:17:04+00:00","incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","severity":"UNKNOWN","declared_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"time_to_internal_response":0,"customer_impacted":false,"declared_by_uuid":null,"modified":"2026-01-19T16:17:04+00:00","visibility":"organization","title":"Test-Rust-Update_an_existing_incident_integration_metadata_returns_OK_response-1768839424","archived":null,"non_datadog_creator":null},"relationships":{"integrations":{"data":[]},"attachments":{"data":[]},"impacts":{"data":[]},"created_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"user_defined_fields":{"data":[]},"responders":{"data":[]},"commander_user":{"data":null},"last_modified_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"declared_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}}},"id":"3bc12547-d39c-5557-8ae7-82086906a08b"}},{"data":{"type":"incidents","attributes":{"declared":"2026-01-19T16:16:41+00:00","public_id":331280,"created_by_uuid":null,"state":"active","time_to_repair":0,"customer_impact_start":null,"time_to_resolve":0,"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1768839401,"end":null}]}}},"notification_handles":null,"resolved":null,"fields":{"services":{"type":"autocomplete","value":null},"root_cause":{"type":"textbox","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"teams":{"type":"autocomplete","value":null},"summary":{"type":"textbox","value":null},"detection_method":{"type":"dropdown","value":"unknown"}},"case_id":null,"customer_impact_duration":0,"created":"2026-01-19T16:16:41+00:00","last_modified_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"time_to_detect":0,"customer_impact_end":null,"created_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"commander":null,"is_test":false,"creation_idempotency_key":null,"last_modified_by_uuid":null,"customer_impact_scope":"","detected":"2026-01-19T16:16:41+00:00","incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","severity":"UNKNOWN","declared_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"time_to_internal_response":0,"customer_impacted":false,"declared_by_uuid":null,"modified":"2026-01-19T16:16:41+00:00","visibility":"organization","title":"Test-Rust-Search_for_incidents_returns_OK_response-1768839401","archived":null,"non_datadog_creator":null},"relationships":{"integrations":{"data":[]},"attachments":{"data":[]},"impacts":{"data":[]},"created_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"user_defined_fields":{"data":[]},"responders":{"data":[]},"commander_user":{"data":null},"last_modified_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"declared_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}}},"id":"0f184c21-1052-5f09-bcc5-3dee53a0209c"}},{"data":{"type":"incidents","attributes":{"declared":"2026-01-19T16:16:39+00:00","public_id":331279,"created_by_uuid":null,"state":"active","time_to_repair":0,"customer_impact_start":null,"time_to_resolve":0,"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1768839400,"end":null}]}}},"notification_handles":null,"resolved":null,"fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"teams":{"type":"autocomplete","value":null},"summary":{"type":"textbox","value":null},"detection_method":{"type":"dropdown","value":"unknown"},"services":{"type":"autocomplete","value":null},"root_cause":{"type":"textbox","value":null}},"case_id":null,"customer_impact_duration":0,"created":"2026-01-19T16:16:39+00:00","last_modified_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"time_to_detect":0,"customer_impact_end":null,"created_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"commander":null,"is_test":false,"creation_idempotency_key":null,"last_modified_by_uuid":null,"customer_impact_scope":"","detected":"2026-01-19T16:16:39+00:00","incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","severity":"UNKNOWN","declared_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"time_to_internal_response":0,"customer_impacted":false,"declared_by_uuid":null,"modified":"2026-01-19T16:16:39+00:00","visibility":"organization","title":"Test-Rust-Remove_commander_from_an_incident_returns_OK_response-1768839399","archived":null,"non_datadog_creator":null},"relationships":{"integrations":{"data":[]},"attachments":{"data":[]},"impacts":{"data":[]},"created_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"user_defined_fields":{"data":[]},"responders":{"data":[]},"commander_user":{"data":null},"last_modified_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"declared_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}}},"id":"c8c4d543-93cc-551a-afb2-44705a8fc604"}},{"data":{"type":"incidents","attributes":{"declared":"2026-01-19T16:16:37+00:00","public_id":331278,"created_by_uuid":null,"state":"active","time_to_repair":0,"customer_impact_start":null,"time_to_resolve":0,"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1768839397,"end":null}]}}},"notification_handles":null,"resolved":null,"fields":{"summary":{"type":"textbox","value":null},"detection_method":{"type":"dropdown","value":"unknown"},"services":{"type":"autocomplete","value":null},"root_cause":{"type":"textbox","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"teams":{"type":"autocomplete","value":null}},"case_id":null,"customer_impact_duration":0,"created":"2026-01-19T16:16:37+00:00","last_modified_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"time_to_detect":0,"customer_impact_end":null,"created_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"commander":null,"is_test":false,"creation_idempotency_key":null,"last_modified_by_uuid":null,"customer_impact_scope":"","detected":"2026-01-19T16:16:37+00:00","incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","severity":"UNKNOWN","declared_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"time_to_internal_response":0,"customer_impacted":false,"declared_by_uuid":null,"modified":"2026-01-19T16:16:37+00:00","visibility":"organization","title":"Test-Rust-Get_the_details_of_an_incident_returns_OK_response-1768839396","archived":null,"non_datadog_creator":null},"relationships":{"integrations":{"data":[]},"attachments":{"data":[]},"impacts":{"data":[]},"created_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"user_defined_fields":{"data":[]},"responders":{"data":[]},"commander_user":{"data":null},"last_modified_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"declared_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}}},"id":"4fb5475a-be05-5b5a-b91b-f337e9c7067b"}},{"data":{"type":"incidents","attributes":{"declared":"2026-01-19T16:16:33+00:00","public_id":331277,"created_by_uuid":null,"state":"active","time_to_repair":0,"customer_impact_start":null,"time_to_resolve":0,"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1768839393,"end":null}]}}},"notification_handles":null,"resolved":null,"fields":{"services":{"type":"autocomplete","value":null},"root_cause":{"type":"textbox","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"teams":{"type":"autocomplete","value":null},"summary":{"type":"textbox","value":null},"detection_method":{"type":"dropdown","value":"unknown"}},"case_id":null,"customer_impact_duration":0,"created":"2026-01-19T16:16:33+00:00","last_modified_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"time_to_detect":0,"customer_impact_end":null,"created_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"commander":null,"is_test":false,"creation_idempotency_key":null,"last_modified_by_uuid":null,"customer_impact_scope":"","detected":"2026-01-19T16:16:33+00:00","incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","severity":"UNKNOWN","declared_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"time_to_internal_response":0,"customer_impacted":false,"declared_by_uuid":null,"modified":"2026-01-19T16:16:33+00:00","visibility":"organization","title":"Test-Rust-Get_incident_integration_metadata_details_returns_OK_response-1768839392","archived":null,"non_datadog_creator":null},"relationships":{"integrations":{"data":[]},"attachments":{"data":[]},"impacts":{"data":[]},"created_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"user_defined_fields":{"data":[]},"responders":{"data":[]},"commander_user":{"data":null},"last_modified_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"declared_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}}},"id":"62619087-45d7-5c15-a632-436d0a2ac1a8"}},{"data":{"type":"incidents","attributes":{"declared":"2026-01-19T16:16:31+00:00","public_id":331276,"created_by_uuid":null,"state":"active","time_to_repair":0,"customer_impact_start":null,"time_to_resolve":0,"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1768839391,"end":null}]}}},"notification_handles":null,"resolved":null,"fields":{"detection_method":{"type":"dropdown","value":"unknown"},"services":{"type":"autocomplete","value":null},"root_cause":{"type":"textbox","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"teams":{"type":"autocomplete","value":null},"summary":{"type":"textbox","value":null}},"case_id":null,"customer_impact_duration":0,"created":"2026-01-19T16:16:31+00:00","last_modified_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"time_to_detect":0,"customer_impact_end":null,"created_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"commander":null,"is_test":false,"creation_idempotency_key":null,"last_modified_by_uuid":null,"customer_impact_scope":"","detected":"2026-01-19T16:16:31+00:00","incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","severity":"UNKNOWN","declared_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"time_to_internal_response":0,"customer_impacted":false,"declared_by_uuid":null,"modified":"2026-01-19T16:16:31+00:00","visibility":"organization","title":"Test-Rust-Get_a_list_of_incidents_returns_OK_response-1768839390","archived":null,"non_datadog_creator":null},"relationships":{"integrations":{"data":[]},"attachments":{"data":[]},"impacts":{"data":[]},"created_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"user_defined_fields":{"data":[]},"responders":{"data":[]},"commander_user":{"data":null},"last_modified_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"declared_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}}},"id":"df5e6083-6853-5101-82ee-84c0bca6f303"}},{"data":{"type":"incidents","attributes":{"declared":"2026-01-19T16:16:29+00:00","public_id":331275,"created_by_uuid":null,"state":"active","time_to_repair":0,"customer_impact_start":null,"time_to_resolve":0,"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1768839389,"end":null}]}}},"notification_handles":null,"resolved":null,"fields":{"root_cause":{"type":"textbox","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"teams":{"type":"autocomplete","value":null},"summary":{"type":"textbox","value":null},"detection_method":{"type":"dropdown","value":"unknown"},"services":{"type":"autocomplete","value":null}},"case_id":null,"customer_impact_duration":0,"created":"2026-01-19T16:16:29+00:00","last_modified_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"time_to_detect":0,"customer_impact_end":null,"created_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"commander":null,"is_test":false,"creation_idempotency_key":null,"last_modified_by_uuid":null,"customer_impact_scope":"","detected":"2026-01-19T16:16:29+00:00","incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","severity":"UNKNOWN","declared_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"time_to_internal_response":0,"customer_impacted":false,"declared_by_uuid":null,"modified":"2026-01-19T16:16:29+00:00","visibility":"organization","title":"Test-Rust-Get_a_list_of_an_incident_s_integration_metadata_returns_OK_response-1768839389","archived":null,"non_datadog_creator":null},"relationships":{"integrations":{"data":[]},"attachments":{"data":[]},"impacts":{"data":[]},"created_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"user_defined_fields":{"data":[]},"responders":{"data":[]},"commander_user":{"data":null},"last_modified_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"declared_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}}},"id":"594c1482-f64a-5dee-99a6-dd6410af98d9"}},{"data":{"type":"incidents","attributes":{"declared":"2026-01-19T16:16:21+00:00","public_id":331274,"created_by_uuid":null,"state":"active","time_to_repair":0,"customer_impact_start":null,"time_to_resolve":0,"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1768839381,"end":null}]}}},"notification_handles":null,"resolved":null,"fields":{"state":{"type":"dropdown","value":"active"},"teams":{"type":"autocomplete","value":null},"summary":{"type":"textbox","value":null},"detection_method":{"type":"dropdown","value":"unknown"},"services":{"type":"autocomplete","value":null},"root_cause":{"type":"textbox","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"}},"case_id":null,"customer_impact_duration":0,"created":"2026-01-19T16:16:21+00:00","last_modified_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"time_to_detect":0,"customer_impact_end":null,"created_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"commander":null,"is_test":false,"creation_idempotency_key":null,"last_modified_by_uuid":null,"customer_impact_scope":"","detected":"2026-01-19T16:16:21+00:00","incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","severity":"UNKNOWN","declared_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"time_to_internal_response":0,"customer_impacted":false,"declared_by_uuid":null,"modified":"2026-01-19T16:16:21+00:00","visibility":"organization","title":"Test-Rust-Delete_an_incident_integration_metadata_returns_OK_response-1768839381","archived":null,"non_datadog_creator":null},"relationships":{"integrations":{"data":[]},"attachments":{"data":[]},"impacts":{"data":[]},"created_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"user_defined_fields":{"data":[]},"responders":{"data":[]},"commander_user":{"data":null},"last_modified_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"declared_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}}},"id":"c9d7fd41-f4f2-56ee-9420-c9650f38f447"}},{"data":{"type":"incidents","attributes":{"declared":"2026-01-19T16:16:20+00:00","public_id":331273,"created_by_uuid":null,"state":"active","time_to_repair":0,"customer_impact_start":null,"time_to_resolve":0,"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1768839380,"end":null}]}}},"notification_handles":null,"resolved":null,"fields":{"root_cause":{"type":"textbox","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"teams":{"type":"autocomplete","value":null},"summary":{"type":"textbox","value":null},"detection_method":{"type":"dropdown","value":"unknown"},"services":{"type":"autocomplete","value":null}},"case_id":null,"customer_impact_duration":0,"created":"2026-01-19T16:16:20+00:00","last_modified_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"time_to_detect":0,"customer_impact_end":null,"created_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"commander":null,"is_test":false,"creation_idempotency_key":null,"last_modified_by_uuid":null,"customer_impact_scope":"","detected":"2026-01-19T16:16:20+00:00","incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","severity":"UNKNOWN","declared_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"time_to_internal_response":0,"customer_impacted":false,"declared_by_uuid":null,"modified":"2026-01-19T16:16:20+00:00","visibility":"organization","title":"Test-Rust-Delete_an_existing_incident_returns_OK_response-1768839379","archived":null,"non_datadog_creator":null},"relationships":{"integrations":{"data":[]},"attachments":{"data":[]},"impacts":{"data":[]},"created_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"user_defined_fields":{"data":[]},"responders":{"data":[]},"commander_user":{"data":null},"last_modified_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"declared_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}}},"id":"65bebd2c-9e29-5830-82b8-b1906cb209f5"}},{"data":{"type":"incidents","attributes":{"declared":"2026-01-19T16:16:14+00:00","public_id":331272,"created_by_uuid":null,"state":"resolved","time_to_repair":0,"customer_impact_start":null,"time_to_resolve":0,"field_analytics":{"state":{"resolved":{"duration":0,"spans":[{"start":1768839374,"end":null}]}}},"notification_handles":null,"resolved":null,"fields":{"summary":{"type":"textbox","value":null},"detection_method":{"type":"dropdown","value":"unknown"},"services":{"type":"autocomplete","value":null},"root_cause":{"type":"textbox","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"resolved"},"teams":{"type":"autocomplete","value":null}},"case_id":null,"customer_impact_duration":0,"created":"2026-01-19T16:16:14+00:00","last_modified_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"time_to_detect":0,"customer_impact_end":null,"created_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"commander":{"data":{"type":"users","attributes":{"uuid":"c9adce01-532f-42b5-8c8e-85cf25373b05","handle":"test-rust-create_an_incident_returns_created_response-1768839374@datadoghq.com","name":"","icon":"https://secure.gravatar.com/avatar/5d7d1b2315febaf16763bdfc593b672a?s=48&d=retro","email":"test-rust-create_an_incident_returns_created_response-1768839374@datadoghq.com"},"id":"c9adce01-532f-42b5-8c8e-85cf25373b05"}},"is_test":false,"creation_idempotency_key":null,"last_modified_by_uuid":null,"customer_impact_scope":"","detected":"2026-01-19T16:16:14+00:00","incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","severity":"UNKNOWN","declared_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"time_to_internal_response":0,"customer_impacted":false,"declared_by_uuid":null,"modified":"2026-01-19T16:16:14+00:00","visibility":"organization","title":"Test-Rust-Create_an_incident_returns_CREATED_response-1768839374","archived":null,"non_datadog_creator":null},"relationships":{"integrations":{"data":[]},"attachments":{"data":[]},"impacts":{"data":[]},"created_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"user_defined_fields":{"data":[]},"responders":{"data":[{"type":"incident_responders","id":"6b998089-d6bd-5b57-9164-360701006a30"}]},"commander_user":{"data":{"type":"users","id":"c9adce01-532f-42b5-8c8e-85cf25373b05"}},"last_modified_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"declared_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}}},"id":"5e8115e1-4f18-54c4-b2fc-90e1a085383a"}},{"data":{"type":"incidents","attributes":{"declared":"2026-01-19T16:16:13+00:00","public_id":331271,"created_by_uuid":null,"state":"active","time_to_repair":0,"customer_impact_start":null,"time_to_resolve":0,"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1768839373,"end":null}]}}},"notification_handles":null,"resolved":null,"fields":{"state":{"type":"dropdown","value":"active"},"teams":{"type":"autocomplete","value":null},"summary":{"type":"textbox","value":null},"detection_method":{"type":"dropdown","value":"unknown"},"services":{"type":"autocomplete","value":null},"root_cause":{"type":"textbox","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"}},"case_id":null,"customer_impact_duration":0,"created":"2026-01-19T16:16:13+00:00","last_modified_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"time_to_detect":0,"customer_impact_end":null,"created_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"commander":null,"is_test":false,"creation_idempotency_key":null,"last_modified_by_uuid":null,"customer_impact_scope":"","detected":"2026-01-19T16:16:13+00:00","incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","severity":"UNKNOWN","declared_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"time_to_internal_response":0,"customer_impacted":false,"declared_by_uuid":null,"modified":"2026-01-19T16:16:13+00:00","visibility":"organization","title":"Test-Rust-Create_an_incident_integration_metadata_returns_CREATED_response-1768839372","archived":null,"non_datadog_creator":null},"relationships":{"integrations":{"data":[]},"attachments":{"data":[]},"impacts":{"data":[]},"created_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"user_defined_fields":{"data":[]},"responders":{"data":[]},"commander_user":{"data":null},"last_modified_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"declared_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}}},"id":"ff189604-f467-5e26-aa43-4893c5b50a16"}},{"data":{"type":"incidents","attributes":{"declared":"2026-01-19T16:16:11+00:00","public_id":331270,"created_by_uuid":null,"state":"active","time_to_repair":0,"customer_impact_start":null,"time_to_resolve":0,"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1768839371,"end":null}]}}},"notification_handles":null,"resolved":null,"fields":{"detection_method":{"type":"dropdown","value":"unknown"},"services":{"type":"autocomplete","value":null},"root_cause":{"type":"textbox","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"teams":{"type":"autocomplete","value":null},"summary":{"type":"textbox","value":null}},"case_id":null,"customer_impact_duration":0,"created":"2026-01-19T16:16:11+00:00","last_modified_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"time_to_detect":0,"customer_impact_end":null,"created_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"commander":null,"is_test":false,"creation_idempotency_key":null,"last_modified_by_uuid":null,"customer_impact_scope":"","detected":"2026-01-19T16:16:11+00:00","incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","severity":"UNKNOWN","declared_by":{"data":{"type":"users","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro","email":"ulysse.mavrocordatos@datadoghq.com"},"id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"time_to_internal_response":0,"customer_impacted":false,"declared_by_uuid":null,"modified":"2026-01-19T16:16:11+00:00","visibility":"organization","title":"Test-Rust-Add_commander_to_an_incident_returns_OK_response-1768839370","archived":null,"non_datadog_creator":null},"relationships":{"integrations":{"data":[]},"attachments":{"data":[]},"impacts":{"data":[]},"created_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"user_defined_fields":{"data":[]},"responders":{"data":[]},"commander_user":{"data":null},"last_modified_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"declared_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}}},"id":"750605dd-229a-59cb-a763-d79ef66bc0f1"}},{"data":{"type":"incidents","attributes":{"declared":"2026-01-06T21:45:03+00:00","public_id":329249,"created_by_uuid":null,"state":"active","time_to_repair":0,"customer_impact_start":null,"time_to_resolve":0,"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1767735903,"end":null}]}}},"notification_handles":null,"resolved":null,"fields":{"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null}},"case_id":null,"customer_impact_duration":0,"created":"2026-01-06T21:45:03+00:00","last_modified_by":{"data":{"type":"users","attributes":{"uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","handle":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","name":"CI - Account","icon":"https://secure.gravatar.com/avatar/b7c189b5b4c2c429d7c1e0bc3749330e?s=48&d=retro","email":"team-intg-tools-libs-spam@datadoghq.com"},"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"time_to_detect":0,"customer_impact_end":null,"created_by":{"data":{"type":"users","attributes":{"uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","handle":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","name":"CI - Account","icon":"https://secure.gravatar.com/avatar/b7c189b5b4c2c429d7c1e0bc3749330e?s=48&d=retro","email":"team-intg-tools-libs-spam@datadoghq.com"},"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"commander":null,"is_test":false,"creation_idempotency_key":null,"last_modified_by_uuid":null,"customer_impact_scope":"","detected":"2026-01-06T21:45:03+00:00","incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","severity":"UNKNOWN","declared_by":{"data":{"type":"users","attributes":{"uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","handle":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","name":"CI - Account","icon":"https://secure.gravatar.com/avatar/b7c189b5b4c2c429d7c1e0bc3749330e?s=48&d=retro","email":"team-intg-tools-libs-spam@datadoghq.com"},"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"time_to_internal_response":0,"customer_impacted":false,"declared_by_uuid":null,"modified":"2026-01-06T21:45:03+00:00","visibility":"organization","title":"Test-Update_incident_attachment_returns_OK_response-1767735903","archived":null,"non_datadog_creator":null},"relationships":{"integrations":{"data":[]},"attachments":{"data":[]},"impacts":{"data":[]},"created_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"user_defined_fields":{"data":[]},"responders":{"data":[]},"commander_user":{"data":null},"last_modified_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"declared_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}}},"id":"967ce6a1-b214-55ed-b496-385e8d753ba6"}},{"data":{"type":"incidents","attributes":{"declared":"2026-01-06T21:45:02+00:00","public_id":329248,"created_by_uuid":null,"state":"active","time_to_repair":0,"customer_impact_start":null,"time_to_resolve":0,"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1767735902,"end":null}]}}},"notification_handles":null,"resolved":null,"fields":{"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null}},"case_id":null,"customer_impact_duration":0,"created":"2026-01-06T21:45:02+00:00","last_modified_by":{"data":{"type":"users","attributes":{"uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","handle":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","name":"CI - Account","icon":"https://secure.gravatar.com/avatar/b7c189b5b4c2c429d7c1e0bc3749330e?s=48&d=retro","email":"team-intg-tools-libs-spam@datadoghq.com"},"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"time_to_detect":0,"customer_impact_end":null,"created_by":{"data":{"type":"users","attributes":{"uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","handle":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","name":"CI - Account","icon":"https://secure.gravatar.com/avatar/b7c189b5b4c2c429d7c1e0bc3749330e?s=48&d=retro","email":"team-intg-tools-libs-spam@datadoghq.com"},"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"commander":null,"is_test":false,"creation_idempotency_key":null,"last_modified_by_uuid":null,"customer_impact_scope":"","detected":"2026-01-06T21:45:02+00:00","incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","severity":"UNKNOWN","declared_by":{"data":{"type":"users","attributes":{"uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","handle":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","name":"CI - Account","icon":"https://secure.gravatar.com/avatar/b7c189b5b4c2c429d7c1e0bc3749330e?s=48&d=retro","email":"team-intg-tools-libs-spam@datadoghq.com"},"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"time_to_internal_response":0,"customer_impacted":false,"declared_by_uuid":null,"modified":"2026-01-06T21:45:02+00:00","visibility":"organization","title":"Test-List_incident_attachments_returns_OK_response-1767735902","archived":null,"non_datadog_creator":null},"relationships":{"integrations":{"data":[]},"attachments":{"data":[]},"impacts":{"data":[]},"created_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"user_defined_fields":{"data":[]},"responders":{"data":[]},"commander_user":{"data":null},"last_modified_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"declared_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}}},"id":"46d44c91-e5aa-5f50-bf86-d3b83213a9f7"}},{"data":{"type":"incidents","attributes":{"declared":"2026-01-06T21:45:01+00:00","public_id":329247,"created_by_uuid":null,"state":"active","time_to_repair":0,"customer_impact_start":null,"time_to_resolve":0,"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1767735901,"end":null}]}}},"notification_handles":null,"resolved":null,"fields":{"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"}},"case_id":null,"customer_impact_duration":0,"created":"2026-01-06T21:45:01+00:00","last_modified_by":{"data":{"type":"users","attributes":{"uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","handle":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","name":"CI - Account","icon":"https://secure.gravatar.com/avatar/b7c189b5b4c2c429d7c1e0bc3749330e?s=48&d=retro","email":"team-intg-tools-libs-spam@datadoghq.com"},"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"time_to_detect":0,"customer_impact_end":null,"created_by":{"data":{"type":"users","attributes":{"uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","handle":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","name":"CI - Account","icon":"https://secure.gravatar.com/avatar/b7c189b5b4c2c429d7c1e0bc3749330e?s=48&d=retro","email":"team-intg-tools-libs-spam@datadoghq.com"},"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"commander":null,"is_test":false,"creation_idempotency_key":null,"last_modified_by_uuid":null,"customer_impact_scope":"","detected":"2026-01-06T21:45:01+00:00","incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","severity":"UNKNOWN","declared_by":{"data":{"type":"users","attributes":{"uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","handle":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","name":"CI - Account","icon":"https://secure.gravatar.com/avatar/b7c189b5b4c2c429d7c1e0bc3749330e?s=48&d=retro","email":"team-intg-tools-libs-spam@datadoghq.com"},"id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"time_to_internal_response":0,"customer_impacted":false,"declared_by_uuid":null,"modified":"2026-01-06T21:45:01+00:00","visibility":"organization","title":"Test-Create_incident_attachment_returns_Created_response-1767735900","archived":null,"non_datadog_creator":null},"relationships":{"integrations":{"data":[]},"attachments":{"data":[{"type":"incident_attachments","id":"9faac680-7015-48dd-80e3-f4199e6c5406"}]},"impacts":{"data":[]},"created_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"user_defined_fields":{"data":[]},"responders":{"data":[]},"commander_user":{"data":null},"last_modified_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"declared_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}}},"id":"c4f91ead-b4b5-5850-8b06-75ba0b4b3feb"}},{"data":{"type":"incidents","attributes":{"declared":"2026-01-06T20:14:13+00:00","public_id":329218,"created_by_uuid":null,"state":"active","time_to_repair":0,"customer_impact_start":null,"time_to_resolve":0,"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1767730453,"end":null}]}}},"notification_handles":null,"resolved":null,"fields":{"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"}},"case_id":null,"customer_impact_duration":0,"created":"2026-01-06T20:14:13+00:00","last_modified_by":{"data":{"type":"users","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro","email":"frog@datadoghq.com"},"id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"time_to_detect":0,"customer_impact_end":null,"created_by":{"data":{"type":"users","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro","email":"frog@datadoghq.com"},"id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander":null,"is_test":false,"creation_idempotency_key":null,"last_modified_by_uuid":null,"customer_impact_scope":"","detected":"2026-01-06T20:14:13+00:00","incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","severity":"UNKNOWN","declared_by":{"data":{"type":"users","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro","email":"frog@datadoghq.com"},"id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"time_to_internal_response":0,"customer_impacted":false,"declared_by_uuid":null,"modified":"2026-01-06T20:14:13+00:00","visibility":"organization","title":"Test-Delete_an_incident_integration_metadata_returns_OK_response-1767730453","archived":null,"non_datadog_creator":null},"relationships":{"integrations":{"data":[]},"attachments":{"data":[]},"impacts":{"data":[]},"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[]},"responders":{"data":[]},"commander_user":{"data":null},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}}},"id":"32bf8683-e8bc-5b17-8cce-1d87efafd679"}},{"data":{"type":"incidents","attributes":{"declared":"2026-01-06T19:59:46+00:00","public_id":329178,"created_by_uuid":null,"state":"active","time_to_repair":0,"customer_impact_start":null,"time_to_resolve":0,"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1767729586,"end":null}]}}},"notification_handles":null,"resolved":null,"fields":{"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null}},"case_id":null,"customer_impact_duration":0,"created":"2026-01-06T19:59:46+00:00","last_modified_by":{"data":{"type":"users","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro","email":"frog@datadoghq.com"},"id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"time_to_detect":0,"customer_impact_end":null,"created_by":{"data":{"type":"users","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro","email":"frog@datadoghq.com"},"id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander":null,"is_test":false,"creation_idempotency_key":null,"last_modified_by_uuid":null,"customer_impact_scope":"","detected":"2026-01-06T19:59:46+00:00","incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","severity":"UNKNOWN","declared_by":{"data":{"type":"users","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro","email":"frog@datadoghq.com"},"id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"time_to_internal_response":0,"customer_impacted":false,"declared_by_uuid":null,"modified":"2026-01-06T19:59:46+00:00","visibility":"organization","title":"Test-Update_incident_attachment_returns_OK_response-1767729586","archived":null,"non_datadog_creator":null},"relationships":{"integrations":{"data":[]},"attachments":{"data":[]},"impacts":{"data":[]},"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[]},"responders":{"data":[]},"commander_user":{"data":null},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}}},"id":"89e32d75-b7cf-5a04-a485-b513ee8f125f"}},{"data":{"type":"incidents","attributes":{"declared":"2026-01-06T19:59:21+00:00","public_id":329172,"created_by_uuid":null,"state":"active","time_to_repair":0,"customer_impact_start":null,"time_to_resolve":0,"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1767729561,"end":null}]}}},"notification_handles":null,"resolved":null,"fields":{"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"}},"case_id":null,"customer_impact_duration":0,"created":"2026-01-06T19:59:21+00:00","last_modified_by":{"data":{"type":"users","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro","email":"frog@datadoghq.com"},"id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"time_to_detect":0,"customer_impact_end":null,"created_by":{"data":{"type":"users","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro","email":"frog@datadoghq.com"},"id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander":null,"is_test":false,"creation_idempotency_key":null,"last_modified_by_uuid":null,"customer_impact_scope":"","detected":"2026-01-06T19:59:21+00:00","incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","severity":"UNKNOWN","declared_by":{"data":{"type":"users","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro","email":"frog@datadoghq.com"},"id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"time_to_internal_response":0,"customer_impacted":false,"declared_by_uuid":null,"modified":"2026-01-06T19:59:21+00:00","visibility":"organization","title":"Test-List_incident_attachments_returns_OK_response-1767729561","archived":null,"non_datadog_creator":null},"relationships":{"integrations":{"data":[]},"attachments":{"data":[]},"impacts":{"data":[]},"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[]},"responders":{"data":[]},"commander_user":{"data":null},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}}},"id":"a39af64c-5d6c-570a-bb2d-e156a6291d45"}},{"data":{"type":"incidents","attributes":{"declared":"2026-01-06T19:54:05+00:00","public_id":329161,"created_by_uuid":null,"state":"active","time_to_repair":0,"customer_impact_start":null,"time_to_resolve":0,"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1767729246,"end":null}]}}},"notification_handles":null,"resolved":null,"fields":{"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"}},"case_id":null,"customer_impact_duration":0,"created":"2026-01-06T19:54:05+00:00","last_modified_by":{"data":{"type":"users","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro","email":"frog@datadoghq.com"},"id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"time_to_detect":0,"customer_impact_end":null,"created_by":{"data":{"type":"users","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro","email":"frog@datadoghq.com"},"id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander":null,"is_test":false,"creation_idempotency_key":null,"last_modified_by_uuid":null,"customer_impact_scope":"","detected":"2026-01-06T19:54:05+00:00","incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","severity":"UNKNOWN","declared_by":{"data":{"type":"users","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro","email":"frog@datadoghq.com"},"id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"time_to_internal_response":0,"customer_impacted":false,"declared_by_uuid":null,"modified":"2026-01-06T19:54:05+00:00","visibility":"organization","title":"Test-Update_incident_attachment_returns_OK_response-1767729245","archived":null,"non_datadog_creator":null},"relationships":{"integrations":{"data":[]},"attachments":{"data":[]},"impacts":{"data":[]},"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[]},"responders":{"data":[]},"commander_user":{"data":null},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}}},"id":"1170e826-6b96-54fa-b546-b2767847a052"}},{"data":{"type":"incidents","attributes":{"declared":"2026-01-06T19:53:36+00:00","public_id":329155,"created_by_uuid":null,"state":"active","time_to_repair":0,"customer_impact_start":null,"time_to_resolve":0,"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1767729217,"end":null}]}}},"notification_handles":null,"resolved":null,"fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"case_id":null,"customer_impact_duration":0,"created":"2026-01-06T19:53:36+00:00","last_modified_by":{"data":{"type":"users","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro","email":"frog@datadoghq.com"},"id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"time_to_detect":0,"customer_impact_end":null,"created_by":{"data":{"type":"users","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro","email":"frog@datadoghq.com"},"id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander":null,"is_test":false,"creation_idempotency_key":null,"last_modified_by_uuid":null,"customer_impact_scope":"","detected":"2026-01-06T19:53:36+00:00","incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","severity":"UNKNOWN","declared_by":{"data":{"type":"users","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro","email":"frog@datadoghq.com"},"id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"time_to_internal_response":0,"customer_impacted":false,"declared_by_uuid":null,"modified":"2026-01-06T19:53:36+00:00","visibility":"organization","title":"Test-List_incident_attachments_returns_OK_response-1767729216","archived":null,"non_datadog_creator":null},"relationships":{"integrations":{"data":[]},"attachments":{"data":[]},"impacts":{"data":[]},"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[]},"responders":{"data":[]},"commander_user":{"data":null},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}}},"id":"810fd4f3-078c-5ea0-a2c6-ccf74e3a91b9"}},{"data":{"type":"incidents","attributes":{"declared":"2026-01-06T19:47:48+00:00","public_id":329144,"created_by_uuid":null,"state":"active","time_to_repair":0,"customer_impact_start":null,"time_to_resolve":0,"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1767728868,"end":null}]}}},"notification_handles":null,"resolved":null,"fields":{"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"}},"case_id":null,"customer_impact_duration":0,"created":"2026-01-06T19:47:48+00:00","last_modified_by":{"data":{"type":"users","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro","email":"frog@datadoghq.com"},"id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"time_to_detect":0,"customer_impact_end":null,"created_by":{"data":{"type":"users","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro","email":"frog@datadoghq.com"},"id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander":null,"is_test":false,"creation_idempotency_key":null,"last_modified_by_uuid":null,"customer_impact_scope":"","detected":"2026-01-06T19:47:48+00:00","incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","severity":"UNKNOWN","declared_by":{"data":{"type":"users","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro","email":"frog@datadoghq.com"},"id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"time_to_internal_response":0,"customer_impacted":false,"declared_by_uuid":null,"modified":"2026-01-06T19:47:48+00:00","visibility":"organization","title":"Test-Update_incident_attachment_returns_OK_response-1767728868","archived":null,"non_datadog_creator":null},"relationships":{"integrations":{"data":[]},"attachments":{"data":[]},"impacts":{"data":[]},"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[]},"responders":{"data":[]},"commander_user":{"data":null},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}}},"id":"a5f107be-3b2d-54d1-a3f4-ad12e0ce1e37"}},{"data":{"type":"incidents","attributes":{"declared":"2026-01-06T19:47:23+00:00","public_id":329138,"created_by_uuid":null,"state":"active","time_to_repair":0,"customer_impact_start":null,"time_to_resolve":0,"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1767728843,"end":null}]}}},"notification_handles":null,"resolved":null,"fields":{"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"}},"case_id":null,"customer_impact_duration":0,"created":"2026-01-06T19:47:23+00:00","last_modified_by":{"data":{"type":"users","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro","email":"frog@datadoghq.com"},"id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"time_to_detect":0,"customer_impact_end":null,"created_by":{"data":{"type":"users","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro","email":"frog@datadoghq.com"},"id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander":null,"is_test":false,"creation_idempotency_key":null,"last_modified_by_uuid":null,"customer_impact_scope":"","detected":"2026-01-06T19:47:23+00:00","incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","severity":"UNKNOWN","declared_by":{"data":{"type":"users","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro","email":"frog@datadoghq.com"},"id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"time_to_internal_response":0,"customer_impacted":false,"declared_by_uuid":null,"modified":"2026-01-06T19:47:23+00:00","visibility":"organization","title":"Test-List_incident_attachments_returns_OK_response-1767728843","archived":null,"non_datadog_creator":null},"relationships":{"integrations":{"data":[]},"attachments":{"data":[]},"impacts":{"data":[]},"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[]},"responders":{"data":[]},"commander_user":{"data":null},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}}},"id":"225392e7-83e7-547a-8408-3f72911a6e53"}},{"data":{"type":"incidents","attributes":{"declared":"2026-01-06T19:47:04+00:00","public_id":329131,"created_by_uuid":null,"state":"active","time_to_repair":0,"customer_impact_start":null,"time_to_resolve":0,"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1767728825,"end":null}]}}},"notification_handles":null,"resolved":null,"fields":{"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"}},"case_id":null,"customer_impact_duration":0,"created":"2026-01-06T19:47:04+00:00","last_modified_by":{"data":{"type":"users","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro","email":"frog@datadoghq.com"},"id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"time_to_detect":0,"customer_impact_end":null,"created_by":{"data":{"type":"users","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro","email":"frog@datadoghq.com"},"id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander":null,"is_test":false,"creation_idempotency_key":null,"last_modified_by_uuid":null,"customer_impact_scope":"","detected":"2026-01-06T19:47:04+00:00","incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","severity":"UNKNOWN","declared_by":{"data":{"type":"users","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro","email":"frog@datadoghq.com"},"id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"time_to_internal_response":0,"customer_impacted":false,"declared_by_uuid":null,"modified":"2026-01-06T19:47:04+00:00","visibility":"organization","title":"Test-Create_incident_attachment_returns_Created_response-1767728824","archived":null,"non_datadog_creator":null},"relationships":{"integrations":{"data":[]},"attachments":{"data":[{"type":"incident_attachments","id":"962be1a1-4afb-438f-b1d3-659332719baa"}]},"impacts":{"data":[]},"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[]},"responders":{"data":[{"type":"incident_responders","id":"10503e52-9299-475c-b7a9-64655fd7442c"}]},"commander_user":{"data":null},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}}},"id":"4d720ebe-070c-5ba9-af9e-6a363d0f74c5"}}]},"relationships":{"incidents_relationship":{"data":[{"type":"incidents","id":"5bd8a20b-07ff-50f6-8b10-bf64d693314d"},{"type":"incidents","id":"5eef21f5-bd00-52d3-91e9-a360e494d1a6"},{"type":"incidents","id":"3bc12547-d39c-5557-8ae7-82086906a08b"},{"type":"incidents","id":"0f184c21-1052-5f09-bcc5-3dee53a0209c"},{"type":"incidents","id":"c8c4d543-93cc-551a-afb2-44705a8fc604"},{"type":"incidents","id":"4fb5475a-be05-5b5a-b91b-f337e9c7067b"},{"type":"incidents","id":"62619087-45d7-5c15-a632-436d0a2ac1a8"},{"type":"incidents","id":"df5e6083-6853-5101-82ee-84c0bca6f303"},{"type":"incidents","id":"594c1482-f64a-5dee-99a6-dd6410af98d9"},{"type":"incidents","id":"c9d7fd41-f4f2-56ee-9420-c9650f38f447"},{"type":"incidents","id":"65bebd2c-9e29-5830-82b8-b1906cb209f5"},{"type":"incidents","id":"5e8115e1-4f18-54c4-b2fc-90e1a085383a"},{"type":"incidents","id":"ff189604-f467-5e26-aa43-4893c5b50a16"},{"type":"incidents","id":"750605dd-229a-59cb-a763-d79ef66bc0f1"},{"type":"incidents","id":"967ce6a1-b214-55ed-b496-385e8d753ba6"},{"type":"incidents","id":"46d44c91-e5aa-5f50-bf86-d3b83213a9f7"},{"type":"incidents","id":"c4f91ead-b4b5-5850-8b06-75ba0b4b3feb"},{"type":"incidents","id":"32bf8683-e8bc-5b17-8cce-1d87efafd679"},{"type":"incidents","id":"89e32d75-b7cf-5a04-a485-b513ee8f125f"},{"type":"incidents","id":"a39af64c-5d6c-570a-bb2d-e156a6291d45"},{"type":"incidents","id":"1170e826-6b96-54fa-b546-b2767847a052"},{"type":"incidents","id":"810fd4f3-078c-5ea0-a2c6-ccf74e3a91b9"},{"type":"incidents","id":"a5f107be-3b2d-54d1-a3f4-ad12e0ce1e37"},{"type":"incidents","id":"225392e7-83e7-547a-8408-3f72911a6e53"},{"type":"incidents","id":"4d720ebe-070c-5ba9-af9e-6a363d0f74c5"}]}}},"included":[{"type":"incidents","id":"5bd8a20b-07ff-50f6-8b10-bf64d693314d","attributes":{"public_id":331283,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Rust-Update_an_incident_todo_returns_OK_response-1768839426","resolved":null,"customer_impact_scope":"","customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-19T16:17:07+00:00","modified":"2026-01-19T16:17:07+00:00","commander":null,"detected":"2026-01-19T16:17:07+00:00","created_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-19T16:17:07+00:00","declared_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"summary":{"type":"textbox","value":null},"detection_method":{"type":"dropdown","value":"unknown"},"services":{"type":"autocomplete","value":null},"root_cause":{"type":"textbox","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"teams":{"type":"autocomplete","value":null}},"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1768839427,"end":null}]}}},"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"last_modified_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"user_defined_fields":{"data":[]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"5eef21f5-bd00-52d3-91e9-a360e494d1a6","attributes":{"public_id":331282,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Rust-Update_an_existing_incident_returns_OK_response-1768839425","resolved":null,"customer_impact_scope":"","customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-19T16:17:05+00:00","modified":"2026-01-19T16:17:05+00:00","commander":null,"detected":"2026-01-19T16:17:05+00:00","created_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-19T16:17:05+00:00","declared_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"teams":{"type":"autocomplete","value":null},"summary":{"type":"textbox","value":null},"detection_method":{"type":"dropdown","value":"unknown"},"services":{"type":"autocomplete","value":null},"root_cause":{"type":"textbox","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"}},"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1768839426,"end":null}]}}},"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"last_modified_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"user_defined_fields":{"data":[]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"3bc12547-d39c-5557-8ae7-82086906a08b","attributes":{"public_id":331281,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Rust-Update_an_existing_incident_integration_metadata_returns_OK_response-1768839424","resolved":null,"customer_impact_scope":"","customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-19T16:17:04+00:00","modified":"2026-01-19T16:17:04+00:00","commander":null,"detected":"2026-01-19T16:17:04+00:00","created_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-19T16:17:04+00:00","declared_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"teams":{"type":"autocomplete","value":null},"summary":{"type":"textbox","value":null},"detection_method":{"type":"dropdown","value":"unknown"},"services":{"type":"autocomplete","value":null},"root_cause":{"type":"textbox","value":null}},"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1768839424,"end":null}]}}},"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"last_modified_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"user_defined_fields":{"data":[]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"0f184c21-1052-5f09-bcc5-3dee53a0209c","attributes":{"public_id":331280,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Rust-Search_for_incidents_returns_OK_response-1768839401","resolved":null,"customer_impact_scope":"","customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-19T16:16:41+00:00","modified":"2026-01-19T16:16:41+00:00","commander":null,"detected":"2026-01-19T16:16:41+00:00","created_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-19T16:16:41+00:00","declared_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"services":{"type":"autocomplete","value":null},"root_cause":{"type":"textbox","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"teams":{"type":"autocomplete","value":null},"summary":{"type":"textbox","value":null},"detection_method":{"type":"dropdown","value":"unknown"}},"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1768839401,"end":null}]}}},"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"last_modified_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"user_defined_fields":{"data":[]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"c8c4d543-93cc-551a-afb2-44705a8fc604","attributes":{"public_id":331279,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Rust-Remove_commander_from_an_incident_returns_OK_response-1768839399","resolved":null,"customer_impact_scope":"","customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-19T16:16:39+00:00","modified":"2026-01-19T16:16:39+00:00","commander":null,"detected":"2026-01-19T16:16:39+00:00","created_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-19T16:16:39+00:00","declared_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"teams":{"type":"autocomplete","value":null},"summary":{"type":"textbox","value":null},"detection_method":{"type":"dropdown","value":"unknown"},"services":{"type":"autocomplete","value":null},"root_cause":{"type":"textbox","value":null}},"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1768839400,"end":null}]}}},"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"last_modified_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"user_defined_fields":{"data":[]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"4fb5475a-be05-5b5a-b91b-f337e9c7067b","attributes":{"public_id":331278,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Rust-Get_the_details_of_an_incident_returns_OK_response-1768839396","resolved":null,"customer_impact_scope":"","customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-19T16:16:37+00:00","modified":"2026-01-19T16:16:37+00:00","commander":null,"detected":"2026-01-19T16:16:37+00:00","created_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-19T16:16:37+00:00","declared_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"summary":{"type":"textbox","value":null},"detection_method":{"type":"dropdown","value":"unknown"},"services":{"type":"autocomplete","value":null},"root_cause":{"type":"textbox","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"teams":{"type":"autocomplete","value":null}},"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1768839397,"end":null}]}}},"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"last_modified_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"user_defined_fields":{"data":[]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"62619087-45d7-5c15-a632-436d0a2ac1a8","attributes":{"public_id":331277,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Rust-Get_incident_integration_metadata_details_returns_OK_response-1768839392","resolved":null,"customer_impact_scope":"","customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-19T16:16:33+00:00","modified":"2026-01-19T16:16:33+00:00","commander":null,"detected":"2026-01-19T16:16:33+00:00","created_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-19T16:16:33+00:00","declared_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"services":{"type":"autocomplete","value":null},"root_cause":{"type":"textbox","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"teams":{"type":"autocomplete","value":null},"summary":{"type":"textbox","value":null},"detection_method":{"type":"dropdown","value":"unknown"}},"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1768839393,"end":null}]}}},"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"last_modified_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"user_defined_fields":{"data":[]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"df5e6083-6853-5101-82ee-84c0bca6f303","attributes":{"public_id":331276,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Rust-Get_a_list_of_incidents_returns_OK_response-1768839390","resolved":null,"customer_impact_scope":"","customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-19T16:16:31+00:00","modified":"2026-01-19T16:16:31+00:00","commander":null,"detected":"2026-01-19T16:16:31+00:00","created_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-19T16:16:31+00:00","declared_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"detection_method":{"type":"dropdown","value":"unknown"},"services":{"type":"autocomplete","value":null},"root_cause":{"type":"textbox","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"teams":{"type":"autocomplete","value":null},"summary":{"type":"textbox","value":null}},"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1768839391,"end":null}]}}},"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"last_modified_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"user_defined_fields":{"data":[]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"594c1482-f64a-5dee-99a6-dd6410af98d9","attributes":{"public_id":331275,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Rust-Get_a_list_of_an_incident_s_integration_metadata_returns_OK_response-1768839389","resolved":null,"customer_impact_scope":"","customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-19T16:16:29+00:00","modified":"2026-01-19T16:16:29+00:00","commander":null,"detected":"2026-01-19T16:16:29+00:00","created_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-19T16:16:29+00:00","declared_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"root_cause":{"type":"textbox","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"teams":{"type":"autocomplete","value":null},"summary":{"type":"textbox","value":null},"detection_method":{"type":"dropdown","value":"unknown"},"services":{"type":"autocomplete","value":null}},"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1768839389,"end":null}]}}},"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"last_modified_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"user_defined_fields":{"data":[]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"c9d7fd41-f4f2-56ee-9420-c9650f38f447","attributes":{"public_id":331274,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Rust-Delete_an_incident_integration_metadata_returns_OK_response-1768839381","resolved":null,"customer_impact_scope":"","customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-19T16:16:21+00:00","modified":"2026-01-19T16:16:21+00:00","commander":null,"detected":"2026-01-19T16:16:21+00:00","created_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-19T16:16:21+00:00","declared_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"state":{"type":"dropdown","value":"active"},"teams":{"type":"autocomplete","value":null},"summary":{"type":"textbox","value":null},"detection_method":{"type":"dropdown","value":"unknown"},"services":{"type":"autocomplete","value":null},"root_cause":{"type":"textbox","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"}},"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1768839381,"end":null}]}}},"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"last_modified_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"user_defined_fields":{"data":[]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"65bebd2c-9e29-5830-82b8-b1906cb209f5","attributes":{"public_id":331273,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Rust-Delete_an_existing_incident_returns_OK_response-1768839379","resolved":null,"customer_impact_scope":"","customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-19T16:16:20+00:00","modified":"2026-01-19T16:16:20+00:00","commander":null,"detected":"2026-01-19T16:16:20+00:00","created_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-19T16:16:20+00:00","declared_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"root_cause":{"type":"textbox","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"teams":{"type":"autocomplete","value":null},"summary":{"type":"textbox","value":null},"detection_method":{"type":"dropdown","value":"unknown"},"services":{"type":"autocomplete","value":null}},"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1768839380,"end":null}]}}},"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"last_modified_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"user_defined_fields":{"data":[]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"5e8115e1-4f18-54c4-b2fc-90e1a085383a","attributes":{"public_id":331272,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Rust-Create_an_incident_returns_CREATED_response-1768839374","resolved":null,"customer_impact_scope":"","customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-19T16:16:14+00:00","modified":"2026-01-19T16:16:14+00:00","commander":{"data":{"type":"users","id":"c9adce01-532f-42b5-8c8e-85cf25373b05","attributes":{"uuid":"c9adce01-532f-42b5-8c8e-85cf25373b05","handle":"test-rust-create_an_incident_returns_created_response-1768839374@datadoghq.com","email":"test-rust-create_an_incident_returns_created_response-1768839374@datadoghq.com","name":"","icon":"https://secure.gravatar.com/avatar/5d7d1b2315febaf16763bdfc593b672a?s=48&d=retro"}}},"detected":"2026-01-19T16:16:14+00:00","created_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-19T16:16:14+00:00","declared_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"summary":{"type":"textbox","value":null},"detection_method":{"type":"dropdown","value":"unknown"},"services":{"type":"autocomplete","value":null},"root_cause":{"type":"textbox","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"resolved"},"teams":{"type":"autocomplete","value":null}},"field_analytics":{"state":{"resolved":{"duration":0,"spans":[{"start":1768839374,"end":null}]}}},"severity":"UNKNOWN","state":"resolved","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"last_modified_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"commander_user":{"data":{"type":"users","id":"c9adce01-532f-42b5-8c8e-85cf25373b05"}},"declared_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"user_defined_fields":{"data":[]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[{"type":"incident_responders","id":"6b998089-d6bd-5b57-9164-360701006a30"}]},"impacts":{"data":[]}}},{"type":"incidents","id":"ff189604-f467-5e26-aa43-4893c5b50a16","attributes":{"public_id":331271,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Rust-Create_an_incident_integration_metadata_returns_CREATED_response-1768839372","resolved":null,"customer_impact_scope":"","customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-19T16:16:13+00:00","modified":"2026-01-19T16:16:13+00:00","commander":null,"detected":"2026-01-19T16:16:13+00:00","created_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-19T16:16:13+00:00","declared_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"state":{"type":"dropdown","value":"active"},"teams":{"type":"autocomplete","value":null},"summary":{"type":"textbox","value":null},"detection_method":{"type":"dropdown","value":"unknown"},"services":{"type":"autocomplete","value":null},"root_cause":{"type":"textbox","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"}},"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1768839373,"end":null}]}}},"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"last_modified_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"user_defined_fields":{"data":[]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"750605dd-229a-59cb-a763-d79ef66bc0f1","attributes":{"public_id":331270,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Rust-Add_commander_to_an_incident_returns_OK_response-1768839370","resolved":null,"customer_impact_scope":"","customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-19T16:16:11+00:00","modified":"2026-01-19T16:16:11+00:00","commander":null,"detected":"2026-01-19T16:16:11+00:00","created_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-19T16:16:11+00:00","declared_by":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f","attributes":{"uuid":"05916666-f5bf-11ef-a5f6-da219d506e7f","handle":"ulysse.mavrocordatos@datadoghq.com","email":"ulysse.mavrocordatos@datadoghq.com","name":"Ulysse - Mavrocordatos","icon":"https://secure.gravatar.com/avatar/5d84cb3d12b3cffd187153ec5e8f5df4?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"detection_method":{"type":"dropdown","value":"unknown"},"services":{"type":"autocomplete","value":null},"root_cause":{"type":"textbox","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"teams":{"type":"autocomplete","value":null},"summary":{"type":"textbox","value":null}},"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1768839371,"end":null}]}}},"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"last_modified_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"05916666-f5bf-11ef-a5f6-da219d506e7f"}},"user_defined_fields":{"data":[]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"967ce6a1-b214-55ed-b496-385e8d753ba6","attributes":{"public_id":329249,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Update_incident_attachment_returns_OK_response-1767735903","resolved":null,"customer_impact_scope":"","customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","attributes":{"uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","handle":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","email":"team-intg-tools-libs-spam@datadoghq.com","name":"CI - Account","icon":"https://secure.gravatar.com/avatar/b7c189b5b4c2c429d7c1e0bc3749330e?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-06T21:45:03+00:00","modified":"2026-01-06T21:45:03+00:00","commander":null,"detected":"2026-01-06T21:45:03+00:00","created_by":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","attributes":{"uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","handle":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","email":"team-intg-tools-libs-spam@datadoghq.com","name":"CI - Account","icon":"https://secure.gravatar.com/avatar/b7c189b5b4c2c429d7c1e0bc3749330e?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-06T21:45:03+00:00","declared_by":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","attributes":{"uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","handle":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","email":"team-intg-tools-libs-spam@datadoghq.com","name":"CI - Account","icon":"https://secure.gravatar.com/avatar/b7c189b5b4c2c429d7c1e0bc3749330e?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null}},"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1767735903,"end":null}]}}},"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"last_modified_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"user_defined_fields":{"data":[]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"46d44c91-e5aa-5f50-bf86-d3b83213a9f7","attributes":{"public_id":329248,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-List_incident_attachments_returns_OK_response-1767735902","resolved":null,"customer_impact_scope":"","customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","attributes":{"uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","handle":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","email":"team-intg-tools-libs-spam@datadoghq.com","name":"CI - Account","icon":"https://secure.gravatar.com/avatar/b7c189b5b4c2c429d7c1e0bc3749330e?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-06T21:45:02+00:00","modified":"2026-01-06T21:45:02+00:00","commander":null,"detected":"2026-01-06T21:45:02+00:00","created_by":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","attributes":{"uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","handle":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","email":"team-intg-tools-libs-spam@datadoghq.com","name":"CI - Account","icon":"https://secure.gravatar.com/avatar/b7c189b5b4c2c429d7c1e0bc3749330e?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-06T21:45:02+00:00","declared_by":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","attributes":{"uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","handle":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","email":"team-intg-tools-libs-spam@datadoghq.com","name":"CI - Account","icon":"https://secure.gravatar.com/avatar/b7c189b5b4c2c429d7c1e0bc3749330e?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null}},"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1767735902,"end":null}]}}},"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"last_modified_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"user_defined_fields":{"data":[]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"c4f91ead-b4b5-5850-8b06-75ba0b4b3feb","attributes":{"public_id":329247,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Create_incident_attachment_returns_Created_response-1767735900","resolved":null,"customer_impact_scope":"","customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","attributes":{"uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","handle":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","email":"team-intg-tools-libs-spam@datadoghq.com","name":"CI - Account","icon":"https://secure.gravatar.com/avatar/b7c189b5b4c2c429d7c1e0bc3749330e?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-06T21:45:01+00:00","modified":"2026-01-06T21:45:01+00:00","commander":null,"detected":"2026-01-06T21:45:01+00:00","created_by":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","attributes":{"uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","handle":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","email":"team-intg-tools-libs-spam@datadoghq.com","name":"CI - Account","icon":"https://secure.gravatar.com/avatar/b7c189b5b4c2c429d7c1e0bc3749330e?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-06T21:45:01+00:00","declared_by":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","attributes":{"uuid":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","handle":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","email":"team-intg-tools-libs-spam@datadoghq.com","name":"CI - Account","icon":"https://secure.gravatar.com/avatar/b7c189b5b4c2c429d7c1e0bc3749330e?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"}},"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1767735901,"end":null}]}}},"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"last_modified_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"9919ec9b-ebc7-49ee-8dc8-03626e717cca"}},"user_defined_fields":{"data":[]},"integrations":{"data":[]},"attachments":{"data":[{"type":"incident_attachments","id":"9faac680-7015-48dd-80e3-f4199e6c5406"}]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"32bf8683-e8bc-5b17-8cce-1d87efafd679","attributes":{"public_id":329218,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Delete_an_incident_integration_metadata_returns_OK_response-1767730453","resolved":null,"customer_impact_scope":"","customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-06T20:14:13+00:00","modified":"2026-01-06T20:14:13+00:00","commander":null,"detected":"2026-01-06T20:14:13+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-06T20:14:13+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"}},"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1767730453,"end":null}]}}},"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"89e32d75-b7cf-5a04-a485-b513ee8f125f","attributes":{"public_id":329178,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Update_incident_attachment_returns_OK_response-1767729586","resolved":null,"customer_impact_scope":"","customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-06T19:59:46+00:00","modified":"2026-01-06T19:59:46+00:00","commander":null,"detected":"2026-01-06T19:59:46+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-06T19:59:46+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null}},"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1767729586,"end":null}]}}},"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"a39af64c-5d6c-570a-bb2d-e156a6291d45","attributes":{"public_id":329172,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-List_incident_attachments_returns_OK_response-1767729561","resolved":null,"customer_impact_scope":"","customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-06T19:59:21+00:00","modified":"2026-01-06T19:59:21+00:00","commander":null,"detected":"2026-01-06T19:59:21+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-06T19:59:21+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"}},"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1767729561,"end":null}]}}},"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"1170e826-6b96-54fa-b546-b2767847a052","attributes":{"public_id":329161,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Update_incident_attachment_returns_OK_response-1767729245","resolved":null,"customer_impact_scope":"","customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-06T19:54:05+00:00","modified":"2026-01-06T19:54:05+00:00","commander":null,"detected":"2026-01-06T19:54:05+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-06T19:54:05+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"}},"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1767729246,"end":null}]}}},"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"810fd4f3-078c-5ea0-a2c6-ccf74e3a91b9","attributes":{"public_id":329155,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-List_incident_attachments_returns_OK_response-1767729216","resolved":null,"customer_impact_scope":"","customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-06T19:53:36+00:00","modified":"2026-01-06T19:53:36+00:00","commander":null,"detected":"2026-01-06T19:53:36+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-06T19:53:36+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1767729217,"end":null}]}}},"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"a5f107be-3b2d-54d1-a3f4-ad12e0ce1e37","attributes":{"public_id":329144,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Update_incident_attachment_returns_OK_response-1767728868","resolved":null,"customer_impact_scope":"","customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-06T19:47:48+00:00","modified":"2026-01-06T19:47:48+00:00","commander":null,"detected":"2026-01-06T19:47:48+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-06T19:47:48+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"}},"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1767728868,"end":null}]}}},"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"225392e7-83e7-547a-8408-3f72911a6e53","attributes":{"public_id":329138,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-List_incident_attachments_returns_OK_response-1767728843","resolved":null,"customer_impact_scope":"","customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-06T19:47:23+00:00","modified":"2026-01-06T19:47:23+00:00","commander":null,"detected":"2026-01-06T19:47:23+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-06T19:47:23+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"}},"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1767728843,"end":null}]}}},"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"4d720ebe-070c-5ba9-af9e-6a363d0f74c5","attributes":{"public_id":329131,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Create_incident_attachment_returns_Created_response-1767728824","resolved":null,"customer_impact_scope":"","customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-06T19:47:04+00:00","modified":"2026-01-06T19:47:04+00:00","commander":null,"detected":"2026-01-06T19:47:04+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-06T19:47:04+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"}},"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1767728825,"end":null}]}}},"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[]},"integrations":{"data":[]},"attachments":{"data":[{"type":"incident_attachments","id":"962be1a1-4afb-438f-b1d3-659332719baa"}]},"responders":{"data":[{"type":"incident_responders","id":"10503e52-9299-475c-b7a9-64655fd7442c"}]},"impacts":{"data":[]}}}],"meta":{"pagination":{"offset":0,"next_offset":25,"size":25}}} + string: '{"data":{"type":"incidents_search_results","attributes":{"total":5,"facets":{"severity":[{"name":"SEV-5","count":4},{"name":"UNKNOWN","count":1},{"name":"SEV-1","count":0},{"name":"SEV-2","count":0},{"name":"SEV-3","count":0},{"name":"SEV-4","count":0}],"time_to_repair":[{"name":"time_to_repair","aggregates":{"min":null,"max":null}}],"visibility":[{"name":"organization","count":5}],"responder":[{"name":"example-create_an_incident_returns_created_response_1771235254@datadoghq.com","count":1,"handle":"example-create_an_incident_returns_created_response_1771235254@datadoghq.com","uuid":"677cf521-c579-4b83-988f-bf8eb6fb2d6c","email":"example-create_an_incident_returns_created_response_1771235254@datadoghq.com"}],"impact":[{"name":"none","count":5}],"time_to_detect":[{"name":"time_to_detect","aggregates":{"min":null,"max":null}}],"postmortem":[{"name":"No","count":5},{"name":"Yes","count":0}],"time_to_resolve":[{"name":"time_to_resolve","aggregates":{"min":null,"max":null}}],"is_test":[{"name":0,"count":5},{"name":true,"count":0}],"state":[{"name":"active","count":4},{"name":"resolved","count":1},{"name":"stable","count":0}],"customer_impacted":[{"name":0,"count":5},{"name":true,"count":0}],"fields":[{"name":"detection_method","facets":[{"name":"unknown","count":5},{"name":"customer","count":0},{"name":"employee","count":0},{"name":"monitor","count":0},{"name":"other","count":0}]},{"name":"root_cause","facets":[]},{"name":"services","facets":[]},{"name":"slug","facets":[{"name":"IR-336084","count":1},{"name":"IR-336102","count":1},{"name":"IR-336131","count":1},{"name":"IR-336149","count":1},{"name":"IR-336599","count":1}]},{"name":"summary","facets":[]},{"name":"teams","facets":[]}],"created_by":[{"name":"frog","count":5,"handle":"frog@datadoghq.com","uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","email":"frog@datadoghq.com"}],"declared_by":[{"name":"frog","count":5,"handle":"frog@datadoghq.com","uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","email":"frog@datadoghq.com"}],"last_modified_by":[{"name":"frog","count":5,"handle":"frog@datadoghq.com","uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","email":"frog@datadoghq.com"}],"commander":[{"name":"example-create_an_incident_returns_created_response_1771235254@datadoghq.com","count":1,"handle":"example-create_an_incident_returns_created_response_1771235254@datadoghq.com","uuid":"677cf521-c579-4b83-988f-bf8eb6fb2d6c","email":"example-create_an_incident_returns_created_response_1771235254@datadoghq.com"}],"incident_type":[{"name":"Security + Incident","count":1,"id":"227f4739-de77-47ac-ac1b-5b0fd5497b54"},{"name":"[DO + NOT EDIT] f044c1c56d438506","count":1,"id":"41d2e10b-4108-4736-92d7-791d00ea0702"},{"name":"Security + Incident","count":1,"id":"b19568c3-f758-47f3-8359-b7d3136ee4ce"},{"name":"Security + Incident","count":1,"id":"d5d8a5e6-0e41-4acb-bc80-e5476ba4711d"},{"name":"Security + Incident","count":1,"id":"e571c40e-671e-468e-b2d2-49abcddb2730"}]},"incidents":[{"data":{"type":"incidents","attributes":{"modified":"2026-02-16T09:47:35+00:00","customer_impact_duration":0,"created_by_uuid":null,"declared_by":{"data":{"type":"users","attributes":{"name":"frog","email":"frog@datadoghq.com","handle":"frog@datadoghq.com","uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"},"id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"resolved":null,"severity":"UNKNOWN","incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","fields":{"root_cause":{"type":"textbox","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"resolved"},"summary":{"type":"textbox","value":null},"teams":{"type":"autocomplete","value":null},"slug":{"type":"textbox","value":"IR-336599"},"detection_method":{"type":"dropdown","value":"unknown"},"services":{"type":"autocomplete","value":null}},"time_to_resolve":0,"non_datadog_creator":null,"detected":"2026-02-16T09:47:35+00:00","title":"Example-Create_an_incident_returns_CREATED_response_1771235254","notification_handles":null,"visibility":"organization","creation_idempotency_key":null,"customer_impacted":false,"last_modified_by_uuid":null,"customer_impact_end":null,"time_to_detect":0,"declared_by_uuid":null,"public_id":336599,"last_modified_by":{"data":{"type":"users","attributes":{"name":"frog","email":"frog@datadoghq.com","handle":"frog@datadoghq.com","uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"},"id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander":{"data":{"type":"users","attributes":{"name":"","email":"example-create_an_incident_returns_created_response_1771235254@datadoghq.com","handle":"example-create_an_incident_returns_created_response_1771235254@datadoghq.com","uuid":"677cf521-c579-4b83-988f-bf8eb6fb2d6c","icon":"https://secure.gravatar.com/avatar/8d477f5bcc69ccd49bf802bca9cbac14?s=48&d=retro"},"id":"677cf521-c579-4b83-988f-bf8eb6fb2d6c"}},"customer_impact_scope":"","customer_impact_start":null,"archived":null,"state":"resolved","case_id":null,"time_to_repair":0,"is_test":false,"field_analytics":{"state":{"resolved":{"duration":0,"spans":[{"start":1771235256,"end":null}]}}},"time_to_internal_response":0,"created":"2026-02-16T09:47:35+00:00","created_by":{"data":{"type":"users","attributes":{"name":"frog","email":"frog@datadoghq.com","handle":"frog@datadoghq.com","uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"},"id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"declared":"2026-02-16T09:47:35+00:00"},"relationships":{"impacts":{"data":[]},"commander_user":{"data":{"type":"users","id":"677cf521-c579-4b83-988f-bf8eb6fb2d6c"}},"user_defined_fields":{"data":[]},"responders":{"data":[{"type":"incident_responders","id":"f393bc25-a7d0-54f4-9114-98e6385143aa"}]},"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"attachments":{"data":[]},"integrations":{"data":[]},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}}},"id":"77afaefe-9585-5eba-9e1e-195149b3dc66"}},{"data":{"type":"incidents","attributes":{"modified":"2026-02-13T22:08:22+00:00","customer_impact_duration":0,"created_by_uuid":null,"declared_by":{"data":{"type":"users","attributes":{"name":"frog","email":"frog@datadoghq.com","handle":"frog@datadoghq.com","uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"},"id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"resolved":null,"severity":"SEV-5","incident_type_uuid":"d5d8a5e6-0e41-4acb-bc80-e5476ba4711d","fields":{"summary":{"type":"textbox","value":null},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"slug":{"type":"textbox","value":"IR-336149"},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null},"state":{"type":"dropdown","value":"active"},"severity":{"type":"dropdown","value":"SEV-5"}},"time_to_resolve":0,"non_datadog_creator":null,"detected":"2025-01-01T00:00:00+00:00","title":"Test-Import_an_incident_returns_CREATED_response-1771020502","notification_handles":null,"visibility":"organization","creation_idempotency_key":null,"customer_impacted":false,"last_modified_by_uuid":null,"customer_impact_end":null,"time_to_detect":0,"declared_by_uuid":null,"public_id":336149,"last_modified_by":{"data":{"type":"users","attributes":{"name":"frog","email":"frog@datadoghq.com","handle":"frog@datadoghq.com","uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"},"id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander":null,"customer_impact_scope":"","customer_impact_start":null,"archived":null,"state":"active","case_id":null,"time_to_repair":0,"is_test":false,"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1735689600,"end":null},{"start":1735689600,"end":null}]}}},"time_to_internal_response":0,"created":"2026-02-13T22:08:22+00:00","created_by":{"data":{"type":"users","attributes":{"name":"frog","email":"frog@datadoghq.com","handle":"frog@datadoghq.com","uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"},"id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"declared":"2025-01-01T00:00:00+00:00"},"relationships":{"impacts":{"data":[]},"commander_user":{"data":null},"user_defined_fields":{"data":[]},"responders":{"data":[]},"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"attachments":{"data":[]},"integrations":{"data":[]},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}}},"id":"405ffa23-71f5-4f91-942a-9bf8a0bfa581"}},{"data":{"type":"incidents","attributes":{"modified":"2026-02-13T22:00:49+00:00","customer_impact_duration":0,"created_by_uuid":null,"declared_by":{"data":{"type":"users","attributes":{"name":"frog","email":"frog@datadoghq.com","handle":"frog@datadoghq.com","uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"},"id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"resolved":null,"severity":"SEV-5","incident_type_uuid":"e571c40e-671e-468e-b2d2-49abcddb2730","fields":{"root_cause":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null},"slug":{"type":"textbox","value":"IR-336131"},"state":{"type":"dropdown","value":"active"},"severity":{"type":"dropdown","value":"SEV-5"},"detection_method":{"type":"dropdown","value":"unknown"},"summary":{"type":"textbox","value":null}},"time_to_resolve":0,"non_datadog_creator":null,"detected":"2025-01-01T00:00:00+00:00","title":"Test-Import_an_incident_returns_CREATED_response-1771020049","notification_handles":null,"visibility":"organization","creation_idempotency_key":null,"customer_impacted":false,"last_modified_by_uuid":null,"customer_impact_end":null,"time_to_detect":0,"declared_by_uuid":null,"public_id":336131,"last_modified_by":{"data":{"type":"users","attributes":{"name":"frog","email":"frog@datadoghq.com","handle":"frog@datadoghq.com","uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"},"id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander":null,"customer_impact_scope":"","customer_impact_start":null,"archived":null,"state":"active","case_id":null,"time_to_repair":0,"is_test":false,"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1735689600,"end":null},{"start":1735689600,"end":null}]}}},"time_to_internal_response":0,"created":"2026-02-13T22:00:49+00:00","created_by":{"data":{"type":"users","attributes":{"name":"frog","email":"frog@datadoghq.com","handle":"frog@datadoghq.com","uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"},"id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"declared":"2025-01-01T00:00:00+00:00"},"relationships":{"impacts":{"data":[]},"commander_user":{"data":null},"user_defined_fields":{"data":[]},"responders":{"data":[]},"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"attachments":{"data":[]},"integrations":{"data":[]},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}}},"id":"fb49e1f3-89af-496f-9587-107ea13b9adc"}},{"data":{"type":"incidents","attributes":{"modified":"2026-02-13T20:39:48+00:00","customer_impact_duration":0,"created_by_uuid":null,"declared_by":{"data":{"type":"users","attributes":{"name":"frog","email":"frog@datadoghq.com","handle":"frog@datadoghq.com","uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"},"id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"resolved":null,"severity":"SEV-5","incident_type_uuid":"b19568c3-f758-47f3-8359-b7d3136ee4ce","fields":{"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null},"slug":{"type":"textbox","value":"IR-336102"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"severity":{"type":"dropdown","value":"SEV-5"}},"time_to_resolve":0,"non_datadog_creator":null,"detected":"2025-01-01T00:00:00+00:00","title":"Test-Import_an_incident_returns_CREATED_response-1771015188","notification_handles":null,"visibility":"organization","creation_idempotency_key":null,"customer_impacted":false,"last_modified_by_uuid":null,"customer_impact_end":null,"time_to_detect":0,"declared_by_uuid":null,"public_id":336102,"last_modified_by":{"data":{"type":"users","attributes":{"name":"frog","email":"frog@datadoghq.com","handle":"frog@datadoghq.com","uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"},"id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander":null,"customer_impact_scope":"","customer_impact_start":null,"archived":null,"state":"active","case_id":null,"time_to_repair":0,"is_test":false,"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1735689600,"end":null},{"start":1735689600,"end":null}]}}},"time_to_internal_response":0,"created":"2026-02-13T20:39:48+00:00","created_by":{"data":{"type":"users","attributes":{"name":"frog","email":"frog@datadoghq.com","handle":"frog@datadoghq.com","uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"},"id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"declared":"2025-01-01T00:00:00+00:00"},"relationships":{"impacts":{"data":[]},"commander_user":{"data":null},"user_defined_fields":{"data":[]},"responders":{"data":[]},"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"attachments":{"data":[]},"integrations":{"data":[]},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}}},"id":"cdb0f1f2-33ce-4465-85ea-fc8aa3f85d21"}},{"data":{"type":"incidents","attributes":{"modified":"2026-02-13T20:38:19+00:00","customer_impact_duration":0,"created_by_uuid":null,"declared_by":{"data":{"type":"users","attributes":{"name":"frog","email":"frog@datadoghq.com","handle":"frog@datadoghq.com","uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"},"id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"resolved":null,"severity":"SEV-5","incident_type_uuid":"227f4739-de77-47ac-ac1b-5b0fd5497b54","fields":{"summary":{"type":"textbox","value":null},"teams":{"type":"autocomplete","value":null},"slug":{"type":"textbox","value":"IR-336084"},"severity":{"type":"dropdown","value":"SEV-5"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"state":{"type":"dropdown","value":"active"}},"time_to_resolve":0,"non_datadog_creator":null,"detected":"2025-01-01T00:00:00+00:00","title":"Test-Import_an_incident_returns_CREATED_response-1771015099","notification_handles":null,"visibility":"organization","creation_idempotency_key":null,"customer_impacted":false,"last_modified_by_uuid":null,"customer_impact_end":null,"time_to_detect":0,"declared_by_uuid":null,"public_id":336084,"last_modified_by":{"data":{"type":"users","attributes":{"name":"frog","email":"frog@datadoghq.com","handle":"frog@datadoghq.com","uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"},"id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander":null,"customer_impact_scope":"","customer_impact_start":null,"archived":null,"state":"active","case_id":null,"time_to_repair":0,"is_test":false,"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1735689600,"end":null},{"start":1735689600,"end":null}]}}},"time_to_internal_response":0,"created":"2026-02-13T20:38:19+00:00","created_by":{"data":{"type":"users","attributes":{"name":"frog","email":"frog@datadoghq.com","handle":"frog@datadoghq.com","uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"},"id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"declared":"2025-01-01T00:00:00+00:00"},"relationships":{"impacts":{"data":[]},"commander_user":{"data":null},"user_defined_fields":{"data":[]},"responders":{"data":[]},"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"attachments":{"data":[]},"integrations":{"data":[]},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}}},"id":"d3c614dc-93e7-4648-b104-b4047548deca"}}]},"relationships":{"incidents_relationship":{"data":[{"type":"incidents","id":"77afaefe-9585-5eba-9e1e-195149b3dc66"},{"type":"incidents","id":"405ffa23-71f5-4f91-942a-9bf8a0bfa581"},{"type":"incidents","id":"fb49e1f3-89af-496f-9587-107ea13b9adc"},{"type":"incidents","id":"cdb0f1f2-33ce-4465-85ea-fc8aa3f85d21"},{"type":"incidents","id":"d3c614dc-93e7-4648-b104-b4047548deca"}]}}},"included":[{"type":"incidents","id":"77afaefe-9585-5eba-9e1e-195149b3dc66","attributes":{"public_id":336599,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Example-Create_an_incident_returns_CREATED_response_1771235254","resolved":null,"customer_impact_scope":"","customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-02-16T09:47:35+00:00","modified":"2026-02-16T09:47:35+00:00","commander":{"data":{"type":"users","id":"677cf521-c579-4b83-988f-bf8eb6fb2d6c","attributes":{"uuid":"677cf521-c579-4b83-988f-bf8eb6fb2d6c","handle":"example-create_an_incident_returns_created_response_1771235254@datadoghq.com","email":"example-create_an_incident_returns_created_response_1771235254@datadoghq.com","name":"","icon":"https://secure.gravatar.com/avatar/8d477f5bcc69ccd49bf802bca9cbac14?s=48&d=retro"}}},"detected":"2026-02-16T09:47:35+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-02-16T09:47:35+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"root_cause":{"type":"textbox","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"resolved"},"summary":{"type":"textbox","value":null},"teams":{"type":"autocomplete","value":null},"slug":{"type":"textbox","value":"IR-336599"},"detection_method":{"type":"dropdown","value":"unknown"},"services":{"type":"autocomplete","value":null}},"field_analytics":{"state":{"resolved":{"duration":0,"spans":[{"start":1771235256,"end":null}]}}},"severity":"UNKNOWN","state":"resolved","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":{"type":"users","id":"677cf521-c579-4b83-988f-bf8eb6fb2d6c"}},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[{"type":"incident_responders","id":"f393bc25-a7d0-54f4-9114-98e6385143aa"}]},"impacts":{"data":[]}}},{"type":"incidents","id":"405ffa23-71f5-4f91-942a-9bf8a0bfa581","attributes":{"public_id":336149,"incident_type_uuid":"d5d8a5e6-0e41-4acb-bc80-e5476ba4711d","title":"Test-Import_an_incident_returns_CREATED_response-1771020502","resolved":null,"customer_impact_scope":"","customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-02-13T22:08:22+00:00","modified":"2026-02-13T22:08:22+00:00","commander":null,"detected":"2025-01-01T00:00:00+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2025-01-01T00:00:00+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"summary":{"type":"textbox","value":null},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"slug":{"type":"textbox","value":"IR-336149"},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null},"state":{"type":"dropdown","value":"active"},"severity":{"type":"dropdown","value":"SEV-5"}},"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1735689600,"end":null},{"start":1735689600,"end":null}]}}},"severity":"SEV-5","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"fb49e1f3-89af-496f-9587-107ea13b9adc","attributes":{"public_id":336131,"incident_type_uuid":"e571c40e-671e-468e-b2d2-49abcddb2730","title":"Test-Import_an_incident_returns_CREATED_response-1771020049","resolved":null,"customer_impact_scope":"","customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-02-13T22:00:49+00:00","modified":"2026-02-13T22:00:49+00:00","commander":null,"detected":"2025-01-01T00:00:00+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2025-01-01T00:00:00+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"root_cause":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null},"slug":{"type":"textbox","value":"IR-336131"},"state":{"type":"dropdown","value":"active"},"severity":{"type":"dropdown","value":"SEV-5"},"detection_method":{"type":"dropdown","value":"unknown"},"summary":{"type":"textbox","value":null}},"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1735689600,"end":null},{"start":1735689600,"end":null}]}}},"severity":"SEV-5","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"cdb0f1f2-33ce-4465-85ea-fc8aa3f85d21","attributes":{"public_id":336102,"incident_type_uuid":"b19568c3-f758-47f3-8359-b7d3136ee4ce","title":"Test-Import_an_incident_returns_CREATED_response-1771015188","resolved":null,"customer_impact_scope":"","customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-02-13T20:39:48+00:00","modified":"2026-02-13T20:39:48+00:00","commander":null,"detected":"2025-01-01T00:00:00+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2025-01-01T00:00:00+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null},"slug":{"type":"textbox","value":"IR-336102"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"severity":{"type":"dropdown","value":"SEV-5"}},"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1735689600,"end":null},{"start":1735689600,"end":null}]}}},"severity":"SEV-5","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}},{"type":"incidents","id":"d3c614dc-93e7-4648-b104-b4047548deca","attributes":{"public_id":336084,"incident_type_uuid":"227f4739-de77-47ac-ac1b-5b0fd5497b54","title":"Test-Import_an_incident_returns_CREATED_response-1771015099","resolved":null,"customer_impact_scope":"","customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-02-13T20:38:19+00:00","modified":"2026-02-13T20:38:19+00:00","commander":null,"detected":"2025-01-01T00:00:00+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2025-01-01T00:00:00+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"summary":{"type":"textbox","value":null},"teams":{"type":"autocomplete","value":null},"slug":{"type":"textbox","value":"IR-336084"},"severity":{"type":"dropdown","value":"SEV-5"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"state":{"type":"dropdown","value":"active"}},"field_analytics":{"state":{"active":{"duration":0,"spans":[{"start":1735689600,"end":null},{"start":1735689600,"end":null}]}}},"severity":"SEV-5","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}}],"meta":{"pagination":{"offset":0,"next_offset":5,"size":5}}} ' headers: @@ -153,14 +48,14 @@ http_interactions: status: code: 200 message: OK -- recorded_at: Mon, 19 Jan 2026 20:16:09 GMT +- recorded_at: Mon, 23 Feb 2026 14:06:51 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/cb8554e7-75e5-5bc4-a9a9-d2cad60c619a + uri: https://api.datadoghq.com/api/v2/incidents/ae9bf4be-cc56-5def-b363-1afe660c60a8 response: body: encoding: UTF-8 diff --git a/cassettes/features/v2/incidents/Update-an-existing-incident-integration-metadata-returns-OK-response.frozen b/cassettes/features/v2/incidents/Update-an-existing-incident-integration-metadata-returns-OK-response.frozen index 9d90f9faeefe..6752e31b6d8d 100644 --- a/cassettes/features/v2/incidents/Update-an-existing-incident-integration-metadata-returns-OK-response.frozen +++ b/cassettes/features/v2/incidents/Update-an-existing-incident-integration-metadata-returns-OK-response.frozen @@ -1 +1 @@ -2026-01-19T20:16:27.975Z \ No newline at end of file +2026-02-23T14:07:12.169Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/Update-an-existing-incident-integration-metadata-returns-OK-response.yml b/cassettes/features/v2/incidents/Update-an-existing-incident-integration-metadata-returns-OK-response.yml index e5ed7acf8a09..45a98f019947 100644 --- a/cassettes/features/v2/incidents/Update-an-existing-incident-integration-metadata-returns-OK-response.yml +++ b/cassettes/features/v2/incidents/Update-an-existing-incident-integration-metadata-returns-OK-response.yml @@ -1,9 +1,9 @@ http_interactions: -- recorded_at: Mon, 19 Jan 2026 20:16:27 GMT +- recorded_at: Mon, 23 Feb 2026 14:07:12 GMT request: body: encoding: UTF-8 - string: '{"data":{"attributes":{"customer_impacted":false,"title":"Test-Update_an_existing_incident_integration_metadata_returns_OK_response-1768853787"},"type":"incidents"}}' + string: '{"data":{"attributes":{"customer_impacted":false,"title":"Test-Update_an_existing_incident_integration_metadata_returns_OK_response-1771855632"},"type":"incidents"}}' headers: Accept: - application/json @@ -14,7 +14,7 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":{"type":"incidents","id":"a566fdf4-9362-526a-835f-33222659611a","attributes":{"public_id":331311,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Update_an_existing_incident_integration_metadata_returns_OK_response-1768853787","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-19T20:16:28.187221+00:00","modified":"2026-01-19T20:16:28.187221+00:00","commander":null,"detected":"2026-01-19T20:16:28.176027+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-19T20:16:28.187221+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}}} + string: '{"data":{"type":"incidents","id":"563e989e-7a68-55d3-84b0-9b21d4f809fc","attributes":{"public_id":338026,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Update_an_existing_incident_integration_metadata_returns_OK_response-1771855632","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-02-23T14:07:12.324996+00:00","modified":"2026-02-23T14:07:12.324996+00:00","commander":null,"detected":"2026-02-23T14:07:12.315147+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-02-23T14:07:12.324996+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"slug":{"type":"textbox","value":"IR-338026"}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"},{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"2b9f1063-b915-4c7a-8bbd-fc3940245529"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}}} ' headers: @@ -23,22 +23,22 @@ http_interactions: status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:16:27 GMT +- recorded_at: Mon, 23 Feb 2026 14:07:12 GMT request: body: encoding: UTF-8 - string: '{"data":{"attributes":{"incident_id":"a566fdf4-9362-526a-835f-33222659611a","integration_type":1,"metadata":{"channels":[{"channel_id":"C0123456789","channel_name":"#example-channel-name","redirect_url":"https://slack.com/app_redirect?channel=C0123456789&team=T01234567","team_id":"T01234567"}]},"status":2},"type":"incident_integrations"}}' + string: '{"data":{"attributes":{"incident_id":"563e989e-7a68-55d3-84b0-9b21d4f809fc","integration_type":1,"metadata":{"channels":[{"channel_id":"C0123456789","channel_name":"#example-channel-name","redirect_url":"https://slack.com/app_redirect?channel=C0123456789&team=T01234567","team_id":"T01234567"}]},"status":2},"type":"incident_integrations"}}' headers: Accept: - application/json Content-Type: - application/json method: POST - uri: https://api.datadoghq.com/api/v2/incidents/a566fdf4-9362-526a-835f-33222659611a/relationships/integrations + uri: https://api.datadoghq.com/api/v2/incidents/563e989e-7a68-55d3-84b0-9b21d4f809fc/relationships/integrations response: body: encoding: UTF-8 - string: '{"data":{"type":"incident_integrations","id":"0cddc98d-9e30-5ee9-96bd-0cc30707b77a","attributes":{"created":"2026-01-19T20:16:28.680571+00:00","modified":"2026-01-19T20:16:28.680571+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","incident_id":"a566fdf4-9362-526a-835f-33222659611a","last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","status":3,"integration_type":1,"metadata":{"channels":[{"channel_id":"C0123456789","channel_name":"#example-channel-name","redirect_url":"https://slack.com/app_redirect?channel=C0123456789&team=T01234567","team_id":"T01234567"}]}},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}}}}} + string: '{"data":{"type":"incident_integrations","id":"89c6c3eb-f2dc-5663-8261-6f065155450b","attributes":{"created":"2026-02-23T14:07:12.720055+00:00","modified":"2026-02-23T14:07:12.720055+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","incident_id":"563e989e-7a68-55d3-84b0-9b21d4f809fc","last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","status":3,"integration_type":1,"metadata":{"channels":[{"channel_id":"C0123456789","channel_name":"#example-channel-name","redirect_url":"https://slack.com/app_redirect?channel=C0123456789&team=T01234567","team_id":"T01234567"}]}},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}}}}} ' headers: @@ -47,22 +47,22 @@ http_interactions: status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:16:27 GMT +- recorded_at: Mon, 23 Feb 2026 14:07:12 GMT request: body: encoding: UTF-8 - string: '{"data":{"attributes":{"incident_id":"a566fdf4-9362-526a-835f-33222659611a","integration_type":1,"metadata":{"channels":[{"channel_id":"C0123456789","channel_name":"#updated-channel-name","redirect_url":"https://slack.com/app_redirect?channel=C0123456789&team=T01234567","team_id":"T01234567"}]}},"type":"incident_integrations"}}' + string: '{"data":{"attributes":{"incident_id":"563e989e-7a68-55d3-84b0-9b21d4f809fc","integration_type":1,"metadata":{"channels":[{"channel_id":"C0123456789","channel_name":"#updated-channel-name","redirect_url":"https://slack.com/app_redirect?channel=C0123456789&team=T01234567","team_id":"T01234567"}]}},"type":"incident_integrations"}}' headers: Accept: - application/json Content-Type: - application/json method: PATCH - uri: https://api.datadoghq.com/api/v2/incidents/a566fdf4-9362-526a-835f-33222659611a/relationships/integrations/0cddc98d-9e30-5ee9-96bd-0cc30707b77a + uri: https://api.datadoghq.com/api/v2/incidents/563e989e-7a68-55d3-84b0-9b21d4f809fc/relationships/integrations/89c6c3eb-f2dc-5663-8261-6f065155450b response: body: encoding: UTF-8 - string: '{"data":{"type":"incident_integrations","id":"0cddc98d-9e30-5ee9-96bd-0cc30707b77a","attributes":{"created":"2026-01-19T20:16:28.680571+00:00","modified":"2026-01-19T20:16:29.011860+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","incident_id":"a566fdf4-9362-526a-835f-33222659611a","last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","status":4,"integration_type":1,"metadata":{"channels":[{"channel_id":"C0123456789","channel_name":"#updated-channel-name","redirect_url":"https://slack.com/app_redirect?channel=C0123456789&team=T01234567","team_id":"T01234567"}]}},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}}}}} + string: '{"data":{"type":"incident_integrations","id":"89c6c3eb-f2dc-5663-8261-6f065155450b","attributes":{"created":"2026-02-23T14:07:12.720055+00:00","modified":"2026-02-23T14:07:12.941928+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","incident_id":"563e989e-7a68-55d3-84b0-9b21d4f809fc","last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","status":4,"integration_type":1,"metadata":{"channels":[{"channel_id":"C0123456789","channel_name":"#updated-channel-name","redirect_url":"https://slack.com/app_redirect?channel=C0123456789&team=T01234567","team_id":"T01234567"}]}},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}}}}} ' headers: @@ -71,14 +71,14 @@ http_interactions: status: code: 200 message: OK -- recorded_at: Mon, 19 Jan 2026 20:16:27 GMT +- recorded_at: Mon, 23 Feb 2026 14:07:12 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/a566fdf4-9362-526a-835f-33222659611a/relationships/integrations/0cddc98d-9e30-5ee9-96bd-0cc30707b77a + uri: https://api.datadoghq.com/api/v2/incidents/563e989e-7a68-55d3-84b0-9b21d4f809fc/relationships/integrations/89c6c3eb-f2dc-5663-8261-6f065155450b response: body: encoding: UTF-8 @@ -87,14 +87,14 @@ http_interactions: status: code: 204 message: No Content -- recorded_at: Mon, 19 Jan 2026 20:16:27 GMT +- recorded_at: Mon, 23 Feb 2026 14:07:12 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/a566fdf4-9362-526a-835f-33222659611a + uri: https://api.datadoghq.com/api/v2/incidents/563e989e-7a68-55d3-84b0-9b21d4f809fc response: body: encoding: UTF-8 diff --git a/cassettes/features/v2/incidents/Update-an-existing-incident-returns-OK-response.frozen b/cassettes/features/v2/incidents/Update-an-existing-incident-returns-OK-response.frozen index 4901ce6fbefa..1216c69b548e 100644 --- a/cassettes/features/v2/incidents/Update-an-existing-incident-returns-OK-response.frozen +++ b/cassettes/features/v2/incidents/Update-an-existing-incident-returns-OK-response.frozen @@ -1 +1 @@ -2026-01-19T20:16:29.760Z \ No newline at end of file +2026-02-23T14:07:13.479Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/Update-an-existing-incident-returns-OK-response.yml b/cassettes/features/v2/incidents/Update-an-existing-incident-returns-OK-response.yml index 4d5f384294b6..70c77f7d05c8 100644 --- a/cassettes/features/v2/incidents/Update-an-existing-incident-returns-OK-response.yml +++ b/cassettes/features/v2/incidents/Update-an-existing-incident-returns-OK-response.yml @@ -1,9 +1,9 @@ http_interactions: -- recorded_at: Mon, 19 Jan 2026 20:16:29 GMT +- recorded_at: Mon, 23 Feb 2026 14:07:13 GMT request: body: encoding: UTF-8 - string: '{"data":{"attributes":{"customer_impacted":false,"title":"Test-Update_an_existing_incident_returns_OK_response-1768853789"},"type":"incidents"}}' + string: '{"data":{"attributes":{"customer_impacted":false,"title":"Test-Update_an_existing_incident_returns_OK_response-1771855633"},"type":"incidents"}}' headers: Accept: - application/json @@ -14,7 +14,7 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":{"type":"incidents","id":"6825b5f0-f411-569d-9575-ebf239aee402","attributes":{"public_id":331312,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Update_an_existing_incident_returns_OK_response-1768853789","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-19T20:16:29.984249+00:00","modified":"2026-01-19T20:16:29.984249+00:00","commander":null,"detected":"2026-01-19T20:16:29.970089+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-19T20:16:29.984249+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}}} + string: '{"data":{"type":"incidents","id":"a6250371-3453-5a56-b302-93500bfb7e41","attributes":{"public_id":338027,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Update_an_existing_incident_returns_OK_response-1771855633","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-02-23T14:07:13.638926+00:00","modified":"2026-02-23T14:07:13.638926+00:00","commander":null,"detected":"2026-02-23T14:07:13.629404+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-02-23T14:07:13.638926+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"slug":{"type":"textbox","value":"IR-338027"}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"},{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"2b9f1063-b915-4c7a-8bbd-fc3940245529"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}}} ' headers: @@ -23,22 +23,22 @@ http_interactions: status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:16:29 GMT +- recorded_at: Mon, 23 Feb 2026 14:07:13 GMT request: body: encoding: UTF-8 - string: '{"data":{"attributes":{"fields":{"state":{"type":"dropdown","value":"resolved"}},"title":"Test-Update_an_existing_incident_returns_OK_response-1768853789-updated"},"id":"6825b5f0-f411-569d-9575-ebf239aee402","type":"incidents"}}' + string: '{"data":{"attributes":{"fields":{"state":{"type":"dropdown","value":"resolved"}},"title":"Test-Update_an_existing_incident_returns_OK_response-1771855633-updated"},"id":"a6250371-3453-5a56-b302-93500bfb7e41","type":"incidents"}}' headers: Accept: - application/json Content-Type: - application/json method: PATCH - uri: https://api.datadoghq.com/api/v2/incidents/6825b5f0-f411-569d-9575-ebf239aee402 + uri: https://api.datadoghq.com/api/v2/incidents/a6250371-3453-5a56-b302-93500bfb7e41 response: body: encoding: UTF-8 - string: '{"data":{"type":"incidents","id":"6825b5f0-f411-569d-9575-ebf239aee402","attributes":{"public_id":331312,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Update_an_existing_incident_returns_OK_response-1768853789-updated","resolved":"2026-01-19T20:16:30.533928+00:00","customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","created":"2026-01-19T20:16:29.984249+00:00","modified":"2026-01-19T20:16:30.541218+00:00","commander":null,"detected":"2026-01-19T20:16:29.970089+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-19T20:16:29.984249+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"resolved"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"resolved","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[{"type":"incident_responders","id":"f7037f93-761c-59a3-ab54-f544d2d97056"}]},"impacts":{"data":[]}}}} + string: '{"data":{"type":"incidents","id":"a6250371-3453-5a56-b302-93500bfb7e41","attributes":{"public_id":338027,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Update_an_existing_incident_returns_OK_response-1771855633-updated","resolved":"2026-02-23T14:07:14.035556+00:00","customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","created":"2026-02-23T14:07:13.638926+00:00","modified":"2026-02-23T14:07:14.040951+00:00","commander":null,"detected":"2026-02-23T14:07:13.629404+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-02-23T14:07:13.638926+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","fields":{"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"resolved"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"slug":{"type":"textbox","value":"IR-338027"}},"field_analytics":null,"severity":"UNKNOWN","state":"resolved","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"},{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"2b9f1063-b915-4c7a-8bbd-fc3940245529"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[{"type":"incident_responders","id":"05bdbb09-277b-5506-99a5-af9874b7c8ea"}]},"impacts":{"data":[]}}}} ' headers: @@ -47,14 +47,14 @@ http_interactions: status: code: 200 message: OK -- recorded_at: Mon, 19 Jan 2026 20:16:29 GMT +- recorded_at: Mon, 23 Feb 2026 14:07:13 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/6825b5f0-f411-569d-9575-ebf239aee402 + uri: https://api.datadoghq.com/api/v2/incidents/a6250371-3453-5a56-b302-93500bfb7e41 response: body: encoding: UTF-8 diff --git a/cassettes/features/v2/incidents/Update-an-incident-todo-returns-OK-response.frozen b/cassettes/features/v2/incidents/Update-an-incident-todo-returns-OK-response.frozen index f64b0c96f2cc..b7d0078209bf 100644 --- a/cassettes/features/v2/incidents/Update-an-incident-todo-returns-OK-response.frozen +++ b/cassettes/features/v2/incidents/Update-an-incident-todo-returns-OK-response.frozen @@ -1 +1 @@ -2026-01-19T20:16:31.165Z \ No newline at end of file +2026-02-23T14:07:14.485Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/Update-an-incident-todo-returns-OK-response.yml b/cassettes/features/v2/incidents/Update-an-incident-todo-returns-OK-response.yml index 2879098817c2..5763cc9cfc30 100644 --- a/cassettes/features/v2/incidents/Update-an-incident-todo-returns-OK-response.yml +++ b/cassettes/features/v2/incidents/Update-an-incident-todo-returns-OK-response.yml @@ -1,9 +1,9 @@ http_interactions: -- recorded_at: Mon, 19 Jan 2026 20:16:31 GMT +- recorded_at: Mon, 23 Feb 2026 14:07:14 GMT request: body: encoding: UTF-8 - string: '{"data":{"attributes":{"customer_impacted":false,"title":"Test-Update_an_incident_todo_returns_OK_response-1768853791"},"type":"incidents"}}' + string: '{"data":{"attributes":{"customer_impacted":false,"title":"Test-Update_an_incident_todo_returns_OK_response-1771855634"},"type":"incidents"}}' headers: Accept: - application/json @@ -14,7 +14,7 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":{"type":"incidents","id":"fe352005-ec44-583c-9b00-801790acdf33","attributes":{"public_id":331313,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Update_an_incident_todo_returns_OK_response-1768853791","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-19T20:16:31.354719+00:00","modified":"2026-01-19T20:16:31.354719+00:00","commander":null,"detected":"2026-01-19T20:16:31.345554+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-19T20:16:31.354719+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}}} + string: '{"data":{"type":"incidents","id":"b99fac19-2e06-582e-ad48-14978a16a3aa","attributes":{"public_id":338028,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Update_an_incident_todo_returns_OK_response-1771855634","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-02-23T14:07:14.646305+00:00","modified":"2026-02-23T14:07:14.646305+00:00","commander":null,"detected":"2026-02-23T14:07:14.634939+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-02-23T14:07:14.646305+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"slug":{"type":"textbox","value":"IR-338028"}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"},{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"2b9f1063-b915-4c7a-8bbd-fc3940245529"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}}} ' headers: @@ -23,7 +23,7 @@ http_interactions: status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:16:31 GMT +- recorded_at: Mon, 23 Feb 2026 14:07:14 GMT request: body: encoding: UTF-8 @@ -35,12 +35,12 @@ http_interactions: Content-Type: - application/json method: POST - uri: https://api.datadoghq.com/api/v2/incidents/fe352005-ec44-583c-9b00-801790acdf33/relationships/todos + uri: https://api.datadoghq.com/api/v2/incidents/b99fac19-2e06-582e-ad48-14978a16a3aa/relationships/todos response: body: encoding: UTF-8 - string: '{"data":{"type":"incident_todos","id":"0bc759e2-a698-5fc8-b075-c02b8c7c6f4a","attributes":{"created":"2026-01-19T20:16:31.808567+00:00","modified":"2026-01-19T20:16:31.808567+00:00","completed":null,"due_date":null,"assignees":["@test.user@test.com",{"icon":"https://a.slack-edge.com/80588/img/slackbot_48.png","id":"USLACKBOT","name":"Slackbot","source":"slack"}],"content":"Follow - up with customer about the impact they saw.","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"incident_id":"fe352005-ec44-583c-9b00-801790acdf33","last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}}}}} + string: '{"data":{"type":"incident_todos","id":"5a7ef902-7819-5f66-800b-24cbc39c5529","attributes":{"created":"2026-02-23T14:07:15.120245+00:00","modified":"2026-02-23T14:07:15.120245+00:00","completed":null,"due_date":null,"assignees":["@test.user@test.com",{"icon":"https://a.slack-edge.com/80588/img/slackbot_48.png","id":"USLACKBOT","name":"Slackbot","source":"slack"}],"content":"Follow + up with customer about the impact they saw.","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"incident_id":"b99fac19-2e06-582e-ad48-14978a16a3aa","last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}}}}} ' headers: @@ -49,7 +49,7 @@ http_interactions: status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:16:31 GMT +- recorded_at: Mon, 23 Feb 2026 14:07:14 GMT request: body: encoding: UTF-8 @@ -61,12 +61,12 @@ http_interactions: Content-Type: - application/json method: PATCH - uri: https://api.datadoghq.com/api/v2/incidents/fe352005-ec44-583c-9b00-801790acdf33/relationships/todos/0bc759e2-a698-5fc8-b075-c02b8c7c6f4a + uri: https://api.datadoghq.com/api/v2/incidents/b99fac19-2e06-582e-ad48-14978a16a3aa/relationships/todos/5a7ef902-7819-5f66-800b-24cbc39c5529 response: body: encoding: UTF-8 - string: '{"data":{"type":"incident_todos","id":"0bc759e2-a698-5fc8-b075-c02b8c7c6f4a","attributes":{"created":"2026-01-19T20:16:31.808567+00:00","modified":"2026-01-19T20:16:32.430915+00:00","completed":"2023-03-06T22:00:00+00:00","due_date":"2023-07-10T05:00:00+00:00","assignees":["@test.user@test.com"],"content":"Restore - lost data.","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","incident_id":"fe352005-ec44-583c-9b00-801790acdf33","last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0"},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}}}}} + string: '{"data":{"type":"incident_todos","id":"5a7ef902-7819-5f66-800b-24cbc39c5529","attributes":{"created":"2026-02-23T14:07:15.120245+00:00","modified":"2026-02-23T14:07:15.568516+00:00","completed":"2023-03-06T22:00:00+00:00","due_date":"2023-07-10T05:00:00+00:00","assignees":["@test.user@test.com"],"content":"Restore + lost data.","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","incident_id":"b99fac19-2e06-582e-ad48-14978a16a3aa","last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0"},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}}}}} ' headers: @@ -75,14 +75,14 @@ http_interactions: status: code: 200 message: OK -- recorded_at: Mon, 19 Jan 2026 20:16:31 GMT +- recorded_at: Mon, 23 Feb 2026 14:07:14 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/fe352005-ec44-583c-9b00-801790acdf33/relationships/todos/0bc759e2-a698-5fc8-b075-c02b8c7c6f4a + uri: https://api.datadoghq.com/api/v2/incidents/b99fac19-2e06-582e-ad48-14978a16a3aa/relationships/todos/5a7ef902-7819-5f66-800b-24cbc39c5529 response: body: encoding: UTF-8 @@ -93,14 +93,14 @@ http_interactions: status: code: 204 message: No Content -- recorded_at: Mon, 19 Jan 2026 20:16:31 GMT +- recorded_at: Mon, 23 Feb 2026 14:07:14 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/fe352005-ec44-583c-9b00-801790acdf33 + uri: https://api.datadoghq.com/api/v2/incidents/b99fac19-2e06-582e-ad48-14978a16a3aa response: body: encoding: UTF-8 diff --git a/cassettes/features/v2/incidents/Update-an-incident-type-returns-OK-response.frozen b/cassettes/features/v2/incidents/Update-an-incident-type-returns-OK-response.frozen index 7956c2e3341a..ee58a5eb8a83 100644 --- a/cassettes/features/v2/incidents/Update-an-incident-type-returns-OK-response.frozen +++ b/cassettes/features/v2/incidents/Update-an-incident-type-returns-OK-response.frozen @@ -1 +1 @@ -2026-01-19T20:16:33.415Z \ No newline at end of file +2026-02-23T14:07:16.356Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/Update-an-incident-type-returns-OK-response.yml b/cassettes/features/v2/incidents/Update-an-incident-type-returns-OK-response.yml index 2b394aa2c3a8..98991f26e3a2 100644 --- a/cassettes/features/v2/incidents/Update-an-incident-type-returns-OK-response.yml +++ b/cassettes/features/v2/incidents/Update-an-incident-type-returns-OK-response.yml @@ -1,5 +1,5 @@ http_interactions: -- recorded_at: Mon, 19 Jan 2026 20:16:33 GMT +- recorded_at: Mon, 23 Feb 2026 14:07:16 GMT request: body: encoding: UTF-8 @@ -16,9 +16,9 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":{"id":"be5bae51-9d0d-440a-a179-067ca56e51b2","type":"incident_types","attributes":{"createdAt":"2026-01-19T20:16:33.554076991Z","createdBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","description":"Any + string: '{"data":{"id":"2f679d16-756e-4d56-b80f-b7b0dd449572","type":"incident_types","attributes":{"createdAt":"2026-02-23T14:07:16.468385502Z","createdBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","description":"Any incidents that harm (or have the potential to) the confidentiality, integrity, - or availability of our data.","is_default":false,"lastModifiedBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","modifiedAt":"2026-01-19T20:16:33.554077065Z","name":"Security + or availability of our data.","is_default":false,"lastModifiedBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","modifiedAt":"2026-02-23T14:07:16.468385592Z","name":"Security Incident","prefix":"IR"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"google_chat_configuration":{"data":null},"google_meet_configuration":{"data":null},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"microsoft_teams_configuration":{"data":null},"zoom_configuration":{"data":null}}}}' headers: Content-Type: @@ -26,24 +26,24 @@ http_interactions: status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:16:33 GMT +- recorded_at: Mon, 23 Feb 2026 14:07:16 GMT request: body: encoding: UTF-8 - string: '{"data":{"attributes":{"name":"Security Incident-updated"},"id":"be5bae51-9d0d-440a-a179-067ca56e51b2","type":"incident_types"}}' + string: '{"data":{"attributes":{"name":"Security Incident-updated"},"id":"2f679d16-756e-4d56-b80f-b7b0dd449572","type":"incident_types"}}' headers: Accept: - application/json Content-Type: - application/json method: PATCH - uri: https://api.datadoghq.com/api/v2/incidents/config/types/be5bae51-9d0d-440a-a179-067ca56e51b2 + uri: https://api.datadoghq.com/api/v2/incidents/config/types/2f679d16-756e-4d56-b80f-b7b0dd449572 response: body: encoding: UTF-8 - string: '{"data":{"id":"be5bae51-9d0d-440a-a179-067ca56e51b2","type":"incident_types","attributes":{"createdAt":"2026-01-19T20:16:33.554076Z","createdBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","description":"Any + string: '{"data":{"id":"2f679d16-756e-4d56-b80f-b7b0dd449572","type":"incident_types","attributes":{"createdAt":"2026-02-23T14:07:16.468385Z","createdBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","description":"Any incidents that harm (or have the potential to) the confidentiality, integrity, - or availability of our data.","is_default":false,"lastModifiedBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","modifiedAt":"2026-01-19T20:16:33.83531Z","name":"Security + or availability of our data.","is_default":false,"lastModifiedBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","modifiedAt":"2026-02-23T14:07:16.816272Z","name":"Security Incident-updated","prefix":"IR"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"google_chat_configuration":{"data":null},"google_meet_configuration":{"data":null},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"microsoft_teams_configuration":{"data":null},"zoom_configuration":{"data":null}}}}' headers: Content-Type: @@ -51,14 +51,14 @@ http_interactions: status: code: 200 message: OK -- recorded_at: Mon, 19 Jan 2026 20:16:33 GMT +- recorded_at: Mon, 23 Feb 2026 14:07:16 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/config/types/be5bae51-9d0d-440a-a179-067ca56e51b2 + uri: https://api.datadoghq.com/api/v2/incidents/config/types/2f679d16-756e-4d56-b80f-b7b0dd449572 response: body: encoding: UTF-8 diff --git a/cassettes/features/v2/incidents/Update-incident-attachment-returns-Not-Found-response.frozen b/cassettes/features/v2/incidents/Update-incident-attachment-returns-Not-Found-response.frozen index 041002f3aca9..2b41be83cfd5 100644 --- a/cassettes/features/v2/incidents/Update-incident-attachment-returns-Not-Found-response.frozen +++ b/cassettes/features/v2/incidents/Update-incident-attachment-returns-Not-Found-response.frozen @@ -1 +1 @@ -2026-01-19T20:16:33.982Z \ No newline at end of file +2026-02-23T14:07:16.917Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/Update-incident-attachment-returns-Not-Found-response.yml b/cassettes/features/v2/incidents/Update-incident-attachment-returns-Not-Found-response.yml index 1b785747457f..aa4a8e22b504 100644 --- a/cassettes/features/v2/incidents/Update-incident-attachment-returns-Not-Found-response.yml +++ b/cassettes/features/v2/incidents/Update-incident-attachment-returns-Not-Found-response.yml @@ -1,5 +1,5 @@ http_interactions: -- recorded_at: Mon, 19 Jan 2026 20:16:33 GMT +- recorded_at: Mon, 23 Feb 2026 14:07:16 GMT request: body: encoding: UTF-8 diff --git a/cassettes/features/v2/incidents/Update-incident-attachment-returns-OK-response.frozen b/cassettes/features/v2/incidents/Update-incident-attachment-returns-OK-response.frozen index 81756edb8f6b..f37a7c2f1541 100644 --- a/cassettes/features/v2/incidents/Update-incident-attachment-returns-OK-response.frozen +++ b/cassettes/features/v2/incidents/Update-incident-attachment-returns-OK-response.frozen @@ -1 +1 @@ -2026-01-19T20:16:34.140Z \ No newline at end of file +2026-02-23T14:07:17.039Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/Update-incident-attachment-returns-OK-response.yml b/cassettes/features/v2/incidents/Update-incident-attachment-returns-OK-response.yml index 835ff19df8d4..2058e7301a1b 100644 --- a/cassettes/features/v2/incidents/Update-incident-attachment-returns-OK-response.yml +++ b/cassettes/features/v2/incidents/Update-incident-attachment-returns-OK-response.yml @@ -1,9 +1,9 @@ http_interactions: -- recorded_at: Mon, 19 Jan 2026 20:16:34 GMT +- recorded_at: Mon, 23 Feb 2026 14:07:17 GMT request: body: encoding: UTF-8 - string: '{"data":{"attributes":{"customer_impacted":false,"title":"Test-Update_incident_attachment_returns_OK_response-1768853794"},"type":"incidents"}}' + string: '{"data":{"attributes":{"customer_impacted":false,"title":"Test-Update_incident_attachment_returns_OK_response-1771855637"},"type":"incidents"}}' headers: Accept: - application/json @@ -14,7 +14,7 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":{"type":"incidents","id":"6354177a-fcf9-57c2-9c1b-3c392cfc9640","attributes":{"public_id":331314,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Update_incident_attachment_returns_OK_response-1768853794","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-01-19T20:16:34.313990+00:00","modified":"2026-01-19T20:16:34.313990+00:00","commander":null,"detected":"2026-01-19T20:16:34.305742+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-01-19T20:16:34.313990+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"teams":{"type":"autocomplete","value":null}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}}} + string: '{"data":{"type":"incidents","id":"deefcad1-7d33-56d0-8c82-61989ed74d28","attributes":{"public_id":338029,"incident_type_uuid":"41d2e10b-4108-4736-92d7-791d00ea0702","title":"Test-Update_incident_attachment_returns_OK_response-1771855637","resolved":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impact_end":null,"customer_impacted":false,"notification_handles":null,"last_modified_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"last_modified_by_uuid":null,"created":"2026-02-23T14:07:17.224734+00:00","modified":"2026-02-23T14:07:17.224734+00:00","commander":null,"detected":"2026-02-23T14:07:17.214986+00:00","created_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"created_by_uuid":null,"creation_idempotency_key":null,"customer_impact_duration":0,"time_to_detect":0,"time_to_repair":0,"time_to_internal_response":0,"time_to_resolve":0,"archived":null,"is_test":false,"declared":"2026-02-23T14:07:17.224734+00:00","declared_by":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0","attributes":{"uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0","handle":"frog@datadoghq.com","email":"frog@datadoghq.com","name":"frog","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},"declared_by_uuid":null,"fields":{"teams":{"type":"autocomplete","value":null},"severity":{"type":"dropdown","value":"UNKNOWN"},"state":{"type":"dropdown","value":"active"},"detection_method":{"type":"dropdown","value":"unknown"},"root_cause":{"type":"textbox","value":null},"summary":{"type":"textbox","value":null},"services":{"type":"autocomplete","value":null},"slug":{"type":"textbox","value":"IR-338029"}},"field_analytics":null,"severity":"UNKNOWN","state":"active","non_datadog_creator":null,"visibility":"organization","case_id":null},"relationships":{"created_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"last_modified_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"commander_user":{"data":null},"declared_by_user":{"data":{"type":"users","id":"3ad549bf-eba0-11e9-a77a-0705486660d0"}},"user_defined_fields":{"data":[{"type":"user_defined_field","id":"3cbe9e60-d794-532c-acc0-73641f782813"},{"type":"user_defined_field","id":"33457d2a-570c-5567-b4af-979a2a8f1164"},{"type":"user_defined_field","id":"d003693c-bee9-5420-8d46-859269c20914"},{"type":"user_defined_field","id":"1ddff6f6-cb1f-51a0-9d81-dc18ef52cc9d"},{"type":"user_defined_field","id":"6bc9d32b-c2cd-591e-9b7a-74c886a5ddcf"},{"type":"user_defined_field","id":"95c53547-2ba3-5d8a-9c3b-cf245bc0c629"},{"type":"user_defined_field","id":"39044b03-cee4-555f-b1e0-3eb3aa759a86"},{"type":"user_defined_field","id":"2b9f1063-b915-4c7a-8bbd-fc3940245529"}]},"integrations":{"data":[]},"attachments":{"data":[]},"responders":{"data":[]},"impacts":{"data":[]}}}} ' headers: @@ -23,58 +23,58 @@ http_interactions: status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:16:34 GMT +- recorded_at: Mon, 23 Feb 2026 14:07:17 GMT request: body: encoding: UTF-8 - string: '{"data":{"attributes":{"attachment":{"documentUrl":"https://app.datadoghq.com/notebook/TestUpdateincidentattachmentreturnsOKresponse1768853794/Test-Update_incident_attachment_returns_OK_response-1768853794","title":"Test-Update_incident_attachment_returns_OK_response-1768853794"},"attachment_type":"postmortem"},"type":"incident_attachments"}}' + string: '{"data":{"attributes":{"attachment":{"documentUrl":"https://app.datadoghq.com/notebook/TestUpdateincidentattachmentreturnsOKresponse1771855637/Test-Update_incident_attachment_returns_OK_response-1771855637","title":"Test-Update_incident_attachment_returns_OK_response-1771855637"},"attachment_type":"postmortem"},"type":"incident_attachments"}}' headers: Accept: - application/json Content-Type: - application/json method: POST - uri: https://api.datadoghq.com/api/v2/incidents/6354177a-fcf9-57c2-9c1b-3c392cfc9640/attachments + uri: https://api.datadoghq.com/api/v2/incidents/deefcad1-7d33-56d0-8c82-61989ed74d28/attachments response: body: encoding: UTF-8 - string: '{"data":{"id":"c1d25e8a-1e60-408e-b33e-b42b2c489cb0","type":"incident_attachments","attributes":{"attachment":{"title":"Test-Update_incident_attachment_returns_OK_response-1768853794","documentUrl":"https://app.datadoghq.com/notebook/TestUpdateincidentattachmentreturnsOKresponse1768853794/Test-Update_incident_attachment_returns_OK_response-1768853794"},"attachment_type":"postmortem","modified":"2026-01-19T20:16:34.633326Z"},"relationships":{"incident":{"data":{"id":"6354177a-fcf9-57c2-9c1b-3c392cfc9640","type":"incidents"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},"included":[{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users","attributes":{"email":"frog@datadoghq.com","handle":"frog@datadoghq.com","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?d=retro\u0026s=48","name":"frog","uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0"}}]}' + string: '{"data":{"id":"a5a7c352-5de3-4203-b73f-3fa40146683c","type":"incident_attachments","attributes":{"attachment":{"title":"Test-Update_incident_attachment_returns_OK_response-1771855637","documentUrl":"https://app.datadoghq.com/notebook/TestUpdateincidentattachmentreturnsOKresponse1771855637/Test-Update_incident_attachment_returns_OK_response-1771855637"},"attachment_type":"postmortem","modified":"2026-02-23T14:07:17.557533Z"},"relationships":{"incident":{"data":{"id":"deefcad1-7d33-56d0-8c82-61989ed74d28","type":"incidents"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},"included":[{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users","attributes":{"email":"frog@datadoghq.com","handle":"frog@datadoghq.com","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?d=retro\u0026s=48","name":"frog","uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0"}}]}' headers: Content-Type: - application/vnd.api+json status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:16:34 GMT +- recorded_at: Mon, 23 Feb 2026 14:07:17 GMT request: body: encoding: UTF-8 - string: '{"data":{"attributes":{"attachment":{"documentUrl":"https://app.datadoghq.com/notebook/124/Test-Update_incident_attachment_returns_OK_response-1768853794","title":"Test-Update_incident_attachment_returns_OK_response-1768853794"}},"id":"c1d25e8a-1e60-408e-b33e-b42b2c489cb0","type":"incident_attachments"}}' + string: '{"data":{"attributes":{"attachment":{"documentUrl":"https://app.datadoghq.com/notebook/124/Test-Update_incident_attachment_returns_OK_response-1771855637","title":"Test-Update_incident_attachment_returns_OK_response-1771855637"}},"id":"a5a7c352-5de3-4203-b73f-3fa40146683c","type":"incident_attachments"}}' headers: Accept: - application/json Content-Type: - application/json method: PATCH - uri: https://api.datadoghq.com/api/v2/incidents/6354177a-fcf9-57c2-9c1b-3c392cfc9640/attachments/c1d25e8a-1e60-408e-b33e-b42b2c489cb0 + uri: https://api.datadoghq.com/api/v2/incidents/deefcad1-7d33-56d0-8c82-61989ed74d28/attachments/a5a7c352-5de3-4203-b73f-3fa40146683c response: body: encoding: UTF-8 - string: '{"data":{"id":"c1d25e8a-1e60-408e-b33e-b42b2c489cb0","type":"incident_attachments","attributes":{"attachment":{"title":"Test-Update_incident_attachment_returns_OK_response-1768853794","documentUrl":"https://app.datadoghq.com/notebook/124/Test-Update_incident_attachment_returns_OK_response-1768853794"},"attachment_type":"postmortem","modified":"2026-01-19T20:16:35.178061Z"},"relationships":{"incident":{"data":{"id":"6354177a-fcf9-57c2-9c1b-3c392cfc9640","type":"incidents"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},"included":[{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users","attributes":{"email":"frog@datadoghq.com","handle":"frog@datadoghq.com","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?d=retro\u0026s=48","name":"frog","uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0"}}]}' + string: '{"data":{"id":"a5a7c352-5de3-4203-b73f-3fa40146683c","type":"incident_attachments","attributes":{"attachment":{"title":"Test-Update_incident_attachment_returns_OK_response-1771855637","documentUrl":"https://app.datadoghq.com/notebook/124/Test-Update_incident_attachment_returns_OK_response-1771855637"},"attachment_type":"postmortem","modified":"2026-02-23T14:07:18.015955Z"},"relationships":{"incident":{"data":{"id":"deefcad1-7d33-56d0-8c82-61989ed74d28","type":"incidents"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}},"included":[{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users","attributes":{"email":"frog@datadoghq.com","handle":"frog@datadoghq.com","icon":"https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?d=retro\u0026s=48","name":"frog","uuid":"3ad549bf-eba0-11e9-a77a-0705486660d0"}}]}' headers: Content-Type: - application/vnd.api+json status: code: 200 message: OK -- recorded_at: Mon, 19 Jan 2026 20:16:34 GMT +- recorded_at: Mon, 23 Feb 2026 14:07:17 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/6354177a-fcf9-57c2-9c1b-3c392cfc9640/attachments/c1d25e8a-1e60-408e-b33e-b42b2c489cb0 + uri: https://api.datadoghq.com/api/v2/incidents/deefcad1-7d33-56d0-8c82-61989ed74d28/attachments/a5a7c352-5de3-4203-b73f-3fa40146683c response: body: encoding: UTF-8 @@ -83,14 +83,14 @@ http_interactions: status: code: 204 message: No Content -- recorded_at: Mon, 19 Jan 2026 20:16:34 GMT +- recorded_at: Mon, 23 Feb 2026 14:07:17 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/6354177a-fcf9-57c2-9c1b-3c392cfc9640 + uri: https://api.datadoghq.com/api/v2/incidents/deefcad1-7d33-56d0-8c82-61989ed74d28 response: body: encoding: UTF-8 diff --git a/cassettes/features/v2/incidents/Update-incident-notification-rule-returns-Bad-Request-response.frozen b/cassettes/features/v2/incidents/Update-incident-notification-rule-returns-Bad-Request-response.frozen index 84684ef65613..3bfe9c1fcdc8 100644 --- a/cassettes/features/v2/incidents/Update-incident-notification-rule-returns-Bad-Request-response.frozen +++ b/cassettes/features/v2/incidents/Update-incident-notification-rule-returns-Bad-Request-response.frozen @@ -1 +1 @@ -2026-01-19T20:16:36.349Z \ No newline at end of file +2026-02-23T14:07:19.383Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/Update-incident-notification-rule-returns-Bad-Request-response.yml b/cassettes/features/v2/incidents/Update-incident-notification-rule-returns-Bad-Request-response.yml index 46c35357d42a..f5703a4a1017 100644 --- a/cassettes/features/v2/incidents/Update-incident-notification-rule-returns-Bad-Request-response.yml +++ b/cassettes/features/v2/incidents/Update-incident-notification-rule-returns-Bad-Request-response.yml @@ -1,5 +1,5 @@ http_interactions: -- recorded_at: Mon, 19 Jan 2026 20:16:36 GMT +- recorded_at: Mon, 23 Feb 2026 14:07:19 GMT request: body: encoding: UTF-8 diff --git a/cassettes/features/v2/incidents/Update-incident-notification-rule-returns-Not-Found-response.frozen b/cassettes/features/v2/incidents/Update-incident-notification-rule-returns-Not-Found-response.frozen index b787eaaf6c76..3e4bf7fd9da9 100644 --- a/cassettes/features/v2/incidents/Update-incident-notification-rule-returns-Not-Found-response.frozen +++ b/cassettes/features/v2/incidents/Update-incident-notification-rule-returns-Not-Found-response.frozen @@ -1 +1 @@ -2026-01-19T20:16:36.497Z \ No newline at end of file +2026-02-23T14:07:19.499Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/Update-incident-notification-rule-returns-Not-Found-response.yml b/cassettes/features/v2/incidents/Update-incident-notification-rule-returns-Not-Found-response.yml index 0de6b039e363..ad87a098d277 100644 --- a/cassettes/features/v2/incidents/Update-incident-notification-rule-returns-Not-Found-response.yml +++ b/cassettes/features/v2/incidents/Update-incident-notification-rule-returns-Not-Found-response.yml @@ -1,5 +1,5 @@ http_interactions: -- recorded_at: Mon, 19 Jan 2026 20:16:36 GMT +- recorded_at: Mon, 23 Feb 2026 14:07:19 GMT request: body: encoding: UTF-8 diff --git a/cassettes/features/v2/incidents/Update-incident-notification-rule-returns-OK-response.frozen b/cassettes/features/v2/incidents/Update-incident-notification-rule-returns-OK-response.frozen index 69367473b287..09b4d63b12a2 100644 --- a/cassettes/features/v2/incidents/Update-incident-notification-rule-returns-OK-response.frozen +++ b/cassettes/features/v2/incidents/Update-incident-notification-rule-returns-OK-response.frozen @@ -1 +1 @@ -2026-01-19T20:16:36.637Z \ No newline at end of file +2026-02-23T14:07:19.594Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/Update-incident-notification-rule-returns-OK-response.yml b/cassettes/features/v2/incidents/Update-incident-notification-rule-returns-OK-response.yml index 0243f83108c2..b5e4549445e3 100644 --- a/cassettes/features/v2/incidents/Update-incident-notification-rule-returns-OK-response.yml +++ b/cassettes/features/v2/incidents/Update-incident-notification-rule-returns-OK-response.yml @@ -1,5 +1,5 @@ http_interactions: -- recorded_at: Mon, 19 Jan 2026 20:16:36 GMT +- recorded_at: Mon, 23 Feb 2026 14:07:19 GMT request: body: encoding: UTF-8 @@ -16,9 +16,9 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":{"id":"7afe8eac-cd45-4acf-926c-a562b2118445","type":"incident_types","attributes":{"createdAt":"2026-01-19T20:16:36.769193548Z","createdBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","description":"Any + string: '{"data":{"id":"a9d0db49-7725-4660-8592-3a356e5383c5","type":"incident_types","attributes":{"createdAt":"2026-02-23T14:07:19.703372293Z","createdBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","description":"Any incidents that harm (or have the potential to) the confidentiality, integrity, - or availability of our data.","is_default":false,"lastModifiedBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","modifiedAt":"2026-01-19T20:16:36.769193622Z","name":"Security + or availability of our data.","is_default":false,"lastModifiedBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","modifiedAt":"2026-02-23T14:07:19.703372375Z","name":"Security Incident","prefix":"IR"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"google_chat_configuration":{"data":null},"google_meet_configuration":{"data":null},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"microsoft_teams_configuration":{"data":null},"zoom_configuration":{"data":null}}}}' headers: Content-Type: @@ -26,11 +26,11 @@ http_interactions: status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:16:36 GMT +- recorded_at: Mon, 23 Feb 2026 14:07:19 GMT request: body: encoding: UTF-8 - string: '{"data":{"attributes":{"conditions":[{"field":"severity","values":["SEV-1","SEV-2"]}],"enabled":true,"handles":["@test-email@company.com"],"trigger":"incident_created_trigger","visibility":"organization"},"relationships":{"incident_type":{"data":{"id":"7afe8eac-cd45-4acf-926c-a562b2118445","type":"incident_types"}}},"type":"incident_notification_rules"}}' + string: '{"data":{"attributes":{"conditions":[{"field":"severity","values":["SEV-1","SEV-2"]}],"enabled":true,"handles":["@test-email@company.com"],"trigger":"incident_created_trigger","visibility":"organization"},"relationships":{"incident_type":{"data":{"id":"a9d0db49-7725-4660-8592-3a356e5383c5","type":"incident_types"}}},"type":"incident_notification_rules"}}' headers: Accept: - application/json @@ -41,43 +41,43 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":{"id":"17df675c-0817-4fbb-ae0e-928a031e84c3","type":"incident_notification_rules","attributes":{"conditions":[{"field":"severity","values":["SEV-1","SEV-2"]}],"created":"2026-01-19T20:16:37.034503217Z","enabled":true,"handles":["@test-email@company.com"],"modified":"2026-01-19T20:16:37.034503217Z","renotify_on":[],"trigger":"incident_created_trigger","visibility":"organization"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"incident_type":{"data":{"id":"7afe8eac-cd45-4acf-926c-a562b2118445","type":"incident_types"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' + string: '{"data":{"id":"9dae0cfb-eb3f-412c-9bf3-a15cfdb1d740","type":"incident_notification_rules","attributes":{"conditions":[{"field":"severity","values":["SEV-1","SEV-2"]}],"created":"2026-02-23T14:07:19.983077747Z","enabled":true,"handles":["@test-email@company.com"],"modified":"2026-02-23T14:07:19.983077747Z","renotify_on":[],"trigger":"incident_created_trigger","visibility":"organization"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"incident_type":{"data":{"id":"a9d0db49-7725-4660-8592-3a356e5383c5","type":"incident_types"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' headers: Content-Type: - application/vnd.api+json status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:16:36 GMT +- recorded_at: Mon, 23 Feb 2026 14:07:19 GMT request: body: encoding: UTF-8 - string: '{"data":{"attributes":{"conditions":[{"field":"severity","values":["SEV-1"]}],"enabled":false,"handles":["@updated-team-email@company.com"],"trigger":"incident_modified_trigger","visibility":"private"},"id":"17df675c-0817-4fbb-ae0e-928a031e84c3","relationships":{"incident_type":{"data":{"id":"7afe8eac-cd45-4acf-926c-a562b2118445","type":"incident_types"}}},"type":"incident_notification_rules"}}' + string: '{"data":{"attributes":{"conditions":[{"field":"severity","values":["SEV-1"]}],"enabled":false,"handles":["@updated-team-email@company.com"],"trigger":"incident_modified_trigger","visibility":"private"},"id":"9dae0cfb-eb3f-412c-9bf3-a15cfdb1d740","relationships":{"incident_type":{"data":{"id":"a9d0db49-7725-4660-8592-3a356e5383c5","type":"incident_types"}}},"type":"incident_notification_rules"}}' headers: Accept: - application/json Content-Type: - application/json method: PUT - uri: https://api.datadoghq.com/api/v2/incidents/config/notification-rules/17df675c-0817-4fbb-ae0e-928a031e84c3 + uri: https://api.datadoghq.com/api/v2/incidents/config/notification-rules/9dae0cfb-eb3f-412c-9bf3-a15cfdb1d740 response: body: encoding: UTF-8 - string: '{"data":{"id":"17df675c-0817-4fbb-ae0e-928a031e84c3","type":"incident_notification_rules","attributes":{"conditions":[{"field":"severity","values":["SEV-1"]}],"created":"2026-01-19T20:16:37.034503Z","enabled":false,"handles":["@updated-team-email@company.com"],"modified":"2026-01-19T20:16:37.193069963Z","renotify_on":[],"trigger":"incident_modified_trigger","visibility":"private"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"incident_type":{"data":{"id":"7afe8eac-cd45-4acf-926c-a562b2118445","type":"incident_types"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' + string: '{"data":{"id":"9dae0cfb-eb3f-412c-9bf3-a15cfdb1d740","type":"incident_notification_rules","attributes":{"conditions":[{"field":"severity","values":["SEV-1"]}],"created":"2026-02-23T14:07:19.983077Z","enabled":false,"handles":["@updated-team-email@company.com"],"modified":"2026-02-23T14:07:20.102856745Z","renotify_on":[],"trigger":"incident_modified_trigger","visibility":"private"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"incident_type":{"data":{"id":"a9d0db49-7725-4660-8592-3a356e5383c5","type":"incident_types"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' headers: Content-Type: - application/vnd.api+json status: code: 200 message: OK -- recorded_at: Mon, 19 Jan 2026 20:16:36 GMT +- recorded_at: Mon, 23 Feb 2026 14:07:19 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/config/notification-rules/17df675c-0817-4fbb-ae0e-928a031e84c3 + uri: https://api.datadoghq.com/api/v2/incidents/config/notification-rules/9dae0cfb-eb3f-412c-9bf3-a15cfdb1d740 response: body: encoding: UTF-8 @@ -86,14 +86,14 @@ http_interactions: status: code: 204 message: No Content -- recorded_at: Mon, 19 Jan 2026 20:16:36 GMT +- recorded_at: Mon, 23 Feb 2026 14:07:19 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/config/types/7afe8eac-cd45-4acf-926c-a562b2118445 + uri: https://api.datadoghq.com/api/v2/incidents/config/types/a9d0db49-7725-4660-8592-3a356e5383c5 response: body: encoding: UTF-8 diff --git a/cassettes/features/v2/incidents/Update-incident-notification-template-returns-Bad-Request-response.frozen b/cassettes/features/v2/incidents/Update-incident-notification-template-returns-Bad-Request-response.frozen index 5992699e1ff2..d4833fb3cb86 100644 --- a/cassettes/features/v2/incidents/Update-incident-notification-template-returns-Bad-Request-response.frozen +++ b/cassettes/features/v2/incidents/Update-incident-notification-template-returns-Bad-Request-response.frozen @@ -1 +1 @@ -2026-01-19T20:16:37.516Z \ No newline at end of file +2026-02-23T14:07:20.331Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/Update-incident-notification-template-returns-Bad-Request-response.yml b/cassettes/features/v2/incidents/Update-incident-notification-template-returns-Bad-Request-response.yml index bac7577d8339..7ebc0d133391 100644 --- a/cassettes/features/v2/incidents/Update-incident-notification-template-returns-Bad-Request-response.yml +++ b/cassettes/features/v2/incidents/Update-incident-notification-template-returns-Bad-Request-response.yml @@ -1,5 +1,5 @@ http_interactions: -- recorded_at: Mon, 19 Jan 2026 20:16:37 GMT +- recorded_at: Mon, 23 Feb 2026 14:07:20 GMT request: body: encoding: UTF-8 diff --git a/cassettes/features/v2/incidents/Update-incident-notification-template-returns-Not-Found-response.frozen b/cassettes/features/v2/incidents/Update-incident-notification-template-returns-Not-Found-response.frozen index ea98c020174c..c973972185dd 100644 --- a/cassettes/features/v2/incidents/Update-incident-notification-template-returns-Not-Found-response.frozen +++ b/cassettes/features/v2/incidents/Update-incident-notification-template-returns-Not-Found-response.frozen @@ -1 +1 @@ -2026-01-19T20:16:37.655Z \ No newline at end of file +2026-02-23T14:07:20.417Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/Update-incident-notification-template-returns-Not-Found-response.yml b/cassettes/features/v2/incidents/Update-incident-notification-template-returns-Not-Found-response.yml index 8ebe4c71d251..83ac800a90c2 100644 --- a/cassettes/features/v2/incidents/Update-incident-notification-template-returns-Not-Found-response.yml +++ b/cassettes/features/v2/incidents/Update-incident-notification-template-returns-Not-Found-response.yml @@ -1,5 +1,5 @@ http_interactions: -- recorded_at: Mon, 19 Jan 2026 20:16:37 GMT +- recorded_at: Mon, 23 Feb 2026 14:07:20 GMT request: body: encoding: UTF-8 diff --git a/cassettes/features/v2/incidents/Update-incident-notification-template-returns-OK-response.frozen b/cassettes/features/v2/incidents/Update-incident-notification-template-returns-OK-response.frozen index 0ef0a0299a19..c1364800611f 100644 --- a/cassettes/features/v2/incidents/Update-incident-notification-template-returns-OK-response.frozen +++ b/cassettes/features/v2/incidents/Update-incident-notification-template-returns-OK-response.frozen @@ -1 +1 @@ -2026-01-19T20:16:37.796Z \ No newline at end of file +2026-02-23T14:07:20.514Z \ No newline at end of file diff --git a/cassettes/features/v2/incidents/Update-incident-notification-template-returns-OK-response.yml b/cassettes/features/v2/incidents/Update-incident-notification-template-returns-OK-response.yml index 885ff76f0b2a..1f5fa700c47e 100644 --- a/cassettes/features/v2/incidents/Update-incident-notification-template-returns-OK-response.yml +++ b/cassettes/features/v2/incidents/Update-incident-notification-template-returns-OK-response.yml @@ -1,5 +1,5 @@ http_interactions: -- recorded_at: Mon, 19 Jan 2026 20:16:37 GMT +- recorded_at: Mon, 23 Feb 2026 14:07:20 GMT request: body: encoding: UTF-8 @@ -16,9 +16,9 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":{"id":"fb3cbdbc-b895-4908-a371-59c908b1bc32","type":"incident_types","attributes":{"createdAt":"2026-01-19T20:16:37.998359579Z","createdBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","description":"Any + string: '{"data":{"id":"cf6591aa-f267-47c2-bf92-3e8ea80b7dd8","type":"incident_types","attributes":{"createdAt":"2026-02-23T14:07:20.623977143Z","createdBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","description":"Any incidents that harm (or have the potential to) the confidentiality, integrity, - or availability of our data.","is_default":false,"lastModifiedBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","modifiedAt":"2026-01-19T20:16:37.998359661Z","name":"Security + or availability of our data.","is_default":false,"lastModifiedBy":"3ad549bf-eba0-11e9-a77a-0705486660d0","modifiedAt":"2026-02-23T14:07:20.623977234Z","name":"Security Incident","prefix":"IR"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"google_chat_configuration":{"data":null},"google_meet_configuration":{"data":null},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"microsoft_teams_configuration":{"data":null},"zoom_configuration":{"data":null}}}}' headers: Content-Type: @@ -26,13 +26,13 @@ http_interactions: status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:16:37 GMT +- recorded_at: Mon, 23 Feb 2026 14:07:20 GMT request: body: encoding: UTF-8 string: '{"data":{"attributes":{"category":"alert","content":"Test notification - template","name":"Test Template Test-Update_incident_notification_template_returns_OK_response-1768853797","subject":"Test - Subject"},"relationships":{"incident_type":{"data":{"id":"fb3cbdbc-b895-4908-a371-59c908b1bc32","type":"incident_types"}}},"type":"notification_templates"}}' + template","name":"Test Template Test-Update_incident_notification_template_returns_OK_response-1771855640","subject":"Test + Subject"},"relationships":{"incident_type":{"data":{"id":"cf6591aa-f267-47c2-bf92-3e8ea80b7dd8","type":"incident_types"}}},"type":"notification_templates"}}' headers: Accept: - application/json @@ -43,54 +43,54 @@ http_interactions: response: body: encoding: UTF-8 - string: '{"data":{"id":"d63957df-91a5-4b74-a571-30cf41c19a10","type":"notification_templates","attributes":{"category":"alert","content":"Test - notification template","created":"2026-01-19T20:16:38.25129Z","modified":"2026-01-19T20:16:38.25129Z","name":"Test - Template Test-Update_incident_notification_template_returns_OK_response-1768853797","subject":"Test - Subject"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"incident_type":{"data":{"id":"fb3cbdbc-b895-4908-a371-59c908b1bc32","type":"incident_types"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' + string: '{"data":{"id":"d23357f8-ead4-48d3-b650-9c15359de3f5","type":"notification_templates","attributes":{"category":"alert","content":"Test + notification template","created":"2026-02-23T14:07:20.907863Z","modified":"2026-02-23T14:07:20.907863Z","name":"Test + Template Test-Update_incident_notification_template_returns_OK_response-1771855640","subject":"Test + Subject"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"incident_type":{"data":{"id":"cf6591aa-f267-47c2-bf92-3e8ea80b7dd8","type":"incident_types"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' headers: Content-Type: - application/vnd.api+json status: code: 201 message: Created -- recorded_at: Mon, 19 Jan 2026 20:16:37 GMT +- recorded_at: Mon, 23 Feb 2026 14:07:20 GMT request: body: encoding: UTF-8 string: '{"data":{"attributes":{"category":"update","content":"Incident Status Update:\n\nTitle: Sample Incident Title\nNew Status: resolved\nSeverity: SEV-2\nServices: web-service, database-service\nCommander: John Doe\n\nFor more details, visit - the incident page.","name":"Test-Update_incident_notification_template_returns_OK_response-1768853797","subject":"Incident - Update: Sample Incident Title - resolved"},"id":"d63957df-91a5-4b74-a571-30cf41c19a10","type":"notification_templates"}}' + the incident page.","name":"Test-Update_incident_notification_template_returns_OK_response-1771855640","subject":"Incident + Update: Sample Incident Title - resolved"},"id":"d23357f8-ead4-48d3-b650-9c15359de3f5","type":"notification_templates"}}' headers: Accept: - application/json Content-Type: - application/json method: PATCH - uri: https://api.datadoghq.com/api/v2/incidents/config/notification-templates/d63957df-91a5-4b74-a571-30cf41c19a10 + uri: https://api.datadoghq.com/api/v2/incidents/config/notification-templates/d23357f8-ead4-48d3-b650-9c15359de3f5 response: body: encoding: UTF-8 - string: '{"data":{"id":"d63957df-91a5-4b74-a571-30cf41c19a10","type":"notification_templates","attributes":{"category":"update","content":"Incident + string: '{"data":{"id":"d23357f8-ead4-48d3-b650-9c15359de3f5","type":"notification_templates","attributes":{"category":"update","content":"Incident Status Update:\n\nTitle: Sample Incident Title\nNew Status: resolved\nSeverity: SEV-2\nServices: web-service, database-service\nCommander: John Doe\n\nFor - more details, visit the incident page.","created":"2026-01-19T20:16:38.25129Z","modified":"2026-01-19T20:16:38.389326Z","name":"Test-Update_incident_notification_template_returns_OK_response-1768853797","subject":"Incident - Update: Sample Incident Title - resolved"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"incident_type":{"data":{"id":"fb3cbdbc-b895-4908-a371-59c908b1bc32","type":"incident_types"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' + more details, visit the incident page.","created":"2026-02-23T14:07:20.907863Z","modified":"2026-02-23T14:07:21.005152Z","name":"Test-Update_incident_notification_template_returns_OK_response-1771855640","subject":"Incident + Update: Sample Incident Title - resolved"},"relationships":{"created_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}},"incident_type":{"data":{"id":"cf6591aa-f267-47c2-bf92-3e8ea80b7dd8","type":"incident_types"}},"last_modified_by_user":{"data":{"id":"3ad549bf-eba0-11e9-a77a-0705486660d0","type":"users"}}}}}' headers: Content-Type: - application/vnd.api+json status: code: 200 message: OK -- recorded_at: Mon, 19 Jan 2026 20:16:37 GMT +- recorded_at: Mon, 23 Feb 2026 14:07:20 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/config/notification-templates/d63957df-91a5-4b74-a571-30cf41c19a10 + uri: https://api.datadoghq.com/api/v2/incidents/config/notification-templates/d23357f8-ead4-48d3-b650-9c15359de3f5 response: body: encoding: UTF-8 @@ -99,14 +99,14 @@ http_interactions: status: code: 204 message: No Content -- recorded_at: Mon, 19 Jan 2026 20:16:37 GMT +- recorded_at: Mon, 23 Feb 2026 14:07:20 GMT request: body: null headers: Accept: - '*/*' method: DELETE - uri: https://api.datadoghq.com/api/v2/incidents/config/types/fb3cbdbc-b895-4908-a371-59c908b1bc32 + uri: https://api.datadoghq.com/api/v2/incidents/config/types/cf6591aa-f267-47c2-bf92-3e8ea80b7dd8 response: body: encoding: UTF-8 diff --git a/cassettes/features/v2/observability_pipelines/Validate-an-observability-pipeline-with-destination-secret-key-returns-OK-response.frozen b/cassettes/features/v2/observability_pipelines/Validate-an-observability-pipeline-with-destination-secret-key-returns-OK-response.frozen new file mode 100644 index 000000000000..ef9137f979ca --- /dev/null +++ b/cassettes/features/v2/observability_pipelines/Validate-an-observability-pipeline-with-destination-secret-key-returns-OK-response.frozen @@ -0,0 +1 @@ +2026-02-20T14:42:05.988Z \ No newline at end of file diff --git a/cassettes/features/v2/observability_pipelines/Validate-an-observability-pipeline-with-destination-secret-key-returns-OK-response.yml b/cassettes/features/v2/observability_pipelines/Validate-an-observability-pipeline-with-destination-secret-key-returns-OK-response.yml new file mode 100644 index 000000000000..b45579798ca1 --- /dev/null +++ b/cassettes/features/v2/observability_pipelines/Validate-an-observability-pipeline-with-destination-secret-key-returns-OK-response.yml @@ -0,0 +1,27 @@ +http_interactions: +- recorded_at: Fri, 20 Feb 2026 14:42:05 GMT + request: + body: + encoding: UTF-8 + string: '{"data":{"attributes":{"config":{"destinations":[{"endpoint_url_key":"SUMO_LOGIC_ENDPOINT_URL","id":"sumo-logic-destination","inputs":["my-processor-group"],"type":"sumo_logic"}],"processor_groups":[{"enabled":true,"id":"my-processor-group","include":"service:my-service","inputs":["datadog-agent-source"],"processors":[{"enabled":true,"id":"filter-processor","include":"status:error","type":"filter"}]}],"sources":[{"id":"datadog-agent-source","type":"datadog_agent"}]},"name":"Pipeline + with Secret Key"},"type":"pipelines"}}' + headers: + Accept: + - application/json + Content-Type: + - application/json + method: POST + uri: https://api.datadoghq.com/api/v2/obs-pipelines/pipelines/validate + response: + body: + encoding: UTF-8 + string: '{"errors":[]} + + ' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +recorded_with: VCR 6.0.0 diff --git a/cassettes/features/v2/observability_pipelines/Validate-an-observability-pipeline-with-source-secret-key-returns-OK-response.frozen b/cassettes/features/v2/observability_pipelines/Validate-an-observability-pipeline-with-source-secret-key-returns-OK-response.frozen new file mode 100644 index 000000000000..5e68c128ac42 --- /dev/null +++ b/cassettes/features/v2/observability_pipelines/Validate-an-observability-pipeline-with-source-secret-key-returns-OK-response.frozen @@ -0,0 +1 @@ +2026-02-20T14:42:32.372Z \ No newline at end of file diff --git a/cassettes/features/v2/observability_pipelines/Validate-an-observability-pipeline-with-source-secret-key-returns-OK-response.yml b/cassettes/features/v2/observability_pipelines/Validate-an-observability-pipeline-with-source-secret-key-returns-OK-response.yml new file mode 100644 index 000000000000..1d83b4d8ef53 --- /dev/null +++ b/cassettes/features/v2/observability_pipelines/Validate-an-observability-pipeline-with-source-secret-key-returns-OK-response.yml @@ -0,0 +1,27 @@ +http_interactions: +- recorded_at: Fri, 20 Feb 2026 14:42:32 GMT + request: + body: + encoding: UTF-8 + string: '{"data":{"attributes":{"config":{"destinations":[{"id":"datadog-logs-destination","inputs":["my-processor-group"],"type":"datadog_logs"}],"processor_groups":[{"enabled":true,"id":"my-processor-group","include":"service:my-service","inputs":["http-client-source"],"processors":[{"enabled":true,"id":"filter-processor","include":"status:error","type":"filter"}]}],"sources":[{"auth_strategy":"bearer","decoding":"bytes","id":"http-client-source","scrape_interval_secs":15,"scrape_timeout_secs":5,"token_key":"HTTP_CLIENT_TOKEN","type":"http_client"}]},"name":"Pipeline + with Source Secret"},"type":"pipelines"}}' + headers: + Accept: + - application/json + Content-Type: + - application/json + method: POST + uri: https://api.datadoghq.com/api/v2/obs-pipelines/pipelines/validate + response: + body: + encoding: UTF-8 + string: '{"errors":[]} + + ' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +recorded_with: VCR 6.0.0 diff --git a/examples/v2/incidents/ImportIncident.rb b/examples/v2/incidents/ImportIncident.rb new file mode 100644 index 000000000000..4d79ec7c9ab1 --- /dev/null +++ b/examples/v2/incidents/ImportIncident.rb @@ -0,0 +1,18 @@ +# Import an incident returns "CREATED" response + +require "datadog_api_client" +DatadogAPIClient.configure do |config| + config.unstable_operations["v2.import_incident".to_sym] = true +end +api_instance = DatadogAPIClient::V2::IncidentsAPI.new + +body = DatadogAPIClient::V2::IncidentImportRequest.new({ + data: DatadogAPIClient::V2::IncidentImportRequestData.new({ + type: DatadogAPIClient::V2::IncidentType::INCIDENTS, + attributes: DatadogAPIClient::V2::IncidentImportRequestAttributes.new({ + title: "Example-Incident", + visibility: DatadogAPIClient::V2::IncidentImportVisibility::ORGANIZATION, + }), + }), +}) +p api_instance.import_incident(body) diff --git a/examples/v2/observability-pipelines/ValidatePipeline_1330454428.rb b/examples/v2/observability-pipelines/ValidatePipeline_1330454428.rb new file mode 100644 index 000000000000..a6bb2d3e49df --- /dev/null +++ b/examples/v2/observability-pipelines/ValidatePipeline_1330454428.rb @@ -0,0 +1,50 @@ +# Validate an observability pipeline with destination secret key returns "OK" response + +require "datadog_api_client" +api_instance = DatadogAPIClient::V2::ObservabilityPipelinesAPI.new + +body = DatadogAPIClient::V2::ObservabilityPipelineSpec.new({ + data: DatadogAPIClient::V2::ObservabilityPipelineSpecData.new({ + attributes: DatadogAPIClient::V2::ObservabilityPipelineDataAttributes.new({ + config: DatadogAPIClient::V2::ObservabilityPipelineConfig.new({ + destinations: [ + DatadogAPIClient::V2::ObservabilityPipelineSumoLogicDestination.new({ + id: "sumo-logic-destination", + inputs: [ + "my-processor-group", + ], + type: DatadogAPIClient::V2::ObservabilityPipelineSumoLogicDestinationType::SUMO_LOGIC, + endpoint_url_key: "SUMO_LOGIC_ENDPOINT_URL", + }), + ], + processor_groups: [ + DatadogAPIClient::V2::ObservabilityPipelineConfigProcessorGroup.new({ + enabled: true, + id: "my-processor-group", + include: "service:my-service", + inputs: [ + "datadog-agent-source", + ], + processors: [ + DatadogAPIClient::V2::ObservabilityPipelineFilterProcessor.new({ + enabled: true, + id: "filter-processor", + include: "status:error", + type: DatadogAPIClient::V2::ObservabilityPipelineFilterProcessorType::FILTER, + }), + ], + }), + ], + sources: [ + DatadogAPIClient::V2::ObservabilityPipelineDatadogAgentSource.new({ + id: "datadog-agent-source", + type: DatadogAPIClient::V2::ObservabilityPipelineDatadogAgentSourceType::DATADOG_AGENT, + }), + ], + }), + name: "Pipeline with Secret Key", + }), + type: "pipelines", + }), +}) +p api_instance.validate_pipeline(body) diff --git a/examples/v2/observability-pipelines/ValidatePipeline_2899320203.rb b/examples/v2/observability-pipelines/ValidatePipeline_2899320203.rb new file mode 100644 index 000000000000..696237cbaa25 --- /dev/null +++ b/examples/v2/observability-pipelines/ValidatePipeline_2899320203.rb @@ -0,0 +1,54 @@ +# Validate an observability pipeline with source secret key returns "OK" response + +require "datadog_api_client" +api_instance = DatadogAPIClient::V2::ObservabilityPipelinesAPI.new + +body = DatadogAPIClient::V2::ObservabilityPipelineSpec.new({ + data: DatadogAPIClient::V2::ObservabilityPipelineSpecData.new({ + attributes: DatadogAPIClient::V2::ObservabilityPipelineDataAttributes.new({ + config: DatadogAPIClient::V2::ObservabilityPipelineConfig.new({ + destinations: [ + DatadogAPIClient::V2::ObservabilityPipelineDatadogLogsDestination.new({ + id: "datadog-logs-destination", + inputs: [ + "my-processor-group", + ], + type: DatadogAPIClient::V2::ObservabilityPipelineDatadogLogsDestinationType::DATADOG_LOGS, + }), + ], + processor_groups: [ + DatadogAPIClient::V2::ObservabilityPipelineConfigProcessorGroup.new({ + enabled: true, + id: "my-processor-group", + include: "service:my-service", + inputs: [ + "http-client-source", + ], + processors: [ + DatadogAPIClient::V2::ObservabilityPipelineFilterProcessor.new({ + enabled: true, + id: "filter-processor", + include: "status:error", + type: DatadogAPIClient::V2::ObservabilityPipelineFilterProcessorType::FILTER, + }), + ], + }), + ], + sources: [ + DatadogAPIClient::V2::ObservabilityPipelineHttpClientSource.new({ + id: "http-client-source", + type: DatadogAPIClient::V2::ObservabilityPipelineHttpClientSourceType::HTTP_CLIENT, + decoding: DatadogAPIClient::V2::ObservabilityPipelineDecoding::DECODE_BYTES, + scrape_interval_secs: 15, + scrape_timeout_secs: 5, + auth_strategy: DatadogAPIClient::V2::ObservabilityPipelineHttpClientSourceAuthStrategy::BEARER, + token_key: "HTTP_CLIENT_TOKEN", + }), + ], + }), + name: "Pipeline with Source Secret", + }), + type: "pipelines", + }), +}) +p api_instance.validate_pipeline(body) diff --git a/features/scenarios_model_mapping.rb b/features/scenarios_model_mapping.rb index 50419b5d6202..cba0763550fb 100644 --- a/features/scenarios_model_mapping.rb +++ b/features/scenarios_model_mapping.rb @@ -2240,6 +2240,10 @@ "incident_type_id" => "String", "body" => "IncidentTypePatchRequest", }, + "v2.ImportIncident" => { + "include" => "Array", + "body" => "IncidentImportRequest", + }, "v2.SearchIncidents" => { "include" => "IncidentRelatedObject", "query" => "String", diff --git a/features/v2/incidents.feature b/features/v2/incidents.feature index a683c2cac140..8b804137aff6 100644 --- a/features/v2/incidents.feature +++ b/features/v2/incidents.feature @@ -901,6 +901,32 @@ Feature: Incidents Then the response status is 200 OK And the response "data.attributes.title" has the same value as "incident.data.attributes.title" + @generated @skip @team:DataDog/incident-app + Scenario: Import an incident returns "Bad Request" response + Given operation "ImportIncident" enabled + And new "ImportIncident" request + And body with value {"data": {"attributes": {"declared": "2025-01-01T00:00:00Z", "detected": "2025-01-01T00:00:00Z", "fields": {"severity": {"value": "SEV-5"}, "state": {"value": "active"}}, "incident_type_uuid": "00000000-0000-0000-0000-000000000000", "resolved": "2025-01-01T01:00:00Z", "title": "Imported incident from external system", "visibility": "organization"}, "relationships": {"commander_user": {"data": {"id": "00000000-0000-0000-0000-000000000000", "type": "users"}}, "declared_by_user": {"data": {"id": "00000000-0000-0000-0000-000000000000", "type": "users"}}}, "type": "incidents"}} + When the request is sent + Then the response status is 400 Bad Request + + @team:DataDog/incident-app + Scenario: Import an incident returns "CREATED" response + Given operation "ImportIncident" enabled + And new "ImportIncident" request + And body with value {"data": {"type": "incidents", "attributes": {"title": "{{unique}}", "visibility": "organization"}}} + When the request is sent + Then the response status is 201 CREATED + And the response "data.type" is equal to "incidents" + And the response "data.attributes.title" has the same value as "unique" + + @generated @skip @team:DataDog/incident-app + Scenario: Import an incident returns "Not Found" response + Given operation "ImportIncident" enabled + And new "ImportIncident" request + And body with value {"data": {"attributes": {"declared": "2025-01-01T00:00:00Z", "detected": "2025-01-01T00:00:00Z", "fields": {"severity": {"value": "SEV-5"}, "state": {"value": "active"}}, "incident_type_uuid": "00000000-0000-0000-0000-000000000000", "resolved": "2025-01-01T01:00:00Z", "title": "Imported incident from external system", "visibility": "organization"}, "relationships": {"commander_user": {"data": {"id": "00000000-0000-0000-0000-000000000000", "type": "users"}}, "declared_by_user": {"data": {"id": "00000000-0000-0000-0000-000000000000", "type": "users"}}}, "type": "incidents"}} + When the request is sent + Then the response status is 404 Not Found + @generated @skip @team:DataDog/incident-app Scenario: List an incident's impacts returns "Bad Request" response Given new "ListIncidentImpacts" request diff --git a/features/v2/monitors.feature b/features/v2/monitors.feature index e84062637c1a..b1bb50a8dbf3 100644 --- a/features/v2/monitors.feature +++ b/features/v2/monitors.feature @@ -241,7 +241,10 @@ Feature: Monitors And operation "ListMonitorUserTemplates" enabled When the request is sent Then the response status is 200 OK - And the response "data" has length 1 + And the response "data" has item with field "type" with value "monitor-user-template" + And the response "data" has item with field "id" with value "{{ monitor_user_template.data.id }}" + And the response "data" has item with field "attributes.description" with value "It's a threshold" + And the response "data" has item with field "attributes.monitor_definition.message" with value "cats" @skip-validation @team:DataDog/monitor-app Scenario: Update a monitor notification rule returns "Bad Request" response diff --git a/features/v2/observability_pipelines.feature b/features/v2/observability_pipelines.feature index b5c685768059..bf90c06c1399 100644 --- a/features/v2/observability_pipelines.feature +++ b/features/v2/observability_pipelines.feature @@ -190,3 +190,19 @@ Feature: Observability Pipelines When the request is sent Then the response status is 200 OK And the response "errors" has length 0 + + @team:DataDog/observability-pipelines + Scenario: Validate an observability pipeline with destination secret key returns "OK" response + Given new "ValidatePipeline" request + And body with value {"data": {"attributes": {"config": {"destinations": [{"id": "sumo-logic-destination", "inputs": ["my-processor-group"], "type": "sumo_logic", "endpoint_url_key": "SUMO_LOGIC_ENDPOINT_URL"}], "processor_groups": [{"enabled": true, "id": "my-processor-group", "include": "service:my-service", "inputs": ["datadog-agent-source"], "processors": [{"enabled": true, "id": "filter-processor", "include": "status:error", "type": "filter"}]}], "sources": [{"id": "datadog-agent-source", "type": "datadog_agent"}]}, "name": "Pipeline with Secret Key"}, "type": "pipelines"}} + When the request is sent + Then the response status is 200 OK + And the response "errors" has length 0 + + @team:DataDog/observability-pipelines + Scenario: Validate an observability pipeline with source secret key returns "OK" response + Given new "ValidatePipeline" request + And body with value {"data": {"attributes": {"config": {"destinations": [{"id": "datadog-logs-destination", "inputs": ["my-processor-group"], "type": "datadog_logs"}], "processor_groups": [{"enabled": true, "id": "my-processor-group", "include": "service:my-service", "inputs": ["http-client-source"], "processors": [{"enabled": true, "id": "filter-processor", "include": "status:error", "type": "filter"}]}], "sources": [{"id": "http-client-source", "type": "http_client", "decoding": "bytes", "scrape_interval_secs": 15, "scrape_timeout_secs": 5, "auth_strategy": "bearer", "token_key": "HTTP_CLIENT_TOKEN"}]}, "name": "Pipeline with Source Secret"}, "type": "pipelines"}} + When the request is sent + Then the response status is 200 OK + And the response "errors" has length 0 diff --git a/features/v2/undo.json b/features/v2/undo.json index ec42a6bbb0e1..6bcb5be0aecb 100644 --- a/features/v2/undo.json +++ b/features/v2/undo.json @@ -1943,6 +1943,19 @@ "type": "idempotent" } }, + "ImportIncident": { + "tag": "Incidents", + "undo": { + "operationId": "DeleteIncident", + "parameters": [ + { + "name": "incident_id", + "source": "data.id" + } + ], + "type": "unsafe" + } + }, "SearchIncidents": { "tag": "Incidents", "undo": { diff --git a/lib/datadog_api_client/configuration.rb b/lib/datadog_api_client/configuration.rb index b4596bb39feb..93efe2688a3c 100644 --- a/lib/datadog_api_client/configuration.rb +++ b/lib/datadog_api_client/configuration.rb @@ -292,6 +292,7 @@ def initialize "v2.get_incident_postmortem_template": false, "v2.get_incident_todo": false, "v2.get_incident_type": false, + "v2.import_incident": false, "v2.list_global_incident_handles": false, "v2.list_incident_attachments": false, "v2.list_incident_integrations": false, diff --git a/lib/datadog_api_client/inflector.rb b/lib/datadog_api_client/inflector.rb index 789d7c3af68f..938494f8610d 100644 --- a/lib/datadog_api_client/inflector.rb +++ b/lib/datadog_api_client/inflector.rb @@ -2793,6 +2793,20 @@ def overrides "v2.incident_impacts_response" => "IncidentImpactsResponse", "v2.incident_impacts_type" => "IncidentImpactsType", "v2.incident_impact_type" => "IncidentImpactType", + "v2.incident_import_field_attributes" => "IncidentImportFieldAttributes", + "v2.incident_import_field_attributes_multiple_value" => "IncidentImportFieldAttributesMultipleValue", + "v2.incident_import_field_attributes_single_value" => "IncidentImportFieldAttributesSingleValue", + "v2.incident_import_related_object" => "IncidentImportRelatedObject", + "v2.incident_import_relationships" => "IncidentImportRelationships", + "v2.incident_import_request" => "IncidentImportRequest", + "v2.incident_import_request_attributes" => "IncidentImportRequestAttributes", + "v2.incident_import_request_data" => "IncidentImportRequestData", + "v2.incident_import_response" => "IncidentImportResponse", + "v2.incident_import_response_attributes" => "IncidentImportResponseAttributes", + "v2.incident_import_response_data" => "IncidentImportResponseData", + "v2.incident_import_response_included_item" => "IncidentImportResponseIncludedItem", + "v2.incident_import_response_relationships" => "IncidentImportResponseRelationships", + "v2.incident_import_visibility" => "IncidentImportVisibility", "v2.incident_integration_metadata_attributes" => "IncidentIntegrationMetadataAttributes", "v2.incident_integration_metadata_create_data" => "IncidentIntegrationMetadataCreateData", "v2.incident_integration_metadata_create_request" => "IncidentIntegrationMetadataCreateRequest", @@ -3514,6 +3528,7 @@ def overrides "v2.observability_pipeline_disk_buffer_options" => "ObservabilityPipelineDiskBufferOptions", "v2.observability_pipeline_elasticsearch_destination" => "ObservabilityPipelineElasticsearchDestination", "v2.observability_pipeline_elasticsearch_destination_api_version" => "ObservabilityPipelineElasticsearchDestinationApiVersion", + "v2.observability_pipeline_elasticsearch_destination_auth" => "ObservabilityPipelineElasticsearchDestinationAuth", "v2.observability_pipeline_elasticsearch_destination_data_stream" => "ObservabilityPipelineElasticsearchDestinationDataStream", "v2.observability_pipeline_elasticsearch_destination_type" => "ObservabilityPipelineElasticsearchDestinationType", "v2.observability_pipeline_enrichment_table_file" => "ObservabilityPipelineEnrichmentTableFile", diff --git a/lib/datadog_api_client/v2/api/incidents_api.rb b/lib/datadog_api_client/v2/api/incidents_api.rb index 5f2fec4b9061..98f50a4e6594 100644 --- a/lib/datadog_api_client/v2/api/incidents_api.rb +++ b/lib/datadog_api_client/v2/api/incidents_api.rb @@ -2154,6 +2154,83 @@ def get_incident_type_with_http_info(incident_type_id, opts = {}) return data, status_code, headers end + # Import an incident. + # + # @see #import_incident_with_http_info + def import_incident(body, opts = {}) + data, _status_code, _headers = import_incident_with_http_info(body, opts) + data + end + + # Import an incident. + # + # Import an incident from an external system. This endpoint allows you to create incidents with + # historical data such as custom timestamps for detection, declaration, and resolution. + # Imported incidents do not execute integrations or notification rules. + # + # @param body [IncidentImportRequest] Incident import payload. + # @param opts [Hash] the optional parameters + # @option opts [Array] :include Specifies which related object types to include in the response when importing an incident. + # @return [Array<(IncidentImportResponse, Integer, Hash)>] IncidentImportResponse data, response status code and response headers + def import_incident_with_http_info(body, opts = {}) + unstable_enabled = @api_client.config.unstable_operations["v2.import_incident".to_sym] + if unstable_enabled + @api_client.config.logger.warn format("Using unstable operation '%s'", "v2.import_incident") + else + raise DatadogAPIClient::APIError.new(message: format("Unstable operation '%s' is disabled", "v2.import_incident")) + end + + if @api_client.config.debugging + @api_client.config.logger.debug 'Calling API: IncidentsAPI.import_incident ...' + end + # verify the required parameter 'body' is set + if @api_client.config.client_side_validation && body.nil? + fail ArgumentError, "Missing the required parameter 'body' when calling IncidentsAPI.import_incident" + end + # resource path + local_var_path = '/api/v2/incidents/import' + + # query parameters + query_params = opts[:query_params] || {} + query_params[:'include'] = @api_client.build_collection_param(opts[:'include'], :csv) if !opts[:'include'].nil? + + # header parameters + header_params = opts[:header_params] || {} + # HTTP header 'Accept' (if needed) + header_params['Accept'] = @api_client.select_header_accept(['application/json']) + # HTTP header 'Content-Type' + header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) + + # form parameters + form_params = opts[:form_params] || {} + + # http body (model) + post_body = opts[:debug_body] || @api_client.object_to_http_body(body) + + # return_type + return_type = opts[:debug_return_type] || 'IncidentImportResponse' + + # auth_names + auth_names = opts[:debug_auth_names] || [:apiKeyAuth, :appKeyAuth, :AuthZ] + + new_options = opts.merge( + :operation => :import_incident, + :header_params => header_params, + :query_params => query_params, + :form_params => form_params, + :body => post_body, + :auth_names => auth_names, + :return_type => return_type, + :api_version => "V2" + ) + + data, status_code, headers = @api_client.call_api(Net::HTTP::Post, local_var_path, new_options) + if @api_client.config.debugging + @api_client.config.logger.debug "API called: IncidentsAPI#import_incident\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" + end + return data, status_code, headers + end + # List global incident handles. # # @see #list_global_incident_handles_with_http_info diff --git a/lib/datadog_api_client/v2/models/azure_storage_destination.rb b/lib/datadog_api_client/v2/models/azure_storage_destination.rb index 7d5d83703f2f..10c15612ecca 100644 --- a/lib/datadog_api_client/v2/models/azure_storage_destination.rb +++ b/lib/datadog_api_client/v2/models/azure_storage_destination.rb @@ -29,6 +29,9 @@ class AzureStorageDestination # Configuration for buffer settings on destination components. attr_accessor :buffer + # Name of the environment variable or secret that holds the Azure Storage connection string. + attr_accessor :connection_string_key + # The name of the Azure Blob Storage container to store logs in. attr_reader :container_name @@ -49,6 +52,7 @@ def self.attribute_map { :'blob_prefix' => :'blob_prefix', :'buffer' => :'buffer', + :'connection_string_key' => :'connection_string_key', :'container_name' => :'container_name', :'id' => :'id', :'inputs' => :'inputs', @@ -62,6 +66,7 @@ def self.openapi_types { :'blob_prefix' => :'String', :'buffer' => :'ObservabilityPipelineBufferOptions', + :'connection_string_key' => :'String', :'container_name' => :'String', :'id' => :'String', :'inputs' => :'Array', @@ -95,6 +100,10 @@ def initialize(attributes = {}) self.buffer = attributes[:'buffer'] end + if attributes.key?(:'connection_string_key') + self.connection_string_key = attributes[:'connection_string_key'] + end + if attributes.key?(:'container_name') self.container_name = attributes[:'container_name'] end @@ -193,6 +202,7 @@ def ==(o) self.class == o.class && blob_prefix == o.blob_prefix && buffer == o.buffer && + connection_string_key == o.connection_string_key && container_name == o.container_name && id == o.id && inputs == o.inputs && @@ -204,7 +214,7 @@ def ==(o) # @return [Integer] Hash code # @!visibility private def hash - [blob_prefix, buffer, container_name, id, inputs, type, additional_properties].hash + [blob_prefix, buffer, connection_string_key, container_name, id, inputs, type, additional_properties].hash end end end diff --git a/lib/datadog_api_client/v2/models/incident_import_field_attributes.rb b/lib/datadog_api_client/v2/models/incident_import_field_attributes.rb new file mode 100644 index 000000000000..d3843dc8cc46 --- /dev/null +++ b/lib/datadog_api_client/v2/models/incident_import_field_attributes.rb @@ -0,0 +1,63 @@ +=begin +#Datadog API V2 Collection + +#Collection of all Datadog Public endpoints. + +The version of the OpenAPI document: 1.0 +Contact: support@datadoghq.com +Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator + + Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License. + This product includes software developed at Datadog (https://www.datadoghq.com/). + Copyright 2020-Present Datadog, Inc. + +=end + +require 'date' +require 'time' + +module DatadogAPIClient::V2 + # Dynamic fields for which selections can be made, with field names as keys. + module IncidentImportFieldAttributes + class << self + include BaseOneOfModel + include BaseOneOfModelNoDiscriminator + + # List of class defined in oneOf (OpenAPI v3) + def openapi_one_of + [ + :'IncidentImportFieldAttributesSingleValue', + :'IncidentImportFieldAttributesMultipleValue' + ] + end + # Builds the object + # @param data [Mixed] Data to be matched against the list of oneOf items + # @return [Object] Returns the model or the data itself + def build(data) + # Go through the list of oneOf items and attempt to identify the appropriate one. + # Note: + # - We do not attempt to check whether exactly one item matches. + # - No advanced validation of types in some cases (e.g. "x: { type: string }" will happily match { x: 123 }) + # due to the way the deserialization is made in the base_object template (it just casts without verifying). + # - TODO: scalar values are de facto behaving as if they were nullable. + # - TODO: logging when debugging is set. + openapi_one_of.each do |klass| + begin + next if klass == :AnyType # "nullable: true" + typed_data = find_and_cast_into_type(klass, data) + next if typed_data.respond_to?(:_unparsed) && typed_data._unparsed + return typed_data if typed_data + rescue # rescue all errors so we keep iterating even if the current item lookup raises + end + end + + if openapi_one_of.include?(:AnyType) + data + else + self._unparsed = true + DatadogAPIClient::UnparsedObject.new(data) + end + end + end + end +end diff --git a/lib/datadog_api_client/v2/models/incident_import_field_attributes_multiple_value.rb b/lib/datadog_api_client/v2/models/incident_import_field_attributes_multiple_value.rb new file mode 100644 index 000000000000..1c4d82ccb662 --- /dev/null +++ b/lib/datadog_api_client/v2/models/incident_import_field_attributes_multiple_value.rb @@ -0,0 +1,90 @@ +=begin +#Datadog API V2 Collection + +#Collection of all Datadog Public endpoints. + +The version of the OpenAPI document: 1.0 +Contact: support@datadoghq.com +Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator + + Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License. + This product includes software developed at Datadog (https://www.datadoghq.com/). + Copyright 2020-Present Datadog, Inc. + +=end + +require 'date' +require 'time' + +module DatadogAPIClient::V2 + # A field with potentially multiple values selected. + class IncidentImportFieldAttributesMultipleValue + include BaseGenericModel + + # The multiple values selected for this field. + attr_accessor :value + + # Attribute mapping from ruby-style variable name to JSON key. + # @!visibility private + def self.attribute_map + { + :'value' => :'value' + } + end + + # Attribute type mapping. + # @!visibility private + def self.openapi_types + { + :'value' => :'Array' + } + end + + # List of attributes with nullable: true + # @!visibility private + def self.openapi_nullable + Set.new([ + :'value', + ]) + end + + # Initializes the object + # @param attributes [Hash] Model attributes in the form of hash + # @!visibility private + def initialize(attributes = {}) + if (!attributes.is_a?(Hash)) + fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V2::IncidentImportFieldAttributesMultipleValue` initialize method" + end + + # check to see if the attribute exists and convert string to symbol for hash key + attributes = attributes.each_with_object({}) { |(k, v), h| + if (!self.class.attribute_map.key?(k.to_sym)) + fail ArgumentError, "`#{k}` is not a valid attribute in `DatadogAPIClient::V2::IncidentImportFieldAttributesMultipleValue`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect + end + h[k.to_sym] = v + } + + if attributes.key?(:'value') + if (value = attributes[:'value']).is_a?(Array) + self.value = value + end + end + end + + # Checks equality by comparing each attribute. + # @param o [Object] Object to be compared + # @!visibility private + def ==(o) + return true if self.equal?(o) + self.class == o.class && + value == o.value + end + + # Calculates hash code according to all attributes. + # @return [Integer] Hash code + # @!visibility private + def hash + [value].hash + end + end +end diff --git a/lib/datadog_api_client/v2/models/incident_import_field_attributes_single_value.rb b/lib/datadog_api_client/v2/models/incident_import_field_attributes_single_value.rb new file mode 100644 index 000000000000..11fb91ea498e --- /dev/null +++ b/lib/datadog_api_client/v2/models/incident_import_field_attributes_single_value.rb @@ -0,0 +1,88 @@ +=begin +#Datadog API V2 Collection + +#Collection of all Datadog Public endpoints. + +The version of the OpenAPI document: 1.0 +Contact: support@datadoghq.com +Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator + + Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License. + This product includes software developed at Datadog (https://www.datadoghq.com/). + Copyright 2020-Present Datadog, Inc. + +=end + +require 'date' +require 'time' + +module DatadogAPIClient::V2 + # A field with a single value selected. + class IncidentImportFieldAttributesSingleValue + include BaseGenericModel + + # The single value selected for this field. + attr_accessor :value + + # Attribute mapping from ruby-style variable name to JSON key. + # @!visibility private + def self.attribute_map + { + :'value' => :'value' + } + end + + # Attribute type mapping. + # @!visibility private + def self.openapi_types + { + :'value' => :'String' + } + end + + # List of attributes with nullable: true + # @!visibility private + def self.openapi_nullable + Set.new([ + :'value', + ]) + end + + # Initializes the object + # @param attributes [Hash] Model attributes in the form of hash + # @!visibility private + def initialize(attributes = {}) + if (!attributes.is_a?(Hash)) + fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V2::IncidentImportFieldAttributesSingleValue` initialize method" + end + + # check to see if the attribute exists and convert string to symbol for hash key + attributes = attributes.each_with_object({}) { |(k, v), h| + if (!self.class.attribute_map.key?(k.to_sym)) + fail ArgumentError, "`#{k}` is not a valid attribute in `DatadogAPIClient::V2::IncidentImportFieldAttributesSingleValue`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect + end + h[k.to_sym] = v + } + + if attributes.key?(:'value') + self.value = attributes[:'value'] + end + end + + # Checks equality by comparing each attribute. + # @param o [Object] Object to be compared + # @!visibility private + def ==(o) + return true if self.equal?(o) + self.class == o.class && + value == o.value + end + + # Calculates hash code according to all attributes. + # @return [Integer] Hash code + # @!visibility private + def hash + [value].hash + end + end +end diff --git a/lib/datadog_api_client/v2/models/incident_import_related_object.rb b/lib/datadog_api_client/v2/models/incident_import_related_object.rb new file mode 100644 index 000000000000..aab5eb243b75 --- /dev/null +++ b/lib/datadog_api_client/v2/models/incident_import_related_object.rb @@ -0,0 +1,30 @@ +=begin +#Datadog API V2 Collection + +#Collection of all Datadog Public endpoints. + +The version of the OpenAPI document: 1.0 +Contact: support@datadoghq.com +Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator + + Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License. + This product includes software developed at Datadog (https://www.datadoghq.com/). + Copyright 2020-Present Datadog, Inc. + +=end + +require 'date' +require 'time' + +module DatadogAPIClient::V2 + # Object related to an incident that can be included in the response. + class IncidentImportRelatedObject + include BaseEnumModel + + LAST_MODIFIED_BY_USER = "last_modified_by_user".freeze + CREATED_BY_USER = "created_by_user".freeze + COMMANDER_USER = "commander_user".freeze + DECLARED_BY_USER = "declared_by_user".freeze + INCIDENT_TYPE = "incident_type".freeze + end +end diff --git a/lib/datadog_api_client/v2/models/incident_import_relationships.rb b/lib/datadog_api_client/v2/models/incident_import_relationships.rb new file mode 100644 index 000000000000..0f5e9ddfb12b --- /dev/null +++ b/lib/datadog_api_client/v2/models/incident_import_relationships.rb @@ -0,0 +1,124 @@ +=begin +#Datadog API V2 Collection + +#Collection of all Datadog Public endpoints. + +The version of the OpenAPI document: 1.0 +Contact: support@datadoghq.com +Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator + + Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License. + This product includes software developed at Datadog (https://www.datadoghq.com/). + Copyright 2020-Present Datadog, Inc. + +=end + +require 'date' +require 'time' + +module DatadogAPIClient::V2 + # The relationships for an incident import request. + class IncidentImportRelationships + include BaseGenericModel + + # Relationship to user. + attr_accessor :commander_user + + # Relationship to user. + attr_accessor :declared_by_user + + attr_accessor :additional_properties + + # Attribute mapping from ruby-style variable name to JSON key. + # @!visibility private + def self.attribute_map + { + :'commander_user' => :'commander_user', + :'declared_by_user' => :'declared_by_user' + } + end + + # Attribute type mapping. + # @!visibility private + def self.openapi_types + { + :'commander_user' => :'NullableRelationshipToUser', + :'declared_by_user' => :'NullableRelationshipToUser' + } + end + + # List of attributes with nullable: true + # @!visibility private + def self.openapi_nullable + Set.new([ + :'commander_user', + :'declared_by_user', + ]) + end + + # Initializes the object + # @param attributes [Hash] Model attributes in the form of hash + # @!visibility private + def initialize(attributes = {}) + if (!attributes.is_a?(Hash)) + fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V2::IncidentImportRelationships` initialize method" + end + + self.additional_properties = {} + # check to see if the attribute exists and convert string to symbol for hash key + attributes = attributes.each_with_object({}) { |(k, v), h| + if (!self.class.attribute_map.key?(k.to_sym)) + self.additional_properties[k.to_sym] = v + else + h[k.to_sym] = v + end + } + + if attributes.key?(:'commander_user') + self.commander_user = attributes[:'commander_user'] + end + + if attributes.key?(:'declared_by_user') + self.declared_by_user = attributes[:'declared_by_user'] + end + end + + # Returns the object in the form of hash, with additionalProperties support. + # @return [Hash] Returns the object in the form of hash + # @!visibility private + def to_hash + hash = {} + self.class.attribute_map.each_pair do |attr, param| + value = self.send(attr) + if value.nil? + is_nullable = self.class.openapi_nullable.include?(attr) + next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}")) + end + + hash[param] = _to_hash(value) + end + self.additional_properties.each_pair do |attr, value| + hash[attr] = value + end + hash + end + + # Checks equality by comparing each attribute. + # @param o [Object] Object to be compared + # @!visibility private + def ==(o) + return true if self.equal?(o) + self.class == o.class && + commander_user == o.commander_user && + declared_by_user == o.declared_by_user && + additional_properties == o.additional_properties + end + + # Calculates hash code according to all attributes. + # @return [Integer] Hash code + # @!visibility private + def hash + [commander_user, declared_by_user, additional_properties].hash + end + end +end diff --git a/lib/datadog_api_client/v2/models/incident_import_request.rb b/lib/datadog_api_client/v2/models/incident_import_request.rb new file mode 100644 index 000000000000..6ab6d1ff86a9 --- /dev/null +++ b/lib/datadog_api_client/v2/models/incident_import_request.rb @@ -0,0 +1,123 @@ +=begin +#Datadog API V2 Collection + +#Collection of all Datadog Public endpoints. + +The version of the OpenAPI document: 1.0 +Contact: support@datadoghq.com +Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator + + Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License. + This product includes software developed at Datadog (https://www.datadoghq.com/). + Copyright 2020-Present Datadog, Inc. + +=end + +require 'date' +require 'time' + +module DatadogAPIClient::V2 + # Import request for an incident. Used to import historical incidents from external systems. + class IncidentImportRequest + include BaseGenericModel + + # Incident data for an import request. + attr_reader :data + + attr_accessor :additional_properties + + # Attribute mapping from ruby-style variable name to JSON key. + # @!visibility private + def self.attribute_map + { + :'data' => :'data' + } + end + + # Attribute type mapping. + # @!visibility private + def self.openapi_types + { + :'data' => :'IncidentImportRequestData' + } + end + + # Initializes the object + # @param attributes [Hash] Model attributes in the form of hash + # @!visibility private + def initialize(attributes = {}) + if (!attributes.is_a?(Hash)) + fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V2::IncidentImportRequest` initialize method" + end + + self.additional_properties = {} + # check to see if the attribute exists and convert string to symbol for hash key + attributes = attributes.each_with_object({}) { |(k, v), h| + if (!self.class.attribute_map.key?(k.to_sym)) + self.additional_properties[k.to_sym] = v + else + h[k.to_sym] = v + end + } + + if attributes.key?(:'data') + self.data = attributes[:'data'] + end + end + + # Check to see if the all the properties in the model are valid + # @return true if the model is valid + # @!visibility private + def valid? + return false if @data.nil? + true + end + + # Custom attribute writer method with validation + # @param data [Object] Object to be assigned + # @!visibility private + def data=(data) + if data.nil? + fail ArgumentError, 'invalid value for "data", data cannot be nil.' + end + @data = data + end + + # Returns the object in the form of hash, with additionalProperties support. + # @return [Hash] Returns the object in the form of hash + # @!visibility private + def to_hash + hash = {} + self.class.attribute_map.each_pair do |attr, param| + value = self.send(attr) + if value.nil? + is_nullable = self.class.openapi_nullable.include?(attr) + next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}")) + end + + hash[param] = _to_hash(value) + end + self.additional_properties.each_pair do |attr, value| + hash[attr] = value + end + hash + end + + # Checks equality by comparing each attribute. + # @param o [Object] Object to be compared + # @!visibility private + def ==(o) + return true if self.equal?(o) + self.class == o.class && + data == o.data && + additional_properties == o.additional_properties + end + + # Calculates hash code according to all attributes. + # @return [Integer] Hash code + # @!visibility private + def hash + [data, additional_properties].hash + end + end +end diff --git a/lib/datadog_api_client/v2/models/incident_import_request_attributes.rb b/lib/datadog_api_client/v2/models/incident_import_request_attributes.rb new file mode 100644 index 000000000000..398defc4ac7b --- /dev/null +++ b/lib/datadog_api_client/v2/models/incident_import_request_attributes.rb @@ -0,0 +1,187 @@ +=begin +#Datadog API V2 Collection + +#Collection of all Datadog Public endpoints. + +The version of the OpenAPI document: 1.0 +Contact: support@datadoghq.com +Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator + + Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License. + This product includes software developed at Datadog (https://www.datadoghq.com/). + Copyright 2020-Present Datadog, Inc. + +=end + +require 'date' +require 'time' + +module DatadogAPIClient::V2 + # The incident's attributes for an import request. + class IncidentImportRequestAttributes + include BaseGenericModel + + # Timestamp when the incident was declared. + attr_accessor :declared + + # Timestamp when the incident was detected. + attr_accessor :detected + + # A condensed view of the user-defined fields for which to create initial selections. + attr_accessor :fields + + # A unique identifier that represents the incident type. If not provided, the default incident type is used. + attr_accessor :incident_type_uuid + + # Timestamp when the incident was resolved. Can only be set when the state field is set to 'resolved'. + attr_accessor :resolved + + # The title of the incident that summarizes what happened. + attr_reader :title + + # The visibility of the incident. + attr_accessor :visibility + + attr_accessor :additional_properties + + # Attribute mapping from ruby-style variable name to JSON key. + # @!visibility private + def self.attribute_map + { + :'declared' => :'declared', + :'detected' => :'detected', + :'fields' => :'fields', + :'incident_type_uuid' => :'incident_type_uuid', + :'resolved' => :'resolved', + :'title' => :'title', + :'visibility' => :'visibility' + } + end + + # Attribute type mapping. + # @!visibility private + def self.openapi_types + { + :'declared' => :'Time', + :'detected' => :'Time', + :'fields' => :'Hash', + :'incident_type_uuid' => :'String', + :'resolved' => :'Time', + :'title' => :'String', + :'visibility' => :'IncidentImportVisibility' + } + end + + # Initializes the object + # @param attributes [Hash] Model attributes in the form of hash + # @!visibility private + def initialize(attributes = {}) + if (!attributes.is_a?(Hash)) + fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V2::IncidentImportRequestAttributes` initialize method" + end + + self.additional_properties = {} + # check to see if the attribute exists and convert string to symbol for hash key + attributes = attributes.each_with_object({}) { |(k, v), h| + if (!self.class.attribute_map.key?(k.to_sym)) + self.additional_properties[k.to_sym] = v + else + h[k.to_sym] = v + end + } + + if attributes.key?(:'declared') + self.declared = attributes[:'declared'] + end + + if attributes.key?(:'detected') + self.detected = attributes[:'detected'] + end + + if attributes.key?(:'fields') + self.fields = attributes[:'fields'] + end + + if attributes.key?(:'incident_type_uuid') + self.incident_type_uuid = attributes[:'incident_type_uuid'] + end + + if attributes.key?(:'resolved') + self.resolved = attributes[:'resolved'] + end + + if attributes.key?(:'title') + self.title = attributes[:'title'] + end + + if attributes.key?(:'visibility') + self.visibility = attributes[:'visibility'] + end + end + + # Check to see if the all the properties in the model are valid + # @return true if the model is valid + # @!visibility private + def valid? + return false if @title.nil? + return false if @title.to_s.length > 1024 + true + end + + # Custom attribute writer method with validation + # @param title [Object] Object to be assigned + # @!visibility private + def title=(title) + if title.nil? + fail ArgumentError, 'invalid value for "title", title cannot be nil.' + end + if title.to_s.length > 1024 + fail ArgumentError, 'invalid value for "title", the character length must be smaller than or equal to 1024.' + end + @title = title + end + + # Returns the object in the form of hash, with additionalProperties support. + # @return [Hash] Returns the object in the form of hash + # @!visibility private + def to_hash + hash = {} + self.class.attribute_map.each_pair do |attr, param| + value = self.send(attr) + if value.nil? + is_nullable = self.class.openapi_nullable.include?(attr) + next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}")) + end + + hash[param] = _to_hash(value) + end + self.additional_properties.each_pair do |attr, value| + hash[attr] = value + end + hash + end + + # Checks equality by comparing each attribute. + # @param o [Object] Object to be compared + # @!visibility private + def ==(o) + return true if self.equal?(o) + self.class == o.class && + declared == o.declared && + detected == o.detected && + fields == o.fields && + incident_type_uuid == o.incident_type_uuid && + resolved == o.resolved && + title == o.title && + visibility == o.visibility && + additional_properties == o.additional_properties + end + + # Calculates hash code according to all attributes. + # @return [Integer] Hash code + # @!visibility private + def hash + [declared, detected, fields, incident_type_uuid, resolved, title, visibility, additional_properties].hash + end + end +end diff --git a/lib/datadog_api_client/v2/models/incident_import_request_data.rb b/lib/datadog_api_client/v2/models/incident_import_request_data.rb new file mode 100644 index 000000000000..acb32d60f7c5 --- /dev/null +++ b/lib/datadog_api_client/v2/models/incident_import_request_data.rb @@ -0,0 +1,154 @@ +=begin +#Datadog API V2 Collection + +#Collection of all Datadog Public endpoints. + +The version of the OpenAPI document: 1.0 +Contact: support@datadoghq.com +Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator + + Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License. + This product includes software developed at Datadog (https://www.datadoghq.com/). + Copyright 2020-Present Datadog, Inc. + +=end + +require 'date' +require 'time' + +module DatadogAPIClient::V2 + # Incident data for an import request. + class IncidentImportRequestData + include BaseGenericModel + + # The incident's attributes for an import request. + attr_reader :attributes + + # The relationships for an incident import request. + attr_accessor :relationships + + # Incident resource type. + attr_reader :type + + attr_accessor :additional_properties + + # Attribute mapping from ruby-style variable name to JSON key. + # @!visibility private + def self.attribute_map + { + :'attributes' => :'attributes', + :'relationships' => :'relationships', + :'type' => :'type' + } + end + + # Attribute type mapping. + # @!visibility private + def self.openapi_types + { + :'attributes' => :'IncidentImportRequestAttributes', + :'relationships' => :'IncidentImportRelationships', + :'type' => :'IncidentType' + } + end + + # Initializes the object + # @param attributes [Hash] Model attributes in the form of hash + # @!visibility private + def initialize(attributes = {}) + if (!attributes.is_a?(Hash)) + fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V2::IncidentImportRequestData` initialize method" + end + + self.additional_properties = {} + # check to see if the attribute exists and convert string to symbol for hash key + attributes = attributes.each_with_object({}) { |(k, v), h| + if (!self.class.attribute_map.key?(k.to_sym)) + self.additional_properties[k.to_sym] = v + else + h[k.to_sym] = v + end + } + + if attributes.key?(:'attributes') + self.attributes = attributes[:'attributes'] + end + + if attributes.key?(:'relationships') + self.relationships = attributes[:'relationships'] + end + + if attributes.key?(:'type') + self.type = attributes[:'type'] + end + end + + # Check to see if the all the properties in the model are valid + # @return true if the model is valid + # @!visibility private + def valid? + return false if @attributes.nil? + return false if @type.nil? + true + end + + # Custom attribute writer method with validation + # @param attributes [Object] Object to be assigned + # @!visibility private + def attributes=(attributes) + if attributes.nil? + fail ArgumentError, 'invalid value for "attributes", attributes cannot be nil.' + end + @attributes = attributes + end + + # Custom attribute writer method with validation + # @param type [Object] Object to be assigned + # @!visibility private + def type=(type) + if type.nil? + fail ArgumentError, 'invalid value for "type", type cannot be nil.' + end + @type = type + end + + # Returns the object in the form of hash, with additionalProperties support. + # @return [Hash] Returns the object in the form of hash + # @!visibility private + def to_hash + hash = {} + self.class.attribute_map.each_pair do |attr, param| + value = self.send(attr) + if value.nil? + is_nullable = self.class.openapi_nullable.include?(attr) + next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}")) + end + + hash[param] = _to_hash(value) + end + self.additional_properties.each_pair do |attr, value| + hash[attr] = value + end + hash + end + + # Checks equality by comparing each attribute. + # @param o [Object] Object to be compared + # @!visibility private + def ==(o) + return true if self.equal?(o) + self.class == o.class && + attributes == o.attributes && + relationships == o.relationships && + type == o.type && + additional_properties == o.additional_properties + end + + # Calculates hash code according to all attributes. + # @return [Integer] Hash code + # @!visibility private + def hash + [attributes, relationships, type, additional_properties].hash + end + end +end diff --git a/lib/datadog_api_client/v2/models/incident_import_response.rb b/lib/datadog_api_client/v2/models/incident_import_response.rb new file mode 100644 index 000000000000..8bee2e6d4d7f --- /dev/null +++ b/lib/datadog_api_client/v2/models/incident_import_response.rb @@ -0,0 +1,135 @@ +=begin +#Datadog API V2 Collection + +#Collection of all Datadog Public endpoints. + +The version of the OpenAPI document: 1.0 +Contact: support@datadoghq.com +Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator + + Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License. + This product includes software developed at Datadog (https://www.datadoghq.com/). + Copyright 2020-Present Datadog, Inc. + +=end + +require 'date' +require 'time' + +module DatadogAPIClient::V2 + # Response with an incident. + class IncidentImportResponse + include BaseGenericModel + + # Incident data from an import response. + attr_reader :data + + # Included related resources that the user requested. + attr_accessor :included + + attr_accessor :additional_properties + + # Attribute mapping from ruby-style variable name to JSON key. + # @!visibility private + def self.attribute_map + { + :'data' => :'data', + :'included' => :'included' + } + end + + # Attribute type mapping. + # @!visibility private + def self.openapi_types + { + :'data' => :'IncidentImportResponseData', + :'included' => :'Array' + } + end + + # Initializes the object + # @param attributes [Hash] Model attributes in the form of hash + # @!visibility private + def initialize(attributes = {}) + if (!attributes.is_a?(Hash)) + fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V2::IncidentImportResponse` initialize method" + end + + self.additional_properties = {} + # check to see if the attribute exists and convert string to symbol for hash key + attributes = attributes.each_with_object({}) { |(k, v), h| + if (!self.class.attribute_map.key?(k.to_sym)) + self.additional_properties[k.to_sym] = v + else + h[k.to_sym] = v + end + } + + if attributes.key?(:'data') + self.data = attributes[:'data'] + end + + if attributes.key?(:'included') + if (value = attributes[:'included']).is_a?(Array) + self.included = value + end + end + end + + # Check to see if the all the properties in the model are valid + # @return true if the model is valid + # @!visibility private + def valid? + return false if @data.nil? + true + end + + # Custom attribute writer method with validation + # @param data [Object] Object to be assigned + # @!visibility private + def data=(data) + if data.nil? + fail ArgumentError, 'invalid value for "data", data cannot be nil.' + end + @data = data + end + + # Returns the object in the form of hash, with additionalProperties support. + # @return [Hash] Returns the object in the form of hash + # @!visibility private + def to_hash + hash = {} + self.class.attribute_map.each_pair do |attr, param| + value = self.send(attr) + if value.nil? + is_nullable = self.class.openapi_nullable.include?(attr) + next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}")) + end + + hash[param] = _to_hash(value) + end + self.additional_properties.each_pair do |attr, value| + hash[attr] = value + end + hash + end + + # Checks equality by comparing each attribute. + # @param o [Object] Object to be compared + # @!visibility private + def ==(o) + return true if self.equal?(o) + self.class == o.class && + data == o.data && + included == o.included && + additional_properties == o.additional_properties + end + + # Calculates hash code according to all attributes. + # @return [Integer] Hash code + # @!visibility private + def hash + [data, included, additional_properties].hash + end + end +end diff --git a/lib/datadog_api_client/v2/models/incident_import_response_attributes.rb b/lib/datadog_api_client/v2/models/incident_import_response_attributes.rb new file mode 100644 index 000000000000..998b22293dc7 --- /dev/null +++ b/lib/datadog_api_client/v2/models/incident_import_response_attributes.rb @@ -0,0 +1,378 @@ +=begin +#Datadog API V2 Collection + +#Collection of all Datadog Public endpoints. + +The version of the OpenAPI document: 1.0 +Contact: support@datadoghq.com +Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator + + Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License. + This product includes software developed at Datadog (https://www.datadoghq.com/). + Copyright 2020-Present Datadog, Inc. + +=end + +require 'date' +require 'time' + +module DatadogAPIClient::V2 + # The incident's attributes from an import response. + class IncidentImportResponseAttributes + include BaseGenericModel + + # Timestamp when the incident was archived. + attr_accessor :archived + + # The incident case ID. + attr_accessor :case_id + + # Timestamp when the incident was created. + attr_accessor :created + + # UUID of the user who created the incident. + attr_accessor :created_by_uuid + + # A unique key used to ensure idempotent incident creation. + attr_accessor :creation_idempotency_key + + # Timestamp when customers were no longer impacted by the incident. + attr_accessor :customer_impact_end + + # A summary of the impact customers experienced during the incident. + attr_accessor :customer_impact_scope + + # Timestamp when customers began to be impacted by the incident. + attr_accessor :customer_impact_start + + # Timestamp when the incident was declared. + attr_accessor :declared + + # UUID of the user who declared the incident. + attr_accessor :declared_by_uuid + + # Timestamp when the incident was detected. + attr_accessor :detected + + # A condensed view of the user-defined fields attached to incidents. + attr_accessor :fields + + # A unique identifier that represents an incident type. + attr_accessor :incident_type_uuid + + # A flag indicating whether the incident is a test incident. + attr_accessor :is_test + + # UUID of the user who last modified the incident. + attr_accessor :last_modified_by_uuid + + # Timestamp when the incident was last modified. + attr_accessor :modified + + # Incident's non Datadog creator. + attr_accessor :non_datadog_creator + + # Notification handles that are notified of the incident during update. + attr_accessor :notification_handles + + # The monotonically increasing integer ID for the incident. + attr_accessor :public_id + + # Timestamp when the incident's state was last changed from active or stable to resolved or completed. + attr_accessor :resolved + + # The incident severity. + attr_accessor :severity + + # The state of the incident. + attr_accessor :state + + # The title of the incident that summarizes what happened. + attr_reader :title + + # The incident visibility status. + attr_accessor :visibility + + attr_accessor :additional_properties + + # Attribute mapping from ruby-style variable name to JSON key. + # @!visibility private + def self.attribute_map + { + :'archived' => :'archived', + :'case_id' => :'case_id', + :'created' => :'created', + :'created_by_uuid' => :'created_by_uuid', + :'creation_idempotency_key' => :'creation_idempotency_key', + :'customer_impact_end' => :'customer_impact_end', + :'customer_impact_scope' => :'customer_impact_scope', + :'customer_impact_start' => :'customer_impact_start', + :'declared' => :'declared', + :'declared_by_uuid' => :'declared_by_uuid', + :'detected' => :'detected', + :'fields' => :'fields', + :'incident_type_uuid' => :'incident_type_uuid', + :'is_test' => :'is_test', + :'last_modified_by_uuid' => :'last_modified_by_uuid', + :'modified' => :'modified', + :'non_datadog_creator' => :'non_datadog_creator', + :'notification_handles' => :'notification_handles', + :'public_id' => :'public_id', + :'resolved' => :'resolved', + :'severity' => :'severity', + :'state' => :'state', + :'title' => :'title', + :'visibility' => :'visibility' + } + end + + # Attribute type mapping. + # @!visibility private + def self.openapi_types + { + :'archived' => :'Time', + :'case_id' => :'Integer', + :'created' => :'Time', + :'created_by_uuid' => :'String', + :'creation_idempotency_key' => :'String', + :'customer_impact_end' => :'Time', + :'customer_impact_scope' => :'String', + :'customer_impact_start' => :'Time', + :'declared' => :'Time', + :'declared_by_uuid' => :'String', + :'detected' => :'Time', + :'fields' => :'Hash', + :'incident_type_uuid' => :'String', + :'is_test' => :'Boolean', + :'last_modified_by_uuid' => :'String', + :'modified' => :'Time', + :'non_datadog_creator' => :'IncidentNonDatadogCreator', + :'notification_handles' => :'Array', + :'public_id' => :'Integer', + :'resolved' => :'Time', + :'severity' => :'IncidentSeverity', + :'state' => :'String', + :'title' => :'String', + :'visibility' => :'String' + } + end + + # List of attributes with nullable: true + # @!visibility private + def self.openapi_nullable + Set.new([ + :'archived', + :'case_id', + :'created_by_uuid', + :'creation_idempotency_key', + :'customer_impact_end', + :'customer_impact_scope', + :'customer_impact_start', + :'declared', + :'declared_by_uuid', + :'detected', + :'last_modified_by_uuid', + :'non_datadog_creator', + :'notification_handles', + :'resolved', + :'state', + :'visibility', + ]) + end + + # Initializes the object + # @param attributes [Hash] Model attributes in the form of hash + # @!visibility private + def initialize(attributes = {}) + if (!attributes.is_a?(Hash)) + fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V2::IncidentImportResponseAttributes` initialize method" + end + + self.additional_properties = {} + # check to see if the attribute exists and convert string to symbol for hash key + attributes = attributes.each_with_object({}) { |(k, v), h| + if (!self.class.attribute_map.key?(k.to_sym)) + self.additional_properties[k.to_sym] = v + else + h[k.to_sym] = v + end + } + + if attributes.key?(:'archived') + self.archived = attributes[:'archived'] + end + + if attributes.key?(:'case_id') + self.case_id = attributes[:'case_id'] + end + + if attributes.key?(:'created') + self.created = attributes[:'created'] + end + + if attributes.key?(:'created_by_uuid') + self.created_by_uuid = attributes[:'created_by_uuid'] + end + + if attributes.key?(:'creation_idempotency_key') + self.creation_idempotency_key = attributes[:'creation_idempotency_key'] + end + + if attributes.key?(:'customer_impact_end') + self.customer_impact_end = attributes[:'customer_impact_end'] + end + + if attributes.key?(:'customer_impact_scope') + self.customer_impact_scope = attributes[:'customer_impact_scope'] + end + + if attributes.key?(:'customer_impact_start') + self.customer_impact_start = attributes[:'customer_impact_start'] + end + + if attributes.key?(:'declared') + self.declared = attributes[:'declared'] + end + + if attributes.key?(:'declared_by_uuid') + self.declared_by_uuid = attributes[:'declared_by_uuid'] + end + + if attributes.key?(:'detected') + self.detected = attributes[:'detected'] + end + + if attributes.key?(:'fields') + self.fields = attributes[:'fields'] + end + + if attributes.key?(:'incident_type_uuid') + self.incident_type_uuid = attributes[:'incident_type_uuid'] + end + + if attributes.key?(:'is_test') + self.is_test = attributes[:'is_test'] + end + + if attributes.key?(:'last_modified_by_uuid') + self.last_modified_by_uuid = attributes[:'last_modified_by_uuid'] + end + + if attributes.key?(:'modified') + self.modified = attributes[:'modified'] + end + + if attributes.key?(:'non_datadog_creator') + self.non_datadog_creator = attributes[:'non_datadog_creator'] + end + + if attributes.key?(:'notification_handles') + if (value = attributes[:'notification_handles']).is_a?(Array) + self.notification_handles = value + end + end + + if attributes.key?(:'public_id') + self.public_id = attributes[:'public_id'] + end + + if attributes.key?(:'resolved') + self.resolved = attributes[:'resolved'] + end + + if attributes.key?(:'severity') + self.severity = attributes[:'severity'] + end + + if attributes.key?(:'state') + self.state = attributes[:'state'] + end + + if attributes.key?(:'title') + self.title = attributes[:'title'] + end + + if attributes.key?(:'visibility') + self.visibility = attributes[:'visibility'] + end + end + + # Check to see if the all the properties in the model are valid + # @return true if the model is valid + # @!visibility private + def valid? + return false if @title.nil? + true + end + + # Custom attribute writer method with validation + # @param title [Object] Object to be assigned + # @!visibility private + def title=(title) + if title.nil? + fail ArgumentError, 'invalid value for "title", title cannot be nil.' + end + @title = title + end + + # Returns the object in the form of hash, with additionalProperties support. + # @return [Hash] Returns the object in the form of hash + # @!visibility private + def to_hash + hash = {} + self.class.attribute_map.each_pair do |attr, param| + value = self.send(attr) + if value.nil? + is_nullable = self.class.openapi_nullable.include?(attr) + next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}")) + end + + hash[param] = _to_hash(value) + end + self.additional_properties.each_pair do |attr, value| + hash[attr] = value + end + hash + end + + # Checks equality by comparing each attribute. + # @param o [Object] Object to be compared + # @!visibility private + def ==(o) + return true if self.equal?(o) + self.class == o.class && + archived == o.archived && + case_id == o.case_id && + created == o.created && + created_by_uuid == o.created_by_uuid && + creation_idempotency_key == o.creation_idempotency_key && + customer_impact_end == o.customer_impact_end && + customer_impact_scope == o.customer_impact_scope && + customer_impact_start == o.customer_impact_start && + declared == o.declared && + declared_by_uuid == o.declared_by_uuid && + detected == o.detected && + fields == o.fields && + incident_type_uuid == o.incident_type_uuid && + is_test == o.is_test && + last_modified_by_uuid == o.last_modified_by_uuid && + modified == o.modified && + non_datadog_creator == o.non_datadog_creator && + notification_handles == o.notification_handles && + public_id == o.public_id && + resolved == o.resolved && + severity == o.severity && + state == o.state && + title == o.title && + visibility == o.visibility && + additional_properties == o.additional_properties + end + + # Calculates hash code according to all attributes. + # @return [Integer] Hash code + # @!visibility private + def hash + [archived, case_id, created, created_by_uuid, creation_idempotency_key, customer_impact_end, customer_impact_scope, customer_impact_start, declared, declared_by_uuid, detected, fields, incident_type_uuid, is_test, last_modified_by_uuid, modified, non_datadog_creator, notification_handles, public_id, resolved, severity, state, title, visibility, additional_properties].hash + end + end +end diff --git a/lib/datadog_api_client/v2/models/incident_import_response_data.rb b/lib/datadog_api_client/v2/models/incident_import_response_data.rb new file mode 100644 index 000000000000..6e26b921256c --- /dev/null +++ b/lib/datadog_api_client/v2/models/incident_import_response_data.rb @@ -0,0 +1,164 @@ +=begin +#Datadog API V2 Collection + +#Collection of all Datadog Public endpoints. + +The version of the OpenAPI document: 1.0 +Contact: support@datadoghq.com +Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator + + Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License. + This product includes software developed at Datadog (https://www.datadoghq.com/). + Copyright 2020-Present Datadog, Inc. + +=end + +require 'date' +require 'time' + +module DatadogAPIClient::V2 + # Incident data from an import response. + class IncidentImportResponseData + include BaseGenericModel + + # The incident's attributes from an import response. + attr_accessor :attributes + + # The incident's ID. + attr_reader :id + + # The incident's relationships from an import response. + attr_accessor :relationships + + # Incident resource type. + attr_reader :type + + attr_accessor :additional_properties + + # Attribute mapping from ruby-style variable name to JSON key. + # @!visibility private + def self.attribute_map + { + :'attributes' => :'attributes', + :'id' => :'id', + :'relationships' => :'relationships', + :'type' => :'type' + } + end + + # Attribute type mapping. + # @!visibility private + def self.openapi_types + { + :'attributes' => :'IncidentImportResponseAttributes', + :'id' => :'String', + :'relationships' => :'IncidentImportResponseRelationships', + :'type' => :'IncidentType' + } + end + + # Initializes the object + # @param attributes [Hash] Model attributes in the form of hash + # @!visibility private + def initialize(attributes = {}) + if (!attributes.is_a?(Hash)) + fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V2::IncidentImportResponseData` initialize method" + end + + self.additional_properties = {} + # check to see if the attribute exists and convert string to symbol for hash key + attributes = attributes.each_with_object({}) { |(k, v), h| + if (!self.class.attribute_map.key?(k.to_sym)) + self.additional_properties[k.to_sym] = v + else + h[k.to_sym] = v + end + } + + if attributes.key?(:'attributes') + self.attributes = attributes[:'attributes'] + end + + if attributes.key?(:'id') + self.id = attributes[:'id'] + end + + if attributes.key?(:'relationships') + self.relationships = attributes[:'relationships'] + end + + if attributes.key?(:'type') + self.type = attributes[:'type'] + end + end + + # Check to see if the all the properties in the model are valid + # @return true if the model is valid + # @!visibility private + def valid? + return false if @id.nil? + return false if @type.nil? + true + end + + # Custom attribute writer method with validation + # @param id [Object] Object to be assigned + # @!visibility private + def id=(id) + if id.nil? + fail ArgumentError, 'invalid value for "id", id cannot be nil.' + end + @id = id + end + + # Custom attribute writer method with validation + # @param type [Object] Object to be assigned + # @!visibility private + def type=(type) + if type.nil? + fail ArgumentError, 'invalid value for "type", type cannot be nil.' + end + @type = type + end + + # Returns the object in the form of hash, with additionalProperties support. + # @return [Hash] Returns the object in the form of hash + # @!visibility private + def to_hash + hash = {} + self.class.attribute_map.each_pair do |attr, param| + value = self.send(attr) + if value.nil? + is_nullable = self.class.openapi_nullable.include?(attr) + next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}")) + end + + hash[param] = _to_hash(value) + end + self.additional_properties.each_pair do |attr, value| + hash[attr] = value + end + hash + end + + # Checks equality by comparing each attribute. + # @param o [Object] Object to be compared + # @!visibility private + def ==(o) + return true if self.equal?(o) + self.class == o.class && + attributes == o.attributes && + id == o.id && + relationships == o.relationships && + type == o.type && + additional_properties == o.additional_properties + end + + # Calculates hash code according to all attributes. + # @return [Integer] Hash code + # @!visibility private + def hash + [attributes, id, relationships, type, additional_properties].hash + end + end +end diff --git a/lib/datadog_api_client/v2/models/incident_import_response_included_item.rb b/lib/datadog_api_client/v2/models/incident_import_response_included_item.rb new file mode 100644 index 000000000000..c302821c1cfb --- /dev/null +++ b/lib/datadog_api_client/v2/models/incident_import_response_included_item.rb @@ -0,0 +1,63 @@ +=begin +#Datadog API V2 Collection + +#Collection of all Datadog Public endpoints. + +The version of the OpenAPI document: 1.0 +Contact: support@datadoghq.com +Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator + + Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License. + This product includes software developed at Datadog (https://www.datadoghq.com/). + Copyright 2020-Present Datadog, Inc. + +=end + +require 'date' +require 'time' + +module DatadogAPIClient::V2 + # An object related to an incident that is included in the response. + module IncidentImportResponseIncludedItem + class << self + include BaseOneOfModel + include BaseOneOfModelNoDiscriminator + + # List of class defined in oneOf (OpenAPI v3) + def openapi_one_of + [ + :'IncidentUserData', + :'IncidentTypeObject' + ] + end + # Builds the object + # @param data [Mixed] Data to be matched against the list of oneOf items + # @return [Object] Returns the model or the data itself + def build(data) + # Go through the list of oneOf items and attempt to identify the appropriate one. + # Note: + # - We do not attempt to check whether exactly one item matches. + # - No advanced validation of types in some cases (e.g. "x: { type: string }" will happily match { x: 123 }) + # due to the way the deserialization is made in the base_object template (it just casts without verifying). + # - TODO: scalar values are de facto behaving as if they were nullable. + # - TODO: logging when debugging is set. + openapi_one_of.each do |klass| + begin + next if klass == :AnyType # "nullable: true" + typed_data = find_and_cast_into_type(klass, data) + next if typed_data.respond_to?(:_unparsed) && typed_data._unparsed + return typed_data if typed_data + rescue # rescue all errors so we keep iterating even if the current item lookup raises + end + end + + if openapi_one_of.include?(:AnyType) + data + else + self._unparsed = true + DatadogAPIClient::UnparsedObject.new(data) + end + end + end + end +end diff --git a/lib/datadog_api_client/v2/models/incident_import_response_relationships.rb b/lib/datadog_api_client/v2/models/incident_import_response_relationships.rb new file mode 100644 index 000000000000..9d263af3d8ad --- /dev/null +++ b/lib/datadog_api_client/v2/models/incident_import_response_relationships.rb @@ -0,0 +1,203 @@ +=begin +#Datadog API V2 Collection + +#Collection of all Datadog Public endpoints. + +The version of the OpenAPI document: 1.0 +Contact: support@datadoghq.com +Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator + + Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License. + This product includes software developed at Datadog (https://www.datadoghq.com/). + Copyright 2020-Present Datadog, Inc. + +=end + +require 'date' +require 'time' + +module DatadogAPIClient::V2 + # The incident's relationships from an import response. + class IncidentImportResponseRelationships + include BaseGenericModel + + # A relationship reference for attachments. + attr_accessor :attachments + + # Relationship to user. + attr_accessor :commander_user + + # Relationship to user. + attr_accessor :created_by_user + + # Relationship to user. + attr_accessor :declared_by_user + + # Relationship to impacts. + attr_accessor :impacts + + # Relationship to an incident type. + attr_accessor :incident_type + + # A relationship reference for multiple integration metadata objects. + attr_accessor :integrations + + # Relationship to user. + attr_accessor :last_modified_by_user + + # Relationship to incident responders. + attr_accessor :responders + + # Relationship to incident user defined fields. + attr_accessor :user_defined_fields + + attr_accessor :additional_properties + + # Attribute mapping from ruby-style variable name to JSON key. + # @!visibility private + def self.attribute_map + { + :'attachments' => :'attachments', + :'commander_user' => :'commander_user', + :'created_by_user' => :'created_by_user', + :'declared_by_user' => :'declared_by_user', + :'impacts' => :'impacts', + :'incident_type' => :'incident_type', + :'integrations' => :'integrations', + :'last_modified_by_user' => :'last_modified_by_user', + :'responders' => :'responders', + :'user_defined_fields' => :'user_defined_fields' + } + end + + # Attribute type mapping. + # @!visibility private + def self.openapi_types + { + :'attachments' => :'RelationshipToIncidentAttachment', + :'commander_user' => :'NullableRelationshipToUser', + :'created_by_user' => :'RelationshipToUser', + :'declared_by_user' => :'RelationshipToUser', + :'impacts' => :'RelationshipToIncidentImpacts', + :'incident_type' => :'RelationshipToIncidentType', + :'integrations' => :'RelationshipToIncidentIntegrationMetadatas', + :'last_modified_by_user' => :'RelationshipToUser', + :'responders' => :'RelationshipToIncidentResponders', + :'user_defined_fields' => :'RelationshipToIncidentUserDefinedFields' + } + end + + # List of attributes with nullable: true + # @!visibility private + def self.openapi_nullable + Set.new([ + :'commander_user', + ]) + end + + # Initializes the object + # @param attributes [Hash] Model attributes in the form of hash + # @!visibility private + def initialize(attributes = {}) + if (!attributes.is_a?(Hash)) + fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V2::IncidentImportResponseRelationships` initialize method" + end + + self.additional_properties = {} + # check to see if the attribute exists and convert string to symbol for hash key + attributes = attributes.each_with_object({}) { |(k, v), h| + if (!self.class.attribute_map.key?(k.to_sym)) + self.additional_properties[k.to_sym] = v + else + h[k.to_sym] = v + end + } + + if attributes.key?(:'attachments') + self.attachments = attributes[:'attachments'] + end + + if attributes.key?(:'commander_user') + self.commander_user = attributes[:'commander_user'] + end + + if attributes.key?(:'created_by_user') + self.created_by_user = attributes[:'created_by_user'] + end + + if attributes.key?(:'declared_by_user') + self.declared_by_user = attributes[:'declared_by_user'] + end + + if attributes.key?(:'impacts') + self.impacts = attributes[:'impacts'] + end + + if attributes.key?(:'incident_type') + self.incident_type = attributes[:'incident_type'] + end + + if attributes.key?(:'integrations') + self.integrations = attributes[:'integrations'] + end + + if attributes.key?(:'last_modified_by_user') + self.last_modified_by_user = attributes[:'last_modified_by_user'] + end + + if attributes.key?(:'responders') + self.responders = attributes[:'responders'] + end + + if attributes.key?(:'user_defined_fields') + self.user_defined_fields = attributes[:'user_defined_fields'] + end + end + + # Returns the object in the form of hash, with additionalProperties support. + # @return [Hash] Returns the object in the form of hash + # @!visibility private + def to_hash + hash = {} + self.class.attribute_map.each_pair do |attr, param| + value = self.send(attr) + if value.nil? + is_nullable = self.class.openapi_nullable.include?(attr) + next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}")) + end + + hash[param] = _to_hash(value) + end + self.additional_properties.each_pair do |attr, value| + hash[attr] = value + end + hash + end + + # Checks equality by comparing each attribute. + # @param o [Object] Object to be compared + # @!visibility private + def ==(o) + return true if self.equal?(o) + self.class == o.class && + attachments == o.attachments && + commander_user == o.commander_user && + created_by_user == o.created_by_user && + declared_by_user == o.declared_by_user && + impacts == o.impacts && + incident_type == o.incident_type && + integrations == o.integrations && + last_modified_by_user == o.last_modified_by_user && + responders == o.responders && + user_defined_fields == o.user_defined_fields && + additional_properties == o.additional_properties + end + + # Calculates hash code according to all attributes. + # @return [Integer] Hash code + # @!visibility private + def hash + [attachments, commander_user, created_by_user, declared_by_user, impacts, incident_type, integrations, last_modified_by_user, responders, user_defined_fields, additional_properties].hash + end + end +end diff --git a/lib/datadog_api_client/v2/models/incident_import_visibility.rb b/lib/datadog_api_client/v2/models/incident_import_visibility.rb new file mode 100644 index 000000000000..3afc5b2902e3 --- /dev/null +++ b/lib/datadog_api_client/v2/models/incident_import_visibility.rb @@ -0,0 +1,27 @@ +=begin +#Datadog API V2 Collection + +#Collection of all Datadog Public endpoints. + +The version of the OpenAPI document: 1.0 +Contact: support@datadoghq.com +Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator + + Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License. + This product includes software developed at Datadog (https://www.datadoghq.com/). + Copyright 2020-Present Datadog, Inc. + +=end + +require 'date' +require 'time' + +module DatadogAPIClient::V2 + # The visibility of the incident. + class IncidentImportVisibility + include BaseEnumModel + + ORGANIZATION = "organization".freeze + PRIVATE = "private".freeze + end +end diff --git a/lib/datadog_api_client/v2/models/microsoft_sentinel_destination.rb b/lib/datadog_api_client/v2/models/microsoft_sentinel_destination.rb index e3a352437e31..25a8d62a0407 100644 --- a/lib/datadog_api_client/v2/models/microsoft_sentinel_destination.rb +++ b/lib/datadog_api_client/v2/models/microsoft_sentinel_destination.rb @@ -29,6 +29,12 @@ class MicrosoftSentinelDestination # Azure AD client ID used for authentication. attr_reader :client_id + # Name of the environment variable or secret that holds the Azure AD client secret. + attr_accessor :client_secret_key + + # Name of the environment variable or secret that holds the Data Collection Endpoint (DCE) URI. + attr_accessor :dce_uri_key + # The immutable ID of the Data Collection Rule (DCR). attr_reader :dcr_immutable_id @@ -55,6 +61,8 @@ def self.attribute_map { :'buffer' => :'buffer', :'client_id' => :'client_id', + :'client_secret_key' => :'client_secret_key', + :'dce_uri_key' => :'dce_uri_key', :'dcr_immutable_id' => :'dcr_immutable_id', :'id' => :'id', :'inputs' => :'inputs', @@ -70,6 +78,8 @@ def self.openapi_types { :'buffer' => :'ObservabilityPipelineBufferOptions', :'client_id' => :'String', + :'client_secret_key' => :'String', + :'dce_uri_key' => :'String', :'dcr_immutable_id' => :'String', :'id' => :'String', :'inputs' => :'Array', @@ -105,6 +115,14 @@ def initialize(attributes = {}) self.client_id = attributes[:'client_id'] end + if attributes.key?(:'client_secret_key') + self.client_secret_key = attributes[:'client_secret_key'] + end + + if attributes.key?(:'dce_uri_key') + self.dce_uri_key = attributes[:'dce_uri_key'] + end + if attributes.key?(:'dcr_immutable_id') self.dcr_immutable_id = attributes[:'dcr_immutable_id'] end @@ -244,6 +262,8 @@ def ==(o) self.class == o.class && buffer == o.buffer && client_id == o.client_id && + client_secret_key == o.client_secret_key && + dce_uri_key == o.dce_uri_key && dcr_immutable_id == o.dcr_immutable_id && id == o.id && inputs == o.inputs && @@ -257,7 +277,7 @@ def ==(o) # @return [Integer] Hash code # @!visibility private def hash - [buffer, client_id, dcr_immutable_id, id, inputs, table, tenant_id, type, additional_properties].hash + [buffer, client_id, client_secret_key, dce_uri_key, dcr_immutable_id, id, inputs, table, tenant_id, type, additional_properties].hash end end end diff --git a/lib/datadog_api_client/v2/models/observability_pipeline_amazon_data_firehose_source.rb b/lib/datadog_api_client/v2/models/observability_pipeline_amazon_data_firehose_source.rb index 51b01b03197c..4c09900d6bc3 100644 --- a/lib/datadog_api_client/v2/models/observability_pipeline_amazon_data_firehose_source.rb +++ b/lib/datadog_api_client/v2/models/observability_pipeline_amazon_data_firehose_source.rb @@ -23,6 +23,9 @@ module DatadogAPIClient::V2 class ObservabilityPipelineAmazonDataFirehoseSource include BaseGenericModel + # Name of the environment variable or secret that holds the Firehose delivery stream address. + attr_accessor :address_key + # AWS authentication credentials used for accessing AWS services such as S3. # If omitted, the system’s default credentials are used (for example, the IAM role and environment variables). attr_accessor :auth @@ -42,6 +45,7 @@ class ObservabilityPipelineAmazonDataFirehoseSource # @!visibility private def self.attribute_map { + :'address_key' => :'address_key', :'auth' => :'auth', :'id' => :'id', :'tls' => :'tls', @@ -53,6 +57,7 @@ def self.attribute_map # @!visibility private def self.openapi_types { + :'address_key' => :'String', :'auth' => :'ObservabilityPipelineAwsAuth', :'id' => :'String', :'tls' => :'ObservabilityPipelineTls', @@ -78,6 +83,10 @@ def initialize(attributes = {}) end } + if attributes.key?(:'address_key') + self.address_key = attributes[:'address_key'] + end + if attributes.key?(:'auth') self.auth = attributes[:'auth'] end @@ -150,6 +159,7 @@ def to_hash def ==(o) return true if self.equal?(o) self.class == o.class && + address_key == o.address_key && auth == o.auth && id == o.id && tls == o.tls && @@ -161,7 +171,7 @@ def ==(o) # @return [Integer] Hash code # @!visibility private def hash - [auth, id, tls, type, additional_properties].hash + [address_key, auth, id, tls, type, additional_properties].hash end end end diff --git a/lib/datadog_api_client/v2/models/observability_pipeline_amazon_s3_source.rb b/lib/datadog_api_client/v2/models/observability_pipeline_amazon_s3_source.rb index 679d1d09a0e6..ab203d7204b3 100644 --- a/lib/datadog_api_client/v2/models/observability_pipeline_amazon_s3_source.rb +++ b/lib/datadog_api_client/v2/models/observability_pipeline_amazon_s3_source.rb @@ -40,6 +40,9 @@ class ObservabilityPipelineAmazonS3Source # The source type. Always `amazon_s3`. attr_reader :type + # Name of the environment variable or secret that holds the S3 bucket URL. + attr_accessor :url_key + attr_accessor :additional_properties # Attribute mapping from ruby-style variable name to JSON key. @@ -50,7 +53,8 @@ def self.attribute_map :'id' => :'id', :'region' => :'region', :'tls' => :'tls', - :'type' => :'type' + :'type' => :'type', + :'url_key' => :'url_key' } end @@ -62,7 +66,8 @@ def self.openapi_types :'id' => :'String', :'region' => :'String', :'tls' => :'ObservabilityPipelineTls', - :'type' => :'ObservabilityPipelineAmazonS3SourceType' + :'type' => :'ObservabilityPipelineAmazonS3SourceType', + :'url_key' => :'String' } end @@ -103,6 +108,10 @@ def initialize(attributes = {}) if attributes.key?(:'type') self.type = attributes[:'type'] end + + if attributes.key?(:'url_key') + self.url_key = attributes[:'url_key'] + end end # Check to see if the all the properties in the model are valid @@ -176,6 +185,7 @@ def ==(o) region == o.region && tls == o.tls && type == o.type && + url_key == o.url_key && additional_properties == o.additional_properties end @@ -183,7 +193,7 @@ def ==(o) # @return [Integer] Hash code # @!visibility private def hash - [auth, id, region, tls, type, additional_properties].hash + [auth, id, region, tls, type, url_key, additional_properties].hash end end end diff --git a/lib/datadog_api_client/v2/models/observability_pipeline_cloud_prem_destination.rb b/lib/datadog_api_client/v2/models/observability_pipeline_cloud_prem_destination.rb index fcc35829a771..64cce5487482 100644 --- a/lib/datadog_api_client/v2/models/observability_pipeline_cloud_prem_destination.rb +++ b/lib/datadog_api_client/v2/models/observability_pipeline_cloud_prem_destination.rb @@ -23,6 +23,9 @@ module DatadogAPIClient::V2 class ObservabilityPipelineCloudPremDestination include BaseGenericModel + # Name of the environment variable or secret that holds the CloudPrem endpoint URL. + attr_accessor :endpoint_url_key + # The unique identifier for this component. attr_reader :id @@ -38,6 +41,7 @@ class ObservabilityPipelineCloudPremDestination # @!visibility private def self.attribute_map { + :'endpoint_url_key' => :'endpoint_url_key', :'id' => :'id', :'inputs' => :'inputs', :'type' => :'type' @@ -48,6 +52,7 @@ def self.attribute_map # @!visibility private def self.openapi_types { + :'endpoint_url_key' => :'String', :'id' => :'String', :'inputs' => :'Array', :'type' => :'ObservabilityPipelineCloudPremDestinationType' @@ -72,6 +77,10 @@ def initialize(attributes = {}) end } + if attributes.key?(:'endpoint_url_key') + self.endpoint_url_key = attributes[:'endpoint_url_key'] + end + if attributes.key?(:'id') self.id = attributes[:'id'] end @@ -153,6 +162,7 @@ def to_hash def ==(o) return true if self.equal?(o) self.class == o.class && + endpoint_url_key == o.endpoint_url_key && id == o.id && inputs == o.inputs && type == o.type && @@ -163,7 +173,7 @@ def ==(o) # @return [Integer] Hash code # @!visibility private def hash - [id, inputs, type, additional_properties].hash + [endpoint_url_key, id, inputs, type, additional_properties].hash end end end diff --git a/lib/datadog_api_client/v2/models/observability_pipeline_crowd_strike_next_gen_siem_destination.rb b/lib/datadog_api_client/v2/models/observability_pipeline_crowd_strike_next_gen_siem_destination.rb index 04bba5d3a095..d28d3f67b134 100644 --- a/lib/datadog_api_client/v2/models/observability_pipeline_crowd_strike_next_gen_siem_destination.rb +++ b/lib/datadog_api_client/v2/models/observability_pipeline_crowd_strike_next_gen_siem_destination.rb @@ -32,6 +32,9 @@ class ObservabilityPipelineCrowdStrikeNextGenSiemDestination # Encoding format for log events. attr_reader :encoding + # Name of the environment variable or secret that holds the CrowdStrike endpoint URL. + attr_accessor :endpoint_url_key + # The unique identifier for this component. attr_reader :id @@ -41,6 +44,9 @@ class ObservabilityPipelineCrowdStrikeNextGenSiemDestination # Configuration for enabling TLS encryption between the pipeline component and external services. attr_accessor :tls + # Name of the environment variable or secret that holds the CrowdStrike API token. + attr_accessor :token_key + # The destination type. The value should always be `crowdstrike_next_gen_siem`. attr_reader :type @@ -53,9 +59,11 @@ def self.attribute_map :'buffer' => :'buffer', :'compression' => :'compression', :'encoding' => :'encoding', + :'endpoint_url_key' => :'endpoint_url_key', :'id' => :'id', :'inputs' => :'inputs', :'tls' => :'tls', + :'token_key' => :'token_key', :'type' => :'type' } end @@ -67,9 +75,11 @@ def self.openapi_types :'buffer' => :'ObservabilityPipelineBufferOptions', :'compression' => :'ObservabilityPipelineCrowdStrikeNextGenSiemDestinationCompression', :'encoding' => :'ObservabilityPipelineCrowdStrikeNextGenSiemDestinationEncoding', + :'endpoint_url_key' => :'String', :'id' => :'String', :'inputs' => :'Array', :'tls' => :'ObservabilityPipelineTls', + :'token_key' => :'String', :'type' => :'ObservabilityPipelineCrowdStrikeNextGenSiemDestinationType' } end @@ -104,6 +114,10 @@ def initialize(attributes = {}) self.encoding = attributes[:'encoding'] end + if attributes.key?(:'endpoint_url_key') + self.endpoint_url_key = attributes[:'endpoint_url_key'] + end + if attributes.key?(:'id') self.id = attributes[:'id'] end @@ -118,6 +132,10 @@ def initialize(attributes = {}) self.tls = attributes[:'tls'] end + if attributes.key?(:'token_key') + self.token_key = attributes[:'token_key'] + end + if attributes.key?(:'type') self.type = attributes[:'type'] end @@ -203,9 +221,11 @@ def ==(o) buffer == o.buffer && compression == o.compression && encoding == o.encoding && + endpoint_url_key == o.endpoint_url_key && id == o.id && inputs == o.inputs && tls == o.tls && + token_key == o.token_key && type == o.type && additional_properties == o.additional_properties end @@ -214,7 +234,7 @@ def ==(o) # @return [Integer] Hash code # @!visibility private def hash - [buffer, compression, encoding, id, inputs, tls, type, additional_properties].hash + [buffer, compression, encoding, endpoint_url_key, id, inputs, tls, token_key, type, additional_properties].hash end end end diff --git a/lib/datadog_api_client/v2/models/observability_pipeline_elasticsearch_destination.rb b/lib/datadog_api_client/v2/models/observability_pipeline_elasticsearch_destination.rb index c60d54c56234..612b0ff1eeab 100644 --- a/lib/datadog_api_client/v2/models/observability_pipeline_elasticsearch_destination.rb +++ b/lib/datadog_api_client/v2/models/observability_pipeline_elasticsearch_destination.rb @@ -26,6 +26,10 @@ class ObservabilityPipelineElasticsearchDestination # The Elasticsearch API version to use. Set to `auto` to auto-detect. attr_accessor :api_version + # Authentication settings for the Elasticsearch destination. + # When `strategy` is `basic`, use `username_key` and `password_key` to reference credentials stored in environment variables or secrets. + attr_accessor :auth + # Configuration for buffer settings on destination components. attr_accessor :buffer @@ -35,6 +39,9 @@ class ObservabilityPipelineElasticsearchDestination # Configuration options for writing to Elasticsearch Data Streams instead of a fixed index. attr_accessor :data_stream + # Name of the environment variable or secret that holds the Elasticsearch endpoint URL. + attr_accessor :endpoint_url_key + # The unique identifier for this component. attr_reader :id @@ -51,9 +58,11 @@ class ObservabilityPipelineElasticsearchDestination def self.attribute_map { :'api_version' => :'api_version', + :'auth' => :'auth', :'buffer' => :'buffer', :'bulk_index' => :'bulk_index', :'data_stream' => :'data_stream', + :'endpoint_url_key' => :'endpoint_url_key', :'id' => :'id', :'inputs' => :'inputs', :'type' => :'type' @@ -65,9 +74,11 @@ def self.attribute_map def self.openapi_types { :'api_version' => :'ObservabilityPipelineElasticsearchDestinationApiVersion', + :'auth' => :'ObservabilityPipelineElasticsearchDestinationAuth', :'buffer' => :'ObservabilityPipelineBufferOptions', :'bulk_index' => :'String', :'data_stream' => :'ObservabilityPipelineElasticsearchDestinationDataStream', + :'endpoint_url_key' => :'String', :'id' => :'String', :'inputs' => :'Array', :'type' => :'ObservabilityPipelineElasticsearchDestinationType' @@ -96,6 +107,10 @@ def initialize(attributes = {}) self.api_version = attributes[:'api_version'] end + if attributes.key?(:'auth') + self.auth = attributes[:'auth'] + end + if attributes.key?(:'buffer') self.buffer = attributes[:'buffer'] end @@ -108,6 +123,10 @@ def initialize(attributes = {}) self.data_stream = attributes[:'data_stream'] end + if attributes.key?(:'endpoint_url_key') + self.endpoint_url_key = attributes[:'endpoint_url_key'] + end + if attributes.key?(:'id') self.id = attributes[:'id'] end @@ -190,9 +209,11 @@ def ==(o) return true if self.equal?(o) self.class == o.class && api_version == o.api_version && + auth == o.auth && buffer == o.buffer && bulk_index == o.bulk_index && data_stream == o.data_stream && + endpoint_url_key == o.endpoint_url_key && id == o.id && inputs == o.inputs && type == o.type && @@ -203,7 +224,7 @@ def ==(o) # @return [Integer] Hash code # @!visibility private def hash - [api_version, buffer, bulk_index, data_stream, id, inputs, type, additional_properties].hash + [api_version, auth, buffer, bulk_index, data_stream, endpoint_url_key, id, inputs, type, additional_properties].hash end end end diff --git a/lib/datadog_api_client/v2/models/observability_pipeline_elasticsearch_destination_auth.rb b/lib/datadog_api_client/v2/models/observability_pipeline_elasticsearch_destination_auth.rb new file mode 100644 index 000000000000..4da6c8123998 --- /dev/null +++ b/lib/datadog_api_client/v2/models/observability_pipeline_elasticsearch_destination_auth.rb @@ -0,0 +1,144 @@ +=begin +#Datadog API V2 Collection + +#Collection of all Datadog Public endpoints. + +The version of the OpenAPI document: 1.0 +Contact: support@datadoghq.com +Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator + + Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License. + This product includes software developed at Datadog (https://www.datadoghq.com/). + Copyright 2020-Present Datadog, Inc. + +=end + +require 'date' +require 'time' + +module DatadogAPIClient::V2 + # Authentication settings for the Elasticsearch destination. + # When `strategy` is `basic`, use `username_key` and `password_key` to reference credentials stored in environment variables or secrets. + class ObservabilityPipelineElasticsearchDestinationAuth + include BaseGenericModel + + # Name of the environment variable or secret that holds the Elasticsearch password (used when `strategy` is `basic`). + attr_accessor :password_key + + # The authentication strategy to use. + attr_reader :strategy + + # Name of the environment variable or secret that holds the Elasticsearch username (used when `strategy` is `basic`). + attr_accessor :username_key + + attr_accessor :additional_properties + + # Attribute mapping from ruby-style variable name to JSON key. + # @!visibility private + def self.attribute_map + { + :'password_key' => :'password_key', + :'strategy' => :'strategy', + :'username_key' => :'username_key' + } + end + + # Attribute type mapping. + # @!visibility private + def self.openapi_types + { + :'password_key' => :'String', + :'strategy' => :'ObservabilityPipelineAmazonOpenSearchDestinationAuthStrategy', + :'username_key' => :'String' + } + end + + # Initializes the object + # @param attributes [Hash] Model attributes in the form of hash + # @!visibility private + def initialize(attributes = {}) + if (!attributes.is_a?(Hash)) + fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V2::ObservabilityPipelineElasticsearchDestinationAuth` initialize method" + end + + self.additional_properties = {} + # check to see if the attribute exists and convert string to symbol for hash key + attributes = attributes.each_with_object({}) { |(k, v), h| + if (!self.class.attribute_map.key?(k.to_sym)) + self.additional_properties[k.to_sym] = v + else + h[k.to_sym] = v + end + } + + if attributes.key?(:'password_key') + self.password_key = attributes[:'password_key'] + end + + if attributes.key?(:'strategy') + self.strategy = attributes[:'strategy'] + end + + if attributes.key?(:'username_key') + self.username_key = attributes[:'username_key'] + end + end + + # Check to see if the all the properties in the model are valid + # @return true if the model is valid + # @!visibility private + def valid? + return false if @strategy.nil? + true + end + + # Custom attribute writer method with validation + # @param strategy [Object] Object to be assigned + # @!visibility private + def strategy=(strategy) + if strategy.nil? + fail ArgumentError, 'invalid value for "strategy", strategy cannot be nil.' + end + @strategy = strategy + end + + # Returns the object in the form of hash, with additionalProperties support. + # @return [Hash] Returns the object in the form of hash + # @!visibility private + def to_hash + hash = {} + self.class.attribute_map.each_pair do |attr, param| + value = self.send(attr) + if value.nil? + is_nullable = self.class.openapi_nullable.include?(attr) + next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}")) + end + + hash[param] = _to_hash(value) + end + self.additional_properties.each_pair do |attr, value| + hash[attr] = value + end + hash + end + + # Checks equality by comparing each attribute. + # @param o [Object] Object to be compared + # @!visibility private + def ==(o) + return true if self.equal?(o) + self.class == o.class && + password_key == o.password_key && + strategy == o.strategy && + username_key == o.username_key && + additional_properties == o.additional_properties + end + + # Calculates hash code according to all attributes. + # @return [Integer] Hash code + # @!visibility private + def hash + [password_key, strategy, username_key, additional_properties].hash + end + end +end diff --git a/lib/datadog_api_client/v2/models/observability_pipeline_enrichment_table_reference_table.rb b/lib/datadog_api_client/v2/models/observability_pipeline_enrichment_table_reference_table.rb index 2248ad6775d1..21c86341e35d 100644 --- a/lib/datadog_api_client/v2/models/observability_pipeline_enrichment_table_reference_table.rb +++ b/lib/datadog_api_client/v2/models/observability_pipeline_enrichment_table_reference_table.rb @@ -21,6 +21,9 @@ module DatadogAPIClient::V2 class ObservabilityPipelineEnrichmentTableReferenceTable include BaseGenericModel + # Name of the environment variable or secret that holds the Datadog application key used to access the reference table. + attr_accessor :app_key_key + # List of column names to include from the reference table. If not provided, all columns are included. attr_accessor :columns @@ -36,6 +39,7 @@ class ObservabilityPipelineEnrichmentTableReferenceTable # @!visibility private def self.attribute_map { + :'app_key_key' => :'app_key_key', :'columns' => :'columns', :'key_field' => :'key_field', :'table_id' => :'table_id' @@ -46,6 +50,7 @@ def self.attribute_map # @!visibility private def self.openapi_types { + :'app_key_key' => :'String', :'columns' => :'Array', :'key_field' => :'String', :'table_id' => :'String' @@ -70,6 +75,10 @@ def initialize(attributes = {}) end } + if attributes.key?(:'app_key_key') + self.app_key_key = attributes[:'app_key_key'] + end + if attributes.key?(:'columns') if (value = attributes[:'columns']).is_a?(Array) self.columns = value @@ -140,6 +149,7 @@ def to_hash def ==(o) return true if self.equal?(o) self.class == o.class && + app_key_key == o.app_key_key && columns == o.columns && key_field == o.key_field && table_id == o.table_id && @@ -150,7 +160,7 @@ def ==(o) # @return [Integer] Hash code # @!visibility private def hash - [columns, key_field, table_id, additional_properties].hash + [app_key_key, columns, key_field, table_id, additional_properties].hash end end end diff --git a/lib/datadog_api_client/v2/models/observability_pipeline_fluent_bit_source.rb b/lib/datadog_api_client/v2/models/observability_pipeline_fluent_bit_source.rb index 5026870295d5..470d60060058 100644 --- a/lib/datadog_api_client/v2/models/observability_pipeline_fluent_bit_source.rb +++ b/lib/datadog_api_client/v2/models/observability_pipeline_fluent_bit_source.rb @@ -23,6 +23,9 @@ module DatadogAPIClient::V2 class ObservabilityPipelineFluentBitSource include BaseGenericModel + # Name of the environment variable or secret that holds the listen address for the Fluent Bit receiver. + attr_accessor :address_key + # The unique identifier for this component. Used in other parts of the pipeline to reference this component (for example, as the `input` to downstream components). attr_reader :id @@ -38,6 +41,7 @@ class ObservabilityPipelineFluentBitSource # @!visibility private def self.attribute_map { + :'address_key' => :'address_key', :'id' => :'id', :'tls' => :'tls', :'type' => :'type' @@ -48,6 +52,7 @@ def self.attribute_map # @!visibility private def self.openapi_types { + :'address_key' => :'String', :'id' => :'String', :'tls' => :'ObservabilityPipelineTls', :'type' => :'ObservabilityPipelineFluentBitSourceType' @@ -72,6 +77,10 @@ def initialize(attributes = {}) end } + if attributes.key?(:'address_key') + self.address_key = attributes[:'address_key'] + end + if attributes.key?(:'id') self.id = attributes[:'id'] end @@ -140,6 +149,7 @@ def to_hash def ==(o) return true if self.equal?(o) self.class == o.class && + address_key == o.address_key && id == o.id && tls == o.tls && type == o.type && @@ -150,7 +160,7 @@ def ==(o) # @return [Integer] Hash code # @!visibility private def hash - [id, tls, type, additional_properties].hash + [address_key, id, tls, type, additional_properties].hash end end end diff --git a/lib/datadog_api_client/v2/models/observability_pipeline_fluentd_source.rb b/lib/datadog_api_client/v2/models/observability_pipeline_fluentd_source.rb index dd38ba8d0ab9..ec71db1a9469 100644 --- a/lib/datadog_api_client/v2/models/observability_pipeline_fluentd_source.rb +++ b/lib/datadog_api_client/v2/models/observability_pipeline_fluentd_source.rb @@ -23,6 +23,9 @@ module DatadogAPIClient::V2 class ObservabilityPipelineFluentdSource include BaseGenericModel + # Name of the environment variable or secret that holds the listen address for the Fluent receiver. + attr_accessor :address_key + # The unique identifier for this component. Used in other parts of the pipeline to reference this component (for example, as the `input` to downstream components). attr_reader :id @@ -38,6 +41,7 @@ class ObservabilityPipelineFluentdSource # @!visibility private def self.attribute_map { + :'address_key' => :'address_key', :'id' => :'id', :'tls' => :'tls', :'type' => :'type' @@ -48,6 +52,7 @@ def self.attribute_map # @!visibility private def self.openapi_types { + :'address_key' => :'String', :'id' => :'String', :'tls' => :'ObservabilityPipelineTls', :'type' => :'ObservabilityPipelineFluentdSourceType' @@ -72,6 +77,10 @@ def initialize(attributes = {}) end } + if attributes.key?(:'address_key') + self.address_key = attributes[:'address_key'] + end + if attributes.key?(:'id') self.id = attributes[:'id'] end @@ -140,6 +149,7 @@ def to_hash def ==(o) return true if self.equal?(o) self.class == o.class && + address_key == o.address_key && id == o.id && tls == o.tls && type == o.type && @@ -150,7 +160,7 @@ def ==(o) # @return [Integer] Hash code # @!visibility private def hash - [id, tls, type, additional_properties].hash + [address_key, id, tls, type, additional_properties].hash end end end diff --git a/lib/datadog_api_client/v2/models/observability_pipeline_gcp_auth.rb b/lib/datadog_api_client/v2/models/observability_pipeline_gcp_auth.rb index 69f6282dd038..0a3c68e87477 100644 --- a/lib/datadog_api_client/v2/models/observability_pipeline_gcp_auth.rb +++ b/lib/datadog_api_client/v2/models/observability_pipeline_gcp_auth.rb @@ -17,11 +17,11 @@ require 'time' module DatadogAPIClient::V2 - # GCP credentials used to authenticate with Google Cloud Storage. + # Google Cloud credentials used to authenticate with Google Cloud Storage. class ObservabilityPipelineGcpAuth include BaseGenericModel - # Path to the GCP service account key file. + # Path to the Google Cloud service account key file. attr_reader :credentials_file attr_accessor :additional_properties diff --git a/lib/datadog_api_client/v2/models/observability_pipeline_google_chronicle_destination.rb b/lib/datadog_api_client/v2/models/observability_pipeline_google_chronicle_destination.rb index 6535b32ee31b..50bbfadd1f6d 100644 --- a/lib/datadog_api_client/v2/models/observability_pipeline_google_chronicle_destination.rb +++ b/lib/datadog_api_client/v2/models/observability_pipeline_google_chronicle_destination.rb @@ -23,7 +23,7 @@ module DatadogAPIClient::V2 class ObservabilityPipelineGoogleChronicleDestination include BaseGenericModel - # GCP credentials used to authenticate with Google Cloud Storage. + # Google Cloud credentials used to authenticate with Google Cloud Storage. attr_accessor :auth # Configuration for buffer settings on destination components. @@ -35,6 +35,9 @@ class ObservabilityPipelineGoogleChronicleDestination # The encoding format for the logs sent to Chronicle. attr_accessor :encoding + # Name of the environment variable or secret that holds the Google Chronicle endpoint URL. + attr_accessor :endpoint_url_key + # The unique identifier for this component. attr_reader :id @@ -57,6 +60,7 @@ def self.attribute_map :'buffer' => :'buffer', :'customer_id' => :'customer_id', :'encoding' => :'encoding', + :'endpoint_url_key' => :'endpoint_url_key', :'id' => :'id', :'inputs' => :'inputs', :'log_type' => :'log_type', @@ -72,6 +76,7 @@ def self.openapi_types :'buffer' => :'ObservabilityPipelineBufferOptions', :'customer_id' => :'String', :'encoding' => :'ObservabilityPipelineGoogleChronicleDestinationEncoding', + :'endpoint_url_key' => :'String', :'id' => :'String', :'inputs' => :'Array', :'log_type' => :'String', @@ -113,6 +118,10 @@ def initialize(attributes = {}) self.encoding = attributes[:'encoding'] end + if attributes.key?(:'endpoint_url_key') + self.endpoint_url_key = attributes[:'endpoint_url_key'] + end + if attributes.key?(:'id') self.id = attributes[:'id'] end @@ -213,6 +222,7 @@ def ==(o) buffer == o.buffer && customer_id == o.customer_id && encoding == o.encoding && + endpoint_url_key == o.endpoint_url_key && id == o.id && inputs == o.inputs && log_type == o.log_type && @@ -224,7 +234,7 @@ def ==(o) # @return [Integer] Hash code # @!visibility private def hash - [auth, buffer, customer_id, encoding, id, inputs, log_type, type, additional_properties].hash + [auth, buffer, customer_id, encoding, endpoint_url_key, id, inputs, log_type, type, additional_properties].hash end end end diff --git a/lib/datadog_api_client/v2/models/observability_pipeline_google_cloud_storage_destination.rb b/lib/datadog_api_client/v2/models/observability_pipeline_google_cloud_storage_destination.rb index 9379bc1ecb39..fa01150eb40a 100644 --- a/lib/datadog_api_client/v2/models/observability_pipeline_google_cloud_storage_destination.rb +++ b/lib/datadog_api_client/v2/models/observability_pipeline_google_cloud_storage_destination.rb @@ -18,7 +18,7 @@ module DatadogAPIClient::V2 # The `google_cloud_storage` destination stores logs in a Google Cloud Storage (GCS) bucket. - # It requires a bucket name, GCP authentication, and metadata fields. + # It requires a bucket name, Google Cloud authentication, and metadata fields. # # **Supported pipeline types:** logs class ObservabilityPipelineGoogleCloudStorageDestination @@ -27,7 +27,7 @@ class ObservabilityPipelineGoogleCloudStorageDestination # Access control list setting for objects written to the bucket. attr_accessor :acl - # GCP credentials used to authenticate with Google Cloud Storage. + # Google Cloud credentials used to authenticate with Google Cloud Storage. attr_accessor :auth # Name of the GCS bucket. diff --git a/lib/datadog_api_client/v2/models/observability_pipeline_google_pub_sub_destination.rb b/lib/datadog_api_client/v2/models/observability_pipeline_google_pub_sub_destination.rb index 329b0c19b4b2..e8a29e5d44f7 100644 --- a/lib/datadog_api_client/v2/models/observability_pipeline_google_pub_sub_destination.rb +++ b/lib/datadog_api_client/v2/models/observability_pipeline_google_pub_sub_destination.rb @@ -23,7 +23,7 @@ module DatadogAPIClient::V2 class ObservabilityPipelineGooglePubSubDestination include BaseGenericModel - # GCP credentials used to authenticate with Google Cloud Storage. + # Google Cloud credentials used to authenticate with Google Cloud Storage. attr_accessor :auth # Configuration for buffer settings on destination components. @@ -32,13 +32,16 @@ class ObservabilityPipelineGooglePubSubDestination # Encoding format for log events. attr_reader :encoding + # Name of the environment variable or secret that holds the Google Cloud Pub/Sub endpoint URL. + attr_accessor :endpoint_url_key + # The unique identifier for this component. attr_reader :id # A list of component IDs whose output is used as the `input` for this component. attr_reader :inputs - # The GCP project ID that owns the Pub/Sub topic. + # The Google Cloud project ID that owns the Pub/Sub topic. attr_reader :project # Configuration for enabling TLS encryption between the pipeline component and external services. @@ -59,6 +62,7 @@ def self.attribute_map :'auth' => :'auth', :'buffer' => :'buffer', :'encoding' => :'encoding', + :'endpoint_url_key' => :'endpoint_url_key', :'id' => :'id', :'inputs' => :'inputs', :'project' => :'project', @@ -75,6 +79,7 @@ def self.openapi_types :'auth' => :'ObservabilityPipelineGcpAuth', :'buffer' => :'ObservabilityPipelineBufferOptions', :'encoding' => :'ObservabilityPipelineGooglePubSubDestinationEncoding', + :'endpoint_url_key' => :'String', :'id' => :'String', :'inputs' => :'Array', :'project' => :'String', @@ -114,6 +119,10 @@ def initialize(attributes = {}) self.encoding = attributes[:'encoding'] end + if attributes.key?(:'endpoint_url_key') + self.endpoint_url_key = attributes[:'endpoint_url_key'] + end + if attributes.key?(:'id') self.id = attributes[:'id'] end @@ -243,6 +252,7 @@ def ==(o) auth == o.auth && buffer == o.buffer && encoding == o.encoding && + endpoint_url_key == o.endpoint_url_key && id == o.id && inputs == o.inputs && project == o.project && @@ -256,7 +266,7 @@ def ==(o) # @return [Integer] Hash code # @!visibility private def hash - [auth, buffer, encoding, id, inputs, project, tls, topic, type, additional_properties].hash + [auth, buffer, encoding, endpoint_url_key, id, inputs, project, tls, topic, type, additional_properties].hash end end end diff --git a/lib/datadog_api_client/v2/models/observability_pipeline_google_pub_sub_source.rb b/lib/datadog_api_client/v2/models/observability_pipeline_google_pub_sub_source.rb index 313d862c9833..eb7d263c783e 100644 --- a/lib/datadog_api_client/v2/models/observability_pipeline_google_pub_sub_source.rb +++ b/lib/datadog_api_client/v2/models/observability_pipeline_google_pub_sub_source.rb @@ -23,7 +23,7 @@ module DatadogAPIClient::V2 class ObservabilityPipelineGooglePubSubSource include BaseGenericModel - # GCP credentials used to authenticate with Google Cloud Storage. + # Google Cloud credentials used to authenticate with Google Cloud Storage. attr_accessor :auth # The decoding format used to interpret incoming logs. @@ -32,7 +32,7 @@ class ObservabilityPipelineGooglePubSubSource # The unique identifier for this component. Used in other parts of the pipeline to reference this component (for example, as the `input` to downstream components). attr_reader :id - # The GCP project ID that owns the Pub/Sub subscription. + # The Google Cloud project ID that owns the Pub/Sub subscription. attr_reader :project # The Pub/Sub subscription name from which messages are consumed. diff --git a/lib/datadog_api_client/v2/models/observability_pipeline_http_client_destination.rb b/lib/datadog_api_client/v2/models/observability_pipeline_http_client_destination.rb index b113b66cef97..d9a2d0d3b198 100644 --- a/lib/datadog_api_client/v2/models/observability_pipeline_http_client_destination.rb +++ b/lib/datadog_api_client/v2/models/observability_pipeline_http_client_destination.rb @@ -29,6 +29,9 @@ class ObservabilityPipelineHttpClientDestination # Compression configuration for HTTP requests. attr_accessor :compression + # Name of the environment variable or secret that holds a custom header value (used with custom auth strategies). + attr_accessor :custom_key + # Encoding format for log events. attr_reader :encoding @@ -38,12 +41,24 @@ class ObservabilityPipelineHttpClientDestination # A list of component IDs whose output is used as the input for this component. attr_reader :inputs + # Name of the environment variable or secret that holds the password (used when `auth_strategy` is `basic`). + attr_accessor :password_key + # Configuration for enabling TLS encryption between the pipeline component and external services. attr_accessor :tls + # Name of the environment variable or secret that holds the bearer token (used when `auth_strategy` is `bearer`). + attr_accessor :token_key + # The destination type. The value should always be `http_client`. attr_reader :type + # Name of the environment variable or secret that holds the HTTP endpoint URI. + attr_accessor :uri_key + + # Name of the environment variable or secret that holds the username (used when `auth_strategy` is `basic`). + attr_accessor :username_key + attr_accessor :additional_properties # Attribute mapping from ruby-style variable name to JSON key. @@ -52,11 +67,16 @@ def self.attribute_map { :'auth_strategy' => :'auth_strategy', :'compression' => :'compression', + :'custom_key' => :'custom_key', :'encoding' => :'encoding', :'id' => :'id', :'inputs' => :'inputs', + :'password_key' => :'password_key', :'tls' => :'tls', - :'type' => :'type' + :'token_key' => :'token_key', + :'type' => :'type', + :'uri_key' => :'uri_key', + :'username_key' => :'username_key' } end @@ -66,11 +86,16 @@ def self.openapi_types { :'auth_strategy' => :'ObservabilityPipelineHttpClientDestinationAuthStrategy', :'compression' => :'ObservabilityPipelineHttpClientDestinationCompression', + :'custom_key' => :'String', :'encoding' => :'ObservabilityPipelineHttpClientDestinationEncoding', :'id' => :'String', :'inputs' => :'Array', + :'password_key' => :'String', :'tls' => :'ObservabilityPipelineTls', - :'type' => :'ObservabilityPipelineHttpClientDestinationType' + :'token_key' => :'String', + :'type' => :'ObservabilityPipelineHttpClientDestinationType', + :'uri_key' => :'String', + :'username_key' => :'String' } end @@ -100,6 +125,10 @@ def initialize(attributes = {}) self.compression = attributes[:'compression'] end + if attributes.key?(:'custom_key') + self.custom_key = attributes[:'custom_key'] + end + if attributes.key?(:'encoding') self.encoding = attributes[:'encoding'] end @@ -114,13 +143,29 @@ def initialize(attributes = {}) end end + if attributes.key?(:'password_key') + self.password_key = attributes[:'password_key'] + end + if attributes.key?(:'tls') self.tls = attributes[:'tls'] end + if attributes.key?(:'token_key') + self.token_key = attributes[:'token_key'] + end + if attributes.key?(:'type') self.type = attributes[:'type'] end + + if attributes.key?(:'uri_key') + self.uri_key = attributes[:'uri_key'] + end + + if attributes.key?(:'username_key') + self.username_key = attributes[:'username_key'] + end end # Check to see if the all the properties in the model are valid @@ -202,11 +247,16 @@ def ==(o) self.class == o.class && auth_strategy == o.auth_strategy && compression == o.compression && + custom_key == o.custom_key && encoding == o.encoding && id == o.id && inputs == o.inputs && + password_key == o.password_key && tls == o.tls && + token_key == o.token_key && type == o.type && + uri_key == o.uri_key && + username_key == o.username_key && additional_properties == o.additional_properties end @@ -214,7 +264,7 @@ def ==(o) # @return [Integer] Hash code # @!visibility private def hash - [auth_strategy, compression, encoding, id, inputs, tls, type, additional_properties].hash + [auth_strategy, compression, custom_key, encoding, id, inputs, password_key, tls, token_key, type, uri_key, username_key, additional_properties].hash end end end diff --git a/lib/datadog_api_client/v2/models/observability_pipeline_http_client_source.rb b/lib/datadog_api_client/v2/models/observability_pipeline_http_client_source.rb index 2d9d526579a2..fcf41763ff39 100644 --- a/lib/datadog_api_client/v2/models/observability_pipeline_http_client_source.rb +++ b/lib/datadog_api_client/v2/models/observability_pipeline_http_client_source.rb @@ -26,12 +26,21 @@ class ObservabilityPipelineHttpClientSource # Optional authentication strategy for HTTP requests. attr_accessor :auth_strategy + # Name of the environment variable or secret that holds a custom header value (used with custom auth strategies). + attr_accessor :custom_key + # The decoding format used to interpret incoming logs. attr_reader :decoding + # Name of the environment variable or secret that holds the HTTP endpoint URL to scrape. + attr_accessor :endpoint_url_key + # The unique identifier for this component. Used in other parts of the pipeline to reference this component (for example, as the `input` to downstream components). attr_reader :id + # Name of the environment variable or secret that holds the password (used when `auth_strategy` is `basic`). + attr_accessor :password_key + # The interval (in seconds) between HTTP scrape requests. attr_accessor :scrape_interval_secs @@ -41,9 +50,15 @@ class ObservabilityPipelineHttpClientSource # Configuration for enabling TLS encryption between the pipeline component and external services. attr_accessor :tls + # Name of the environment variable or secret that holds the bearer token (used when `auth_strategy` is `bearer`). + attr_accessor :token_key + # The source type. The value should always be `http_client`. attr_reader :type + # Name of the environment variable or secret that holds the username (used when `auth_strategy` is `basic`). + attr_accessor :username_key + attr_accessor :additional_properties # Attribute mapping from ruby-style variable name to JSON key. @@ -51,12 +66,17 @@ class ObservabilityPipelineHttpClientSource def self.attribute_map { :'auth_strategy' => :'auth_strategy', + :'custom_key' => :'custom_key', :'decoding' => :'decoding', + :'endpoint_url_key' => :'endpoint_url_key', :'id' => :'id', + :'password_key' => :'password_key', :'scrape_interval_secs' => :'scrape_interval_secs', :'scrape_timeout_secs' => :'scrape_timeout_secs', :'tls' => :'tls', - :'type' => :'type' + :'token_key' => :'token_key', + :'type' => :'type', + :'username_key' => :'username_key' } end @@ -65,12 +85,17 @@ def self.attribute_map def self.openapi_types { :'auth_strategy' => :'ObservabilityPipelineHttpClientSourceAuthStrategy', + :'custom_key' => :'String', :'decoding' => :'ObservabilityPipelineDecoding', + :'endpoint_url_key' => :'String', :'id' => :'String', + :'password_key' => :'String', :'scrape_interval_secs' => :'Integer', :'scrape_timeout_secs' => :'Integer', :'tls' => :'ObservabilityPipelineTls', - :'type' => :'ObservabilityPipelineHttpClientSourceType' + :'token_key' => :'String', + :'type' => :'ObservabilityPipelineHttpClientSourceType', + :'username_key' => :'String' } end @@ -96,14 +121,26 @@ def initialize(attributes = {}) self.auth_strategy = attributes[:'auth_strategy'] end + if attributes.key?(:'custom_key') + self.custom_key = attributes[:'custom_key'] + end + if attributes.key?(:'decoding') self.decoding = attributes[:'decoding'] end + if attributes.key?(:'endpoint_url_key') + self.endpoint_url_key = attributes[:'endpoint_url_key'] + end + if attributes.key?(:'id') self.id = attributes[:'id'] end + if attributes.key?(:'password_key') + self.password_key = attributes[:'password_key'] + end + if attributes.key?(:'scrape_interval_secs') self.scrape_interval_secs = attributes[:'scrape_interval_secs'] end @@ -116,9 +153,17 @@ def initialize(attributes = {}) self.tls = attributes[:'tls'] end + if attributes.key?(:'token_key') + self.token_key = attributes[:'token_key'] + end + if attributes.key?(:'type') self.type = attributes[:'type'] end + + if attributes.key?(:'username_key') + self.username_key = attributes[:'username_key'] + end end # Check to see if the all the properties in the model are valid @@ -188,12 +233,17 @@ def ==(o) return true if self.equal?(o) self.class == o.class && auth_strategy == o.auth_strategy && + custom_key == o.custom_key && decoding == o.decoding && + endpoint_url_key == o.endpoint_url_key && id == o.id && + password_key == o.password_key && scrape_interval_secs == o.scrape_interval_secs && scrape_timeout_secs == o.scrape_timeout_secs && tls == o.tls && + token_key == o.token_key && type == o.type && + username_key == o.username_key && additional_properties == o.additional_properties end @@ -201,7 +251,7 @@ def ==(o) # @return [Integer] Hash code # @!visibility private def hash - [auth_strategy, decoding, id, scrape_interval_secs, scrape_timeout_secs, tls, type, additional_properties].hash + [auth_strategy, custom_key, decoding, endpoint_url_key, id, password_key, scrape_interval_secs, scrape_timeout_secs, tls, token_key, type, username_key, additional_properties].hash end end end diff --git a/lib/datadog_api_client/v2/models/observability_pipeline_http_server_source.rb b/lib/datadog_api_client/v2/models/observability_pipeline_http_server_source.rb index 271315644f12..2416c612d24d 100644 --- a/lib/datadog_api_client/v2/models/observability_pipeline_http_server_source.rb +++ b/lib/datadog_api_client/v2/models/observability_pipeline_http_server_source.rb @@ -23,32 +23,48 @@ module DatadogAPIClient::V2 class ObservabilityPipelineHttpServerSource include BaseGenericModel + # Name of the environment variable or secret that holds the listen address for the HTTP server. + attr_accessor :address_key + # HTTP authentication method. attr_reader :auth_strategy + # Name of the environment variable or secret that holds a custom header value (used with custom auth strategies). + attr_accessor :custom_key + # The decoding format used to interpret incoming logs. attr_reader :decoding # Unique ID for the HTTP server source. attr_reader :id + # Name of the environment variable or secret that holds the password (used when `auth_strategy` is `plain`). + attr_accessor :password_key + # Configuration for enabling TLS encryption between the pipeline component and external services. attr_accessor :tls # The source type. The value should always be `http_server`. attr_reader :type + # Name of the environment variable or secret that holds the username (used when `auth_strategy` is `plain`). + attr_accessor :username_key + attr_accessor :additional_properties # Attribute mapping from ruby-style variable name to JSON key. # @!visibility private def self.attribute_map { + :'address_key' => :'address_key', :'auth_strategy' => :'auth_strategy', + :'custom_key' => :'custom_key', :'decoding' => :'decoding', :'id' => :'id', + :'password_key' => :'password_key', :'tls' => :'tls', - :'type' => :'type' + :'type' => :'type', + :'username_key' => :'username_key' } end @@ -56,11 +72,15 @@ def self.attribute_map # @!visibility private def self.openapi_types { + :'address_key' => :'String', :'auth_strategy' => :'ObservabilityPipelineHttpServerSourceAuthStrategy', + :'custom_key' => :'String', :'decoding' => :'ObservabilityPipelineDecoding', :'id' => :'String', + :'password_key' => :'String', :'tls' => :'ObservabilityPipelineTls', - :'type' => :'ObservabilityPipelineHttpServerSourceType' + :'type' => :'ObservabilityPipelineHttpServerSourceType', + :'username_key' => :'String' } end @@ -82,10 +102,18 @@ def initialize(attributes = {}) end } + if attributes.key?(:'address_key') + self.address_key = attributes[:'address_key'] + end + if attributes.key?(:'auth_strategy') self.auth_strategy = attributes[:'auth_strategy'] end + if attributes.key?(:'custom_key') + self.custom_key = attributes[:'custom_key'] + end + if attributes.key?(:'decoding') self.decoding = attributes[:'decoding'] end @@ -94,6 +122,10 @@ def initialize(attributes = {}) self.id = attributes[:'id'] end + if attributes.key?(:'password_key') + self.password_key = attributes[:'password_key'] + end + if attributes.key?(:'tls') self.tls = attributes[:'tls'] end @@ -101,6 +133,10 @@ def initialize(attributes = {}) if attributes.key?(:'type') self.type = attributes[:'type'] end + + if attributes.key?(:'username_key') + self.username_key = attributes[:'username_key'] + end end # Check to see if the all the properties in the model are valid @@ -180,11 +216,15 @@ def to_hash def ==(o) return true if self.equal?(o) self.class == o.class && + address_key == o.address_key && auth_strategy == o.auth_strategy && + custom_key == o.custom_key && decoding == o.decoding && id == o.id && + password_key == o.password_key && tls == o.tls && type == o.type && + username_key == o.username_key && additional_properties == o.additional_properties end @@ -192,7 +232,7 @@ def ==(o) # @return [Integer] Hash code # @!visibility private def hash - [auth_strategy, decoding, id, tls, type, additional_properties].hash + [address_key, auth_strategy, custom_key, decoding, id, password_key, tls, type, username_key, additional_properties].hash end end end diff --git a/lib/datadog_api_client/v2/models/observability_pipeline_kafka_destination.rb b/lib/datadog_api_client/v2/models/observability_pipeline_kafka_destination.rb index 5ed8aea58afb..7c4be31ea82d 100644 --- a/lib/datadog_api_client/v2/models/observability_pipeline_kafka_destination.rb +++ b/lib/datadog_api_client/v2/models/observability_pipeline_kafka_destination.rb @@ -23,6 +23,9 @@ module DatadogAPIClient::V2 class ObservabilityPipelineKafkaDestination include BaseGenericModel + # Name of the environment variable or secret that holds the Kafka bootstrap servers list. + attr_accessor :bootstrap_servers_key + # Compression codec for Kafka messages. attr_accessor :compression @@ -74,6 +77,7 @@ class ObservabilityPipelineKafkaDestination # @!visibility private def self.attribute_map { + :'bootstrap_servers_key' => :'bootstrap_servers_key', :'compression' => :'compression', :'encoding' => :'encoding', :'headers_key' => :'headers_key', @@ -96,6 +100,7 @@ def self.attribute_map # @!visibility private def self.openapi_types { + :'bootstrap_servers_key' => :'String', :'compression' => :'ObservabilityPipelineKafkaDestinationCompression', :'encoding' => :'ObservabilityPipelineKafkaDestinationEncoding', :'headers_key' => :'String', @@ -132,6 +137,10 @@ def initialize(attributes = {}) end } + if attributes.key?(:'bootstrap_servers_key') + self.bootstrap_servers_key = attributes[:'bootstrap_servers_key'] + end + if attributes.key?(:'compression') self.compression = attributes[:'compression'] end @@ -333,6 +342,7 @@ def to_hash def ==(o) return true if self.equal?(o) self.class == o.class && + bootstrap_servers_key == o.bootstrap_servers_key && compression == o.compression && encoding == o.encoding && headers_key == o.headers_key && @@ -355,7 +365,7 @@ def ==(o) # @return [Integer] Hash code # @!visibility private def hash - [compression, encoding, headers_key, id, inputs, key_field, librdkafka_options, message_timeout_ms, rate_limit_duration_secs, rate_limit_num, sasl, socket_timeout_ms, tls, topic, type, additional_properties].hash + [bootstrap_servers_key, compression, encoding, headers_key, id, inputs, key_field, librdkafka_options, message_timeout_ms, rate_limit_duration_secs, rate_limit_num, sasl, socket_timeout_ms, tls, topic, type, additional_properties].hash end end end diff --git a/lib/datadog_api_client/v2/models/observability_pipeline_kafka_sasl.rb b/lib/datadog_api_client/v2/models/observability_pipeline_kafka_sasl.rb index 88fb7915b9da..26b2640f07f0 100644 --- a/lib/datadog_api_client/v2/models/observability_pipeline_kafka_sasl.rb +++ b/lib/datadog_api_client/v2/models/observability_pipeline_kafka_sasl.rb @@ -24,13 +24,21 @@ class ObservabilityPipelineKafkaSasl # SASL mechanism used for Kafka authentication. attr_accessor :mechanism + # Name of the environment variable or secret that holds the SASL password. + attr_accessor :password_key + + # Name of the environment variable or secret that holds the SASL username. + attr_accessor :username_key + attr_accessor :additional_properties # Attribute mapping from ruby-style variable name to JSON key. # @!visibility private def self.attribute_map { - :'mechanism' => :'mechanism' + :'mechanism' => :'mechanism', + :'password_key' => :'password_key', + :'username_key' => :'username_key' } end @@ -38,7 +46,9 @@ def self.attribute_map # @!visibility private def self.openapi_types { - :'mechanism' => :'ObservabilityPipelineKafkaSaslMechanism' + :'mechanism' => :'ObservabilityPipelineKafkaSaslMechanism', + :'password_key' => :'String', + :'username_key' => :'String' } end @@ -63,6 +73,14 @@ def initialize(attributes = {}) if attributes.key?(:'mechanism') self.mechanism = attributes[:'mechanism'] end + + if attributes.key?(:'password_key') + self.password_key = attributes[:'password_key'] + end + + if attributes.key?(:'username_key') + self.username_key = attributes[:'username_key'] + end end # Returns the object in the form of hash, with additionalProperties support. @@ -92,6 +110,8 @@ def ==(o) return true if self.equal?(o) self.class == o.class && mechanism == o.mechanism && + password_key == o.password_key && + username_key == o.username_key && additional_properties == o.additional_properties end @@ -99,7 +119,7 @@ def ==(o) # @return [Integer] Hash code # @!visibility private def hash - [mechanism, additional_properties].hash + [mechanism, password_key, username_key, additional_properties].hash end end end diff --git a/lib/datadog_api_client/v2/models/observability_pipeline_kafka_source.rb b/lib/datadog_api_client/v2/models/observability_pipeline_kafka_source.rb index ccba9f42446f..b9081456b0d7 100644 --- a/lib/datadog_api_client/v2/models/observability_pipeline_kafka_source.rb +++ b/lib/datadog_api_client/v2/models/observability_pipeline_kafka_source.rb @@ -23,6 +23,9 @@ module DatadogAPIClient::V2 class ObservabilityPipelineKafkaSource include BaseGenericModel + # Name of the environment variable or secret that holds the Kafka bootstrap servers list. + attr_accessor :bootstrap_servers_key + # Consumer group ID used by the Kafka client. attr_reader :group_id @@ -50,6 +53,7 @@ class ObservabilityPipelineKafkaSource # @!visibility private def self.attribute_map { + :'bootstrap_servers_key' => :'bootstrap_servers_key', :'group_id' => :'group_id', :'id' => :'id', :'librdkafka_options' => :'librdkafka_options', @@ -64,6 +68,7 @@ def self.attribute_map # @!visibility private def self.openapi_types { + :'bootstrap_servers_key' => :'String', :'group_id' => :'String', :'id' => :'String', :'librdkafka_options' => :'Array', @@ -92,6 +97,10 @@ def initialize(attributes = {}) end } + if attributes.key?(:'bootstrap_servers_key') + self.bootstrap_servers_key = attributes[:'bootstrap_servers_key'] + end + if attributes.key?(:'group_id') self.group_id = attributes[:'group_id'] end @@ -202,6 +211,7 @@ def to_hash def ==(o) return true if self.equal?(o) self.class == o.class && + bootstrap_servers_key == o.bootstrap_servers_key && group_id == o.group_id && id == o.id && librdkafka_options == o.librdkafka_options && @@ -216,7 +226,7 @@ def ==(o) # @return [Integer] Hash code # @!visibility private def hash - [group_id, id, librdkafka_options, sasl, tls, topics, type, additional_properties].hash + [bootstrap_servers_key, group_id, id, librdkafka_options, sasl, tls, topics, type, additional_properties].hash end end end diff --git a/lib/datadog_api_client/v2/models/observability_pipeline_logstash_source.rb b/lib/datadog_api_client/v2/models/observability_pipeline_logstash_source.rb index 4d20f0e57ea2..15b52f5eaaae 100644 --- a/lib/datadog_api_client/v2/models/observability_pipeline_logstash_source.rb +++ b/lib/datadog_api_client/v2/models/observability_pipeline_logstash_source.rb @@ -23,6 +23,9 @@ module DatadogAPIClient::V2 class ObservabilityPipelineLogstashSource include BaseGenericModel + # Name of the environment variable or secret that holds the listen address for the Logstash receiver. + attr_accessor :address_key + # The unique identifier for this component. Used in other parts of the pipeline to reference this component (for example, as the `input` to downstream components). attr_reader :id @@ -38,6 +41,7 @@ class ObservabilityPipelineLogstashSource # @!visibility private def self.attribute_map { + :'address_key' => :'address_key', :'id' => :'id', :'tls' => :'tls', :'type' => :'type' @@ -48,6 +52,7 @@ def self.attribute_map # @!visibility private def self.openapi_types { + :'address_key' => :'String', :'id' => :'String', :'tls' => :'ObservabilityPipelineTls', :'type' => :'ObservabilityPipelineLogstashSourceType' @@ -72,6 +77,10 @@ def initialize(attributes = {}) end } + if attributes.key?(:'address_key') + self.address_key = attributes[:'address_key'] + end + if attributes.key?(:'id') self.id = attributes[:'id'] end @@ -140,6 +149,7 @@ def to_hash def ==(o) return true if self.equal?(o) self.class == o.class && + address_key == o.address_key && id == o.id && tls == o.tls && type == o.type && @@ -150,7 +160,7 @@ def ==(o) # @return [Integer] Hash code # @!visibility private def hash - [id, tls, type, additional_properties].hash + [address_key, id, tls, type, additional_properties].hash end end end diff --git a/lib/datadog_api_client/v2/models/observability_pipeline_new_relic_destination.rb b/lib/datadog_api_client/v2/models/observability_pipeline_new_relic_destination.rb index 3bbcfb490b42..234f7ed440a9 100644 --- a/lib/datadog_api_client/v2/models/observability_pipeline_new_relic_destination.rb +++ b/lib/datadog_api_client/v2/models/observability_pipeline_new_relic_destination.rb @@ -23,6 +23,9 @@ module DatadogAPIClient::V2 class ObservabilityPipelineNewRelicDestination include BaseGenericModel + # Name of the environment variable or secret that holds the New Relic account ID. + attr_accessor :account_id_key + # Configuration for buffer settings on destination components. attr_accessor :buffer @@ -32,6 +35,9 @@ class ObservabilityPipelineNewRelicDestination # A list of component IDs whose output is used as the `input` for this component. attr_reader :inputs + # Name of the environment variable or secret that holds the New Relic license key. + attr_accessor :license_key_key + # The New Relic region. attr_reader :region @@ -44,9 +50,11 @@ class ObservabilityPipelineNewRelicDestination # @!visibility private def self.attribute_map { + :'account_id_key' => :'account_id_key', :'buffer' => :'buffer', :'id' => :'id', :'inputs' => :'inputs', + :'license_key_key' => :'license_key_key', :'region' => :'region', :'type' => :'type' } @@ -56,9 +64,11 @@ def self.attribute_map # @!visibility private def self.openapi_types { + :'account_id_key' => :'String', :'buffer' => :'ObservabilityPipelineBufferOptions', :'id' => :'String', :'inputs' => :'Array', + :'license_key_key' => :'String', :'region' => :'ObservabilityPipelineNewRelicDestinationRegion', :'type' => :'ObservabilityPipelineNewRelicDestinationType' } @@ -82,6 +92,10 @@ def initialize(attributes = {}) end } + if attributes.key?(:'account_id_key') + self.account_id_key = attributes[:'account_id_key'] + end + if attributes.key?(:'buffer') self.buffer = attributes[:'buffer'] end @@ -96,6 +110,10 @@ def initialize(attributes = {}) end end + if attributes.key?(:'license_key_key') + self.license_key_key = attributes[:'license_key_key'] + end + if attributes.key?(:'region') self.region = attributes[:'region'] end @@ -182,9 +200,11 @@ def to_hash def ==(o) return true if self.equal?(o) self.class == o.class && + account_id_key == o.account_id_key && buffer == o.buffer && id == o.id && inputs == o.inputs && + license_key_key == o.license_key_key && region == o.region && type == o.type && additional_properties == o.additional_properties @@ -194,7 +214,7 @@ def ==(o) # @return [Integer] Hash code # @!visibility private def hash - [buffer, id, inputs, region, type, additional_properties].hash + [account_id_key, buffer, id, inputs, license_key_key, region, type, additional_properties].hash end end end diff --git a/lib/datadog_api_client/v2/models/observability_pipeline_open_search_destination.rb b/lib/datadog_api_client/v2/models/observability_pipeline_open_search_destination.rb index 72e2798c1cb8..cc19737720b4 100644 --- a/lib/datadog_api_client/v2/models/observability_pipeline_open_search_destination.rb +++ b/lib/datadog_api_client/v2/models/observability_pipeline_open_search_destination.rb @@ -23,6 +23,10 @@ module DatadogAPIClient::V2 class ObservabilityPipelineOpenSearchDestination include BaseGenericModel + # Authentication settings for the Elasticsearch destination. + # When `strategy` is `basic`, use `username_key` and `password_key` to reference credentials stored in environment variables or secrets. + attr_accessor :auth + # Configuration for buffer settings on destination components. attr_accessor :buffer @@ -32,6 +36,9 @@ class ObservabilityPipelineOpenSearchDestination # Configuration options for writing to OpenSearch Data Streams instead of a fixed index. attr_accessor :data_stream + # Name of the environment variable or secret that holds the OpenSearch endpoint URL. + attr_accessor :endpoint_url_key + # The unique identifier for this component. attr_reader :id @@ -47,9 +54,11 @@ class ObservabilityPipelineOpenSearchDestination # @!visibility private def self.attribute_map { + :'auth' => :'auth', :'buffer' => :'buffer', :'bulk_index' => :'bulk_index', :'data_stream' => :'data_stream', + :'endpoint_url_key' => :'endpoint_url_key', :'id' => :'id', :'inputs' => :'inputs', :'type' => :'type' @@ -60,9 +69,11 @@ def self.attribute_map # @!visibility private def self.openapi_types { + :'auth' => :'ObservabilityPipelineElasticsearchDestinationAuth', :'buffer' => :'ObservabilityPipelineBufferOptions', :'bulk_index' => :'String', :'data_stream' => :'ObservabilityPipelineOpenSearchDestinationDataStream', + :'endpoint_url_key' => :'String', :'id' => :'String', :'inputs' => :'Array', :'type' => :'ObservabilityPipelineOpenSearchDestinationType' @@ -87,6 +98,10 @@ def initialize(attributes = {}) end } + if attributes.key?(:'auth') + self.auth = attributes[:'auth'] + end + if attributes.key?(:'buffer') self.buffer = attributes[:'buffer'] end @@ -99,6 +114,10 @@ def initialize(attributes = {}) self.data_stream = attributes[:'data_stream'] end + if attributes.key?(:'endpoint_url_key') + self.endpoint_url_key = attributes[:'endpoint_url_key'] + end + if attributes.key?(:'id') self.id = attributes[:'id'] end @@ -180,9 +199,11 @@ def to_hash def ==(o) return true if self.equal?(o) self.class == o.class && + auth == o.auth && buffer == o.buffer && bulk_index == o.bulk_index && data_stream == o.data_stream && + endpoint_url_key == o.endpoint_url_key && id == o.id && inputs == o.inputs && type == o.type && @@ -193,7 +214,7 @@ def ==(o) # @return [Integer] Hash code # @!visibility private def hash - [buffer, bulk_index, data_stream, id, inputs, type, additional_properties].hash + [auth, buffer, bulk_index, data_stream, endpoint_url_key, id, inputs, type, additional_properties].hash end end end diff --git a/lib/datadog_api_client/v2/models/observability_pipeline_rsyslog_destination.rb b/lib/datadog_api_client/v2/models/observability_pipeline_rsyslog_destination.rb index 5a1c16dc7974..574d0a6bb890 100644 --- a/lib/datadog_api_client/v2/models/observability_pipeline_rsyslog_destination.rb +++ b/lib/datadog_api_client/v2/models/observability_pipeline_rsyslog_destination.rb @@ -26,6 +26,9 @@ class ObservabilityPipelineRsyslogDestination # Configuration for buffer settings on destination components. attr_accessor :buffer + # Name of the environment variable or secret that holds the syslog server endpoint URL. + attr_accessor :endpoint_url_key + # The unique identifier for this component. attr_reader :id @@ -48,6 +51,7 @@ class ObservabilityPipelineRsyslogDestination def self.attribute_map { :'buffer' => :'buffer', + :'endpoint_url_key' => :'endpoint_url_key', :'id' => :'id', :'inputs' => :'inputs', :'keepalive' => :'keepalive', @@ -61,6 +65,7 @@ def self.attribute_map def self.openapi_types { :'buffer' => :'ObservabilityPipelineBufferOptions', + :'endpoint_url_key' => :'String', :'id' => :'String', :'inputs' => :'Array', :'keepalive' => :'Integer', @@ -91,6 +96,10 @@ def initialize(attributes = {}) self.buffer = attributes[:'buffer'] end + if attributes.key?(:'endpoint_url_key') + self.endpoint_url_key = attributes[:'endpoint_url_key'] + end + if attributes.key?(:'id') self.id = attributes[:'id'] end @@ -192,6 +201,7 @@ def ==(o) return true if self.equal?(o) self.class == o.class && buffer == o.buffer && + endpoint_url_key == o.endpoint_url_key && id == o.id && inputs == o.inputs && keepalive == o.keepalive && @@ -204,7 +214,7 @@ def ==(o) # @return [Integer] Hash code # @!visibility private def hash - [buffer, id, inputs, keepalive, tls, type, additional_properties].hash + [buffer, endpoint_url_key, id, inputs, keepalive, tls, type, additional_properties].hash end end end diff --git a/lib/datadog_api_client/v2/models/observability_pipeline_rsyslog_source.rb b/lib/datadog_api_client/v2/models/observability_pipeline_rsyslog_source.rb index c7a88f0e7715..bbda5491fb04 100644 --- a/lib/datadog_api_client/v2/models/observability_pipeline_rsyslog_source.rb +++ b/lib/datadog_api_client/v2/models/observability_pipeline_rsyslog_source.rb @@ -23,6 +23,9 @@ module DatadogAPIClient::V2 class ObservabilityPipelineRsyslogSource include BaseGenericModel + # Name of the environment variable or secret that holds the listen address for the syslog receiver. + attr_accessor :address_key + # The unique identifier for this component. Used in other parts of the pipeline to reference this component (for example, as the `input` to downstream components). attr_reader :id @@ -41,6 +44,7 @@ class ObservabilityPipelineRsyslogSource # @!visibility private def self.attribute_map { + :'address_key' => :'address_key', :'id' => :'id', :'mode' => :'mode', :'tls' => :'tls', @@ -52,6 +56,7 @@ def self.attribute_map # @!visibility private def self.openapi_types { + :'address_key' => :'String', :'id' => :'String', :'mode' => :'ObservabilityPipelineSyslogSourceMode', :'tls' => :'ObservabilityPipelineTls', @@ -77,6 +82,10 @@ def initialize(attributes = {}) end } + if attributes.key?(:'address_key') + self.address_key = attributes[:'address_key'] + end + if attributes.key?(:'id') self.id = attributes[:'id'] end @@ -160,6 +169,7 @@ def to_hash def ==(o) return true if self.equal?(o) self.class == o.class && + address_key == o.address_key && id == o.id && mode == o.mode && tls == o.tls && @@ -171,7 +181,7 @@ def ==(o) # @return [Integer] Hash code # @!visibility private def hash - [id, mode, tls, type, additional_properties].hash + [address_key, id, mode, tls, type, additional_properties].hash end end end diff --git a/lib/datadog_api_client/v2/models/observability_pipeline_sentinel_one_destination.rb b/lib/datadog_api_client/v2/models/observability_pipeline_sentinel_one_destination.rb index afd36fa79c29..dce20dc5dd36 100644 --- a/lib/datadog_api_client/v2/models/observability_pipeline_sentinel_one_destination.rb +++ b/lib/datadog_api_client/v2/models/observability_pipeline_sentinel_one_destination.rb @@ -35,6 +35,9 @@ class ObservabilityPipelineSentinelOneDestination # The SentinelOne region to send logs to. attr_reader :region + # Name of the environment variable or secret that holds the SentinelOne API token. + attr_accessor :token_key + # The destination type. The value should always be `sentinel_one`. attr_reader :type @@ -48,6 +51,7 @@ def self.attribute_map :'id' => :'id', :'inputs' => :'inputs', :'region' => :'region', + :'token_key' => :'token_key', :'type' => :'type' } end @@ -60,6 +64,7 @@ def self.openapi_types :'id' => :'String', :'inputs' => :'Array', :'region' => :'ObservabilityPipelineSentinelOneDestinationRegion', + :'token_key' => :'String', :'type' => :'ObservabilityPipelineSentinelOneDestinationType' } end @@ -100,6 +105,10 @@ def initialize(attributes = {}) self.region = attributes[:'region'] end + if attributes.key?(:'token_key') + self.token_key = attributes[:'token_key'] + end + if attributes.key?(:'type') self.type = attributes[:'type'] end @@ -186,6 +195,7 @@ def ==(o) id == o.id && inputs == o.inputs && region == o.region && + token_key == o.token_key && type == o.type && additional_properties == o.additional_properties end @@ -194,7 +204,7 @@ def ==(o) # @return [Integer] Hash code # @!visibility private def hash - [buffer, id, inputs, region, type, additional_properties].hash + [buffer, id, inputs, region, token_key, type, additional_properties].hash end end end diff --git a/lib/datadog_api_client/v2/models/observability_pipeline_socket_destination.rb b/lib/datadog_api_client/v2/models/observability_pipeline_socket_destination.rb index 44861a7907a1..64e137246fa9 100644 --- a/lib/datadog_api_client/v2/models/observability_pipeline_socket_destination.rb +++ b/lib/datadog_api_client/v2/models/observability_pipeline_socket_destination.rb @@ -23,6 +23,9 @@ module DatadogAPIClient::V2 class ObservabilityPipelineSocketDestination include BaseGenericModel + # Name of the environment variable or secret that holds the socket address (host:port). + attr_accessor :address_key + # Configuration for buffer settings on destination components. attr_accessor :buffer @@ -53,6 +56,7 @@ class ObservabilityPipelineSocketDestination # @!visibility private def self.attribute_map { + :'address_key' => :'address_key', :'buffer' => :'buffer', :'encoding' => :'encoding', :'framing' => :'framing', @@ -68,6 +72,7 @@ def self.attribute_map # @!visibility private def self.openapi_types { + :'address_key' => :'String', :'buffer' => :'ObservabilityPipelineBufferOptions', :'encoding' => :'ObservabilityPipelineSocketDestinationEncoding', :'framing' => :'ObservabilityPipelineSocketDestinationFraming', @@ -97,6 +102,10 @@ def initialize(attributes = {}) end } + if attributes.key?(:'address_key') + self.address_key = attributes[:'address_key'] + end + if attributes.key?(:'buffer') self.buffer = attributes[:'buffer'] end @@ -231,6 +240,7 @@ def to_hash def ==(o) return true if self.equal?(o) self.class == o.class && + address_key == o.address_key && buffer == o.buffer && encoding == o.encoding && framing == o.framing && @@ -246,7 +256,7 @@ def ==(o) # @return [Integer] Hash code # @!visibility private def hash - [buffer, encoding, framing, id, inputs, mode, tls, type, additional_properties].hash + [address_key, buffer, encoding, framing, id, inputs, mode, tls, type, additional_properties].hash end end end diff --git a/lib/datadog_api_client/v2/models/observability_pipeline_socket_source.rb b/lib/datadog_api_client/v2/models/observability_pipeline_socket_source.rb index 802310ffad1e..49b0b874d3fa 100644 --- a/lib/datadog_api_client/v2/models/observability_pipeline_socket_source.rb +++ b/lib/datadog_api_client/v2/models/observability_pipeline_socket_source.rb @@ -23,6 +23,9 @@ module DatadogAPIClient::V2 class ObservabilityPipelineSocketSource include BaseGenericModel + # Name of the environment variable or secret that holds the listen address for the socket. + attr_accessor :address_key + # Framing method configuration for the socket source. attr_reader :framing @@ -44,6 +47,7 @@ class ObservabilityPipelineSocketSource # @!visibility private def self.attribute_map { + :'address_key' => :'address_key', :'framing' => :'framing', :'id' => :'id', :'mode' => :'mode', @@ -56,6 +60,7 @@ def self.attribute_map # @!visibility private def self.openapi_types { + :'address_key' => :'String', :'framing' => :'ObservabilityPipelineSocketSourceFraming', :'id' => :'String', :'mode' => :'ObservabilityPipelineSocketSourceMode', @@ -82,6 +87,10 @@ def initialize(attributes = {}) end } + if attributes.key?(:'address_key') + self.address_key = attributes[:'address_key'] + end + if attributes.key?(:'framing') self.framing = attributes[:'framing'] end @@ -180,6 +189,7 @@ def to_hash def ==(o) return true if self.equal?(o) self.class == o.class && + address_key == o.address_key && framing == o.framing && id == o.id && mode == o.mode && @@ -192,7 +202,7 @@ def ==(o) # @return [Integer] Hash code # @!visibility private def hash - [framing, id, mode, tls, type, additional_properties].hash + [address_key, framing, id, mode, tls, type, additional_properties].hash end end end diff --git a/lib/datadog_api_client/v2/models/observability_pipeline_splunk_hec_destination.rb b/lib/datadog_api_client/v2/models/observability_pipeline_splunk_hec_destination.rb index 7c504d81e51b..6f535df14c7e 100644 --- a/lib/datadog_api_client/v2/models/observability_pipeline_splunk_hec_destination.rb +++ b/lib/datadog_api_client/v2/models/observability_pipeline_splunk_hec_destination.rb @@ -33,6 +33,9 @@ class ObservabilityPipelineSplunkHecDestination # Encoding format for log events. attr_accessor :encoding + # Name of the environment variable or secret that holds the Splunk HEC endpoint URL. + attr_accessor :endpoint_url_key + # The unique identifier for this component. Used in other parts of the pipeline to reference this component (for example, as the `input` to downstream components). attr_reader :id @@ -45,6 +48,9 @@ class ObservabilityPipelineSplunkHecDestination # The Splunk sourcetype to assign to log events. attr_accessor :sourcetype + # Name of the environment variable or secret that holds the Splunk HEC token. + attr_accessor :token_key + # The destination type. Always `splunk_hec`. attr_reader :type @@ -57,10 +63,12 @@ def self.attribute_map :'auto_extract_timestamp' => :'auto_extract_timestamp', :'buffer' => :'buffer', :'encoding' => :'encoding', + :'endpoint_url_key' => :'endpoint_url_key', :'id' => :'id', :'index' => :'index', :'inputs' => :'inputs', :'sourcetype' => :'sourcetype', + :'token_key' => :'token_key', :'type' => :'type' } end @@ -72,10 +80,12 @@ def self.openapi_types :'auto_extract_timestamp' => :'Boolean', :'buffer' => :'ObservabilityPipelineBufferOptions', :'encoding' => :'ObservabilityPipelineSplunkHecDestinationEncoding', + :'endpoint_url_key' => :'String', :'id' => :'String', :'index' => :'String', :'inputs' => :'Array', :'sourcetype' => :'String', + :'token_key' => :'String', :'type' => :'ObservabilityPipelineSplunkHecDestinationType' } end @@ -110,6 +120,10 @@ def initialize(attributes = {}) self.encoding = attributes[:'encoding'] end + if attributes.key?(:'endpoint_url_key') + self.endpoint_url_key = attributes[:'endpoint_url_key'] + end + if attributes.key?(:'id') self.id = attributes[:'id'] end @@ -128,6 +142,10 @@ def initialize(attributes = {}) self.sourcetype = attributes[:'sourcetype'] end + if attributes.key?(:'token_key') + self.token_key = attributes[:'token_key'] + end + if attributes.key?(:'type') self.type = attributes[:'type'] end @@ -202,10 +220,12 @@ def ==(o) auto_extract_timestamp == o.auto_extract_timestamp && buffer == o.buffer && encoding == o.encoding && + endpoint_url_key == o.endpoint_url_key && id == o.id && index == o.index && inputs == o.inputs && sourcetype == o.sourcetype && + token_key == o.token_key && type == o.type && additional_properties == o.additional_properties end @@ -214,7 +234,7 @@ def ==(o) # @return [Integer] Hash code # @!visibility private def hash - [auto_extract_timestamp, buffer, encoding, id, index, inputs, sourcetype, type, additional_properties].hash + [auto_extract_timestamp, buffer, encoding, endpoint_url_key, id, index, inputs, sourcetype, token_key, type, additional_properties].hash end end end diff --git a/lib/datadog_api_client/v2/models/observability_pipeline_splunk_hec_source.rb b/lib/datadog_api_client/v2/models/observability_pipeline_splunk_hec_source.rb index 0845f1540745..7856341b6508 100644 --- a/lib/datadog_api_client/v2/models/observability_pipeline_splunk_hec_source.rb +++ b/lib/datadog_api_client/v2/models/observability_pipeline_splunk_hec_source.rb @@ -23,6 +23,9 @@ module DatadogAPIClient::V2 class ObservabilityPipelineSplunkHecSource include BaseGenericModel + # Name of the environment variable or secret that holds the listen address for the HEC API. + attr_accessor :address_key + # The unique identifier for this component. Used in other parts of the pipeline to reference this component (for example, as the `input` to downstream components). attr_reader :id @@ -38,6 +41,7 @@ class ObservabilityPipelineSplunkHecSource # @!visibility private def self.attribute_map { + :'address_key' => :'address_key', :'id' => :'id', :'tls' => :'tls', :'type' => :'type' @@ -48,6 +52,7 @@ def self.attribute_map # @!visibility private def self.openapi_types { + :'address_key' => :'String', :'id' => :'String', :'tls' => :'ObservabilityPipelineTls', :'type' => :'ObservabilityPipelineSplunkHecSourceType' @@ -72,6 +77,10 @@ def initialize(attributes = {}) end } + if attributes.key?(:'address_key') + self.address_key = attributes[:'address_key'] + end + if attributes.key?(:'id') self.id = attributes[:'id'] end @@ -140,6 +149,7 @@ def to_hash def ==(o) return true if self.equal?(o) self.class == o.class && + address_key == o.address_key && id == o.id && tls == o.tls && type == o.type && @@ -150,7 +160,7 @@ def ==(o) # @return [Integer] Hash code # @!visibility private def hash - [id, tls, type, additional_properties].hash + [address_key, id, tls, type, additional_properties].hash end end end diff --git a/lib/datadog_api_client/v2/models/observability_pipeline_splunk_tcp_source.rb b/lib/datadog_api_client/v2/models/observability_pipeline_splunk_tcp_source.rb index a78d633227c2..d0ef4902c685 100644 --- a/lib/datadog_api_client/v2/models/observability_pipeline_splunk_tcp_source.rb +++ b/lib/datadog_api_client/v2/models/observability_pipeline_splunk_tcp_source.rb @@ -24,6 +24,9 @@ module DatadogAPIClient::V2 class ObservabilityPipelineSplunkTcpSource include BaseGenericModel + # Name of the environment variable or secret that holds the listen address for the Splunk TCP receiver. + attr_accessor :address_key + # The unique identifier for this component. Used in other parts of the pipeline to reference this component (for example, as the `input` to downstream components). attr_reader :id @@ -39,6 +42,7 @@ class ObservabilityPipelineSplunkTcpSource # @!visibility private def self.attribute_map { + :'address_key' => :'address_key', :'id' => :'id', :'tls' => :'tls', :'type' => :'type' @@ -49,6 +53,7 @@ def self.attribute_map # @!visibility private def self.openapi_types { + :'address_key' => :'String', :'id' => :'String', :'tls' => :'ObservabilityPipelineTls', :'type' => :'ObservabilityPipelineSplunkTcpSourceType' @@ -73,6 +78,10 @@ def initialize(attributes = {}) end } + if attributes.key?(:'address_key') + self.address_key = attributes[:'address_key'] + end + if attributes.key?(:'id') self.id = attributes[:'id'] end @@ -141,6 +150,7 @@ def to_hash def ==(o) return true if self.equal?(o) self.class == o.class && + address_key == o.address_key && id == o.id && tls == o.tls && type == o.type && @@ -151,7 +161,7 @@ def ==(o) # @return [Integer] Hash code # @!visibility private def hash - [id, tls, type, additional_properties].hash + [address_key, id, tls, type, additional_properties].hash end end end diff --git a/lib/datadog_api_client/v2/models/observability_pipeline_sumo_logic_destination.rb b/lib/datadog_api_client/v2/models/observability_pipeline_sumo_logic_destination.rb index f6346f092959..4509ae179069 100644 --- a/lib/datadog_api_client/v2/models/observability_pipeline_sumo_logic_destination.rb +++ b/lib/datadog_api_client/v2/models/observability_pipeline_sumo_logic_destination.rb @@ -29,6 +29,9 @@ class ObservabilityPipelineSumoLogicDestination # The output encoding format. attr_accessor :encoding + # Name of the environment variable or secret that holds the Sumo Logic HTTP endpoint URL. + attr_accessor :endpoint_url_key + # A list of custom headers to include in the request to Sumo Logic. attr_accessor :header_custom_fields @@ -58,6 +61,7 @@ def self.attribute_map { :'buffer' => :'buffer', :'encoding' => :'encoding', + :'endpoint_url_key' => :'endpoint_url_key', :'header_custom_fields' => :'header_custom_fields', :'header_host_name' => :'header_host_name', :'header_source_category' => :'header_source_category', @@ -74,6 +78,7 @@ def self.openapi_types { :'buffer' => :'ObservabilityPipelineBufferOptions', :'encoding' => :'ObservabilityPipelineSumoLogicDestinationEncoding', + :'endpoint_url_key' => :'String', :'header_custom_fields' => :'Array', :'header_host_name' => :'String', :'header_source_category' => :'String', @@ -110,6 +115,10 @@ def initialize(attributes = {}) self.encoding = attributes[:'encoding'] end + if attributes.key?(:'endpoint_url_key') + self.endpoint_url_key = attributes[:'endpoint_url_key'] + end + if attributes.key?(:'header_custom_fields') if (value = attributes[:'header_custom_fields']).is_a?(Array) self.header_custom_fields = value @@ -211,6 +220,7 @@ def ==(o) self.class == o.class && buffer == o.buffer && encoding == o.encoding && + endpoint_url_key == o.endpoint_url_key && header_custom_fields == o.header_custom_fields && header_host_name == o.header_host_name && header_source_category == o.header_source_category && @@ -225,7 +235,7 @@ def ==(o) # @return [Integer] Hash code # @!visibility private def hash - [buffer, encoding, header_custom_fields, header_host_name, header_source_category, header_source_name, id, inputs, type, additional_properties].hash + [buffer, encoding, endpoint_url_key, header_custom_fields, header_host_name, header_source_category, header_source_name, id, inputs, type, additional_properties].hash end end end diff --git a/lib/datadog_api_client/v2/models/observability_pipeline_sumo_logic_source.rb b/lib/datadog_api_client/v2/models/observability_pipeline_sumo_logic_source.rb index f43d9b510beb..8108a1622855 100644 --- a/lib/datadog_api_client/v2/models/observability_pipeline_sumo_logic_source.rb +++ b/lib/datadog_api_client/v2/models/observability_pipeline_sumo_logic_source.rb @@ -23,6 +23,9 @@ module DatadogAPIClient::V2 class ObservabilityPipelineSumoLogicSource include BaseGenericModel + # Name of the environment variable or secret that holds the listen address for the Sumo Logic receiver. + attr_accessor :address_key + # The unique identifier for this component. Used in other parts of the pipeline to reference this component (for example, as the `input` to downstream components). attr_reader :id @@ -35,6 +38,7 @@ class ObservabilityPipelineSumoLogicSource # @!visibility private def self.attribute_map { + :'address_key' => :'address_key', :'id' => :'id', :'type' => :'type' } @@ -44,6 +48,7 @@ def self.attribute_map # @!visibility private def self.openapi_types { + :'address_key' => :'String', :'id' => :'String', :'type' => :'ObservabilityPipelineSumoLogicSourceType' } @@ -67,6 +72,10 @@ def initialize(attributes = {}) end } + if attributes.key?(:'address_key') + self.address_key = attributes[:'address_key'] + end + if attributes.key?(:'id') self.id = attributes[:'id'] end @@ -131,6 +140,7 @@ def to_hash def ==(o) return true if self.equal?(o) self.class == o.class && + address_key == o.address_key && id == o.id && type == o.type && additional_properties == o.additional_properties @@ -140,7 +150,7 @@ def ==(o) # @return [Integer] Hash code # @!visibility private def hash - [id, type, additional_properties].hash + [address_key, id, type, additional_properties].hash end end end diff --git a/lib/datadog_api_client/v2/models/observability_pipeline_syslog_ng_destination.rb b/lib/datadog_api_client/v2/models/observability_pipeline_syslog_ng_destination.rb index a816fbcbca7c..b9c8202e0d5d 100644 --- a/lib/datadog_api_client/v2/models/observability_pipeline_syslog_ng_destination.rb +++ b/lib/datadog_api_client/v2/models/observability_pipeline_syslog_ng_destination.rb @@ -26,6 +26,9 @@ class ObservabilityPipelineSyslogNgDestination # Configuration for buffer settings on destination components. attr_accessor :buffer + # Name of the environment variable or secret that holds the syslog-ng server endpoint URL. + attr_accessor :endpoint_url_key + # The unique identifier for this component. attr_reader :id @@ -48,6 +51,7 @@ class ObservabilityPipelineSyslogNgDestination def self.attribute_map { :'buffer' => :'buffer', + :'endpoint_url_key' => :'endpoint_url_key', :'id' => :'id', :'inputs' => :'inputs', :'keepalive' => :'keepalive', @@ -61,6 +65,7 @@ def self.attribute_map def self.openapi_types { :'buffer' => :'ObservabilityPipelineBufferOptions', + :'endpoint_url_key' => :'String', :'id' => :'String', :'inputs' => :'Array', :'keepalive' => :'Integer', @@ -91,6 +96,10 @@ def initialize(attributes = {}) self.buffer = attributes[:'buffer'] end + if attributes.key?(:'endpoint_url_key') + self.endpoint_url_key = attributes[:'endpoint_url_key'] + end + if attributes.key?(:'id') self.id = attributes[:'id'] end @@ -192,6 +201,7 @@ def ==(o) return true if self.equal?(o) self.class == o.class && buffer == o.buffer && + endpoint_url_key == o.endpoint_url_key && id == o.id && inputs == o.inputs && keepalive == o.keepalive && @@ -204,7 +214,7 @@ def ==(o) # @return [Integer] Hash code # @!visibility private def hash - [buffer, id, inputs, keepalive, tls, type, additional_properties].hash + [buffer, endpoint_url_key, id, inputs, keepalive, tls, type, additional_properties].hash end end end diff --git a/lib/datadog_api_client/v2/models/observability_pipeline_syslog_ng_source.rb b/lib/datadog_api_client/v2/models/observability_pipeline_syslog_ng_source.rb index 5f59f534b879..5bc1429127f6 100644 --- a/lib/datadog_api_client/v2/models/observability_pipeline_syslog_ng_source.rb +++ b/lib/datadog_api_client/v2/models/observability_pipeline_syslog_ng_source.rb @@ -23,6 +23,9 @@ module DatadogAPIClient::V2 class ObservabilityPipelineSyslogNgSource include BaseGenericModel + # Name of the environment variable or secret that holds the listen address for the syslog-ng receiver. + attr_accessor :address_key + # The unique identifier for this component. Used in other parts of the pipeline to reference this component (for example, as the `input` to downstream components). attr_reader :id @@ -41,6 +44,7 @@ class ObservabilityPipelineSyslogNgSource # @!visibility private def self.attribute_map { + :'address_key' => :'address_key', :'id' => :'id', :'mode' => :'mode', :'tls' => :'tls', @@ -52,6 +56,7 @@ def self.attribute_map # @!visibility private def self.openapi_types { + :'address_key' => :'String', :'id' => :'String', :'mode' => :'ObservabilityPipelineSyslogSourceMode', :'tls' => :'ObservabilityPipelineTls', @@ -77,6 +82,10 @@ def initialize(attributes = {}) end } + if attributes.key?(:'address_key') + self.address_key = attributes[:'address_key'] + end + if attributes.key?(:'id') self.id = attributes[:'id'] end @@ -160,6 +169,7 @@ def to_hash def ==(o) return true if self.equal?(o) self.class == o.class && + address_key == o.address_key && id == o.id && mode == o.mode && tls == o.tls && @@ -171,7 +181,7 @@ def ==(o) # @return [Integer] Hash code # @!visibility private def hash - [id, mode, tls, type, additional_properties].hash + [address_key, id, mode, tls, type, additional_properties].hash end end end diff --git a/lib/datadog_api_client/v2/models/observability_pipeline_tls.rb b/lib/datadog_api_client/v2/models/observability_pipeline_tls.rb index 7d6fdfd22a33..f43320db10ef 100644 --- a/lib/datadog_api_client/v2/models/observability_pipeline_tls.rb +++ b/lib/datadog_api_client/v2/models/observability_pipeline_tls.rb @@ -30,6 +30,9 @@ class ObservabilityPipelineTls # Path to the private key file associated with the TLS client certificate. Used for mutual TLS authentication. attr_accessor :key_file + # Name of the environment variable or secret that holds the passphrase for the private key file. + attr_accessor :key_pass_key + attr_accessor :additional_properties # Attribute mapping from ruby-style variable name to JSON key. @@ -38,7 +41,8 @@ def self.attribute_map { :'ca_file' => :'ca_file', :'crt_file' => :'crt_file', - :'key_file' => :'key_file' + :'key_file' => :'key_file', + :'key_pass_key' => :'key_pass_key' } end @@ -48,7 +52,8 @@ def self.openapi_types { :'ca_file' => :'String', :'crt_file' => :'String', - :'key_file' => :'String' + :'key_file' => :'String', + :'key_pass_key' => :'String' } end @@ -81,6 +86,10 @@ def initialize(attributes = {}) if attributes.key?(:'key_file') self.key_file = attributes[:'key_file'] end + + if attributes.key?(:'key_pass_key') + self.key_pass_key = attributes[:'key_pass_key'] + end end # Check to see if the all the properties in the model are valid @@ -130,6 +139,7 @@ def ==(o) ca_file == o.ca_file && crt_file == o.crt_file && key_file == o.key_file && + key_pass_key == o.key_pass_key && additional_properties == o.additional_properties end @@ -137,7 +147,7 @@ def ==(o) # @return [Integer] Hash code # @!visibility private def hash - [ca_file, crt_file, key_file, additional_properties].hash + [ca_file, crt_file, key_file, key_pass_key, additional_properties].hash end end end