datadog_api_client 2.47.0 → 2.48.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.generator/schemas/v1/openapi.yaml +96 -5
- data/.generator/schemas/v2/openapi.yaml +2453 -707
- data/CHANGELOG.md +20 -0
- data/examples/v2/incidents/CreateIncidentAttachment.rb +22 -0
- data/examples/v2/incidents/DeleteIncidentAttachment.rb +8 -0
- data/examples/v2/incidents/ListIncidentAttachments.rb +1 -1
- data/examples/v2/incidents/UpdateIncidentAttachment.rb +20 -0
- data/examples/v2/on-call/CreateUserNotificationRule.rb +29 -0
- data/examples/v2/on-call/DeleteUserNotificationRule.rb +11 -0
- data/examples/v2/on-call/GetUserNotificationRule.rb +14 -0
- data/examples/v2/on-call/ListUserNotificationRules.rb +11 -0
- data/examples/v2/on-call/UpdateUserNotificationRule.rb +36 -0
- data/examples/v2/product-analytics/SubmitProductAnalyticsEvent.rb +24 -0
- data/examples/v2/security-monitoring/CreateSecurityMonitoringRule_2323193894.rb +48 -0
- data/examples/v2/synthetics/PatchGlobalVariable.rb +19 -0
- data/examples/v2/teams/CreateTeamNotificationRule.rb +23 -0
- data/examples/v2/teams/DeleteTeamConnections.rb +0 -3
- data/examples/v2/teams/DeleteTeamNotificationRule.rb +11 -0
- data/examples/v2/teams/GetTeamNotificationRule.rb +11 -0
- data/examples/v2/teams/GetTeamNotificationRules.rb +8 -0
- data/examples/v2/teams/GetTeamSync.rb +0 -3
- data/examples/v2/teams/ListTeamConnections.rb +0 -3
- data/examples/v2/teams/ListTeamConnections_2418873869.rb +0 -3
- data/examples/v2/teams/SyncTeams.rb +0 -3
- data/examples/v2/teams/SyncTeams_3215592344.rb +0 -3
- data/examples/v2/teams/UpdateTeamNotificationRule.rb +27 -0
- data/lib/datadog_api_client/configuration.rb +55 -6
- data/lib/datadog_api_client/inflector.rb +92 -20
- data/lib/datadog_api_client/v1/api/synthetics_api.rb +3 -3
- data/lib/datadog_api_client/v1/api/usage_metering_api.rb +6 -4
- data/lib/datadog_api_client/v1/models/hourly_usage_attribution_usage_type.rb +3 -0
- data/lib/datadog_api_client/v1/models/monthly_usage_attribution_supported_metrics.rb +6 -0
- data/lib/datadog_api_client/v1/models/monthly_usage_attribution_values.rb +61 -1
- data/lib/datadog_api_client/v1/models/synthetics_list_tests_response.rb +1 -1
- data/lib/datadog_api_client/v1/models/synthetics_test_details.rb +1 -1
- data/lib/datadog_api_client/v1/models/synthetics_test_details_without_steps.rb +221 -0
- data/lib/datadog_api_client/v2/api/dora_metrics_api.rb +8 -8
- data/lib/datadog_api_client/v2/api/incidents_api.rb +188 -36
- data/lib/datadog_api_client/v2/api/on_call_api.rb +360 -0
- data/lib/datadog_api_client/v2/api/product_analytics_api.rb +121 -0
- data/lib/datadog_api_client/v2/api/software_catalog_api.rb +4 -0
- data/lib/datadog_api_client/v2/api/synthetics_api.rb +79 -0
- data/lib/datadog_api_client/v2/api/teams_api.rb +339 -30
- data/lib/datadog_api_client/v2/models/attachment.rb +117 -0
- data/lib/datadog_api_client/v2/models/{incident_attachments_response.rb → attachment_array.rb} +7 -7
- data/lib/datadog_api_client/v2/models/{incident_attachment_data.rb → attachment_data.rb} +8 -8
- data/lib/datadog_api_client/v2/models/attachment_data_attributes.rb +125 -0
- data/lib/datadog_api_client/v2/models/attachment_data_attributes_attachment.rb +115 -0
- data/lib/datadog_api_client/v2/models/{incident_attachment_attachment_type.rb → attachment_data_attributes_attachment_type.rb} +3 -3
- data/lib/datadog_api_client/v2/models/{incident_attachment_relationships.rb → attachment_data_relationships.rb} +5 -5
- data/lib/datadog_api_client/v2/models/{incident_attachment_update_request.rb → attachment_data_relationships_last_modified_by_user.rb} +6 -11
- data/lib/datadog_api_client/v2/models/attachment_data_relationships_last_modified_by_user_data.rb +144 -0
- data/lib/datadog_api_client/v2/models/{incident_attachments_response_included_item.rb → attachment_included.rb} +3 -3
- data/lib/datadog_api_client/v2/models/case_create_attributes.rb +11 -1
- data/lib/datadog_api_client/v2/models/{dora_fetch_response.rb → create_attachment_request.rb} +5 -5
- data/lib/datadog_api_client/v2/models/{incident_attachment_update_data.rb → create_attachment_request_data.rb} +6 -6
- data/lib/datadog_api_client/v2/models/create_attachment_request_data_attributes.rb +115 -0
- data/lib/datadog_api_client/v2/models/create_attachment_request_data_attributes_attachment.rb +115 -0
- data/lib/datadog_api_client/v2/models/create_on_call_notification_rule_request.rb +123 -0
- data/lib/datadog_api_client/v2/models/create_on_call_notification_rule_request_data.rb +143 -0
- data/lib/datadog_api_client/v2/models/custom_attribute_type.rb +1 -0
- data/lib/datadog_api_client/v2/models/dora_deployment_fetch_response.rb +105 -0
- data/lib/datadog_api_client/v2/models/dora_deployment_object.rb +125 -0
- data/lib/datadog_api_client/v2/models/dora_deployment_object_attributes.rb +225 -0
- data/lib/datadog_api_client/v2/models/dora_deployment_request_attributes.rb +1 -1
- data/lib/datadog_api_client/v2/models/dora_deployments_list_response.rb +107 -0
- data/lib/datadog_api_client/v2/models/dora_failure_fetch_response.rb +105 -0
- data/lib/datadog_api_client/v2/models/dora_failure_request_attributes.rb +1 -1
- data/lib/datadog_api_client/v2/models/{dora_list_response.rb → dora_failures_list_response.rb} +5 -5
- data/lib/datadog_api_client/v2/models/{dora_event.rb → dora_incident_object.rb} +8 -8
- data/lib/datadog_api_client/v2/models/dora_incident_object_attributes.rb +225 -0
- data/lib/datadog_api_client/v2/models/global_variable_data.rb +125 -0
- data/lib/datadog_api_client/v2/models/global_variable_json_patch_request.rb +123 -0
- data/lib/datadog_api_client/v2/models/global_variable_json_patch_request_data.rb +115 -0
- data/lib/datadog_api_client/v2/models/global_variable_json_patch_request_data_attributes.rb +107 -0
- data/lib/datadog_api_client/v2/models/global_variable_json_patch_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/global_variable_response.rb +105 -0
- data/lib/datadog_api_client/v2/models/{incident_attachment_link_attachment_type.rb → global_variable_type.rb} +3 -3
- data/lib/datadog_api_client/v2/models/incident_response_included_item.rb +1 -1
- data/lib/datadog_api_client/v2/models/{incident_attachments_postmortem_attributes_attachment_object.rb → json_patch_operation.rb} +40 -30
- data/lib/datadog_api_client/v2/models/json_patch_operation_op.rb +31 -0
- data/lib/datadog_api_client/v2/models/list_on_call_notification_rules_response.rb +119 -0
- data/lib/datadog_api_client/v2/models/observability_pipeline_add_env_vars_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_add_fields_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_config_processor_group.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_custom_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_datadog_tags_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_dedupe_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_enrichment_table_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_filter_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_generate_metrics_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_ocsf_mapper_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_parse_grok_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_parse_json_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_quota_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_reduce_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_remove_fields_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_rename_fields_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_sample_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_sensitive_data_scanner_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_throttle_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/{incident_attachment_update_response.rb → on_call_notification_rule.rb} +8 -11
- data/lib/datadog_api_client/v2/models/on_call_notification_rule_attributes.rb +125 -0
- data/lib/datadog_api_client/v2/models/on_call_notification_rule_category.rb +27 -0
- data/lib/datadog_api_client/v2/models/on_call_notification_rule_channel_relationship.rb +123 -0
- data/lib/datadog_api_client/v2/models/on_call_notification_rule_channel_relationship_data.rb +115 -0
- data/lib/datadog_api_client/v2/models/{incident_attachment_update_attributes.rb → on_call_notification_rule_channel_settings.rb} +3 -4
- data/lib/datadog_api_client/v2/models/on_call_notification_rule_data.rb +153 -0
- data/lib/datadog_api_client/v2/models/on_call_notification_rule_relationships.rb +105 -0
- data/lib/datadog_api_client/v2/models/on_call_notification_rule_request_attributes.rb +125 -0
- data/lib/datadog_api_client/v2/models/on_call_notification_rule_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/{incident_attachment_attributes.rb → on_call_notification_rules_included.rb} +3 -4
- data/lib/datadog_api_client/v2/models/on_call_phone_notification_rule_method.rb +27 -0
- data/lib/datadog_api_client/v2/models/{incident_attachment_link_attributes_attachment_object.rb → on_call_phone_notification_rule_settings.rb} +30 -30
- data/lib/datadog_api_client/v2/models/patch_attachment_request.rb +105 -0
- data/lib/datadog_api_client/v2/models/patch_attachment_request_data.rb +143 -0
- data/lib/datadog_api_client/v2/models/patch_attachment_request_data_attributes.rb +105 -0
- data/lib/datadog_api_client/v2/models/patch_attachment_request_data_attributes_attachment.rb +115 -0
- data/lib/datadog_api_client/v2/models/product_analytics_server_side_event_error.rb +125 -0
- data/lib/datadog_api_client/v2/models/product_analytics_server_side_event_errors.rb +107 -0
- data/lib/datadog_api_client/v2/models/product_analytics_server_side_event_item.rb +195 -0
- data/lib/datadog_api_client/v2/models/product_analytics_server_side_event_item_account.rb +123 -0
- data/lib/datadog_api_client/v2/models/product_analytics_server_side_event_item_application.rb +124 -0
- data/lib/datadog_api_client/v2/models/product_analytics_server_side_event_item_event.rb +123 -0
- data/lib/datadog_api_client/v2/models/product_analytics_server_side_event_item_session.rb +123 -0
- data/lib/datadog_api_client/v2/models/product_analytics_server_side_event_item_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/product_analytics_server_side_event_item_usr.rb +123 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_anomaly_detection_options.rb +155 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_anomaly_detection_options_bucket_duration.rb +32 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_anomaly_detection_options_detection_tolerance.rb +31 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_anomaly_detection_options_learning_duration.rb +32 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_options.rb +11 -1
- data/lib/datadog_api_client/v2/models/synthetics_global_variable.rb +248 -0
- data/lib/datadog_api_client/v2/models/synthetics_global_variable_attributes.rb +107 -0
- data/lib/datadog_api_client/v2/models/synthetics_global_variable_options.rb +105 -0
- data/lib/datadog_api_client/v2/models/{incident_attachment_postmortem_attributes.rb → synthetics_global_variable_parse_test_options.rb} +44 -35
- data/lib/datadog_api_client/v2/models/synthetics_global_variable_parse_test_options_type.rb +29 -0
- data/lib/datadog_api_client/v2/models/synthetics_global_variable_parser_type.rb +29 -0
- data/lib/datadog_api_client/v2/models/{incident_attachment_link_attributes.rb → synthetics_global_variable_totp_parameters.rb} +38 -40
- data/lib/datadog_api_client/v2/models/synthetics_global_variable_value.rb +126 -0
- data/lib/datadog_api_client/v2/models/synthetics_variable_parser.rb +133 -0
- data/lib/datadog_api_client/v2/models/team_notification_rule.rb +154 -0
- data/lib/datadog_api_client/v2/models/team_notification_rule_attributes.rb +135 -0
- data/lib/datadog_api_client/v2/models/team_notification_rule_attributes_email.rb +105 -0
- data/lib/datadog_api_client/v2/models/team_notification_rule_attributes_ms_teams.rb +105 -0
- data/lib/datadog_api_client/v2/models/team_notification_rule_attributes_pagerduty.rb +105 -0
- data/lib/datadog_api_client/v2/models/team_notification_rule_attributes_slack.rb +115 -0
- data/lib/datadog_api_client/v2/models/team_notification_rule_request.rb +123 -0
- data/lib/datadog_api_client/v2/models/team_notification_rule_response.rb +105 -0
- data/lib/datadog_api_client/v2/models/{incident_attachment_postmortem_attachment_type.rb → team_notification_rule_type.rb} +3 -3
- data/lib/datadog_api_client/v2/models/team_notification_rules_response.rb +117 -0
- data/lib/datadog_api_client/v2/models/team_notification_rules_response_meta.rb +105 -0
- data/lib/datadog_api_client/v2/models/team_notification_rules_response_meta_page.rb +184 -0
- data/lib/datadog_api_client/v2/models/threat_hunting_job_options.rb +11 -1
- data/lib/datadog_api_client/v2/models/update_on_call_notification_rule_request.rb +123 -0
- data/lib/datadog_api_client/v2/models/update_on_call_notification_rule_request_attributes.rb +125 -0
- data/lib/datadog_api_client/v2/models/update_on_call_notification_rule_request_data.rb +153 -0
- data/lib/datadog_api_client/v2/models/user140420082644000.rb +143 -0
- data/lib/datadog_api_client/v2/models/{incident_attachment_related_object.rb → user_type.rb} +2 -2
- data/lib/datadog_api_client/version.rb +1 -1
- metadata +109 -24
- data/examples/v2/incidents/ListIncidentAttachments_2457735435.rb +0 -11
- data/examples/v2/incidents/UpdateIncidentAttachments.rb +0 -38
- data/examples/v2/incidents/UpdateIncidentAttachments_3881702075.rb +0 -26
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: datadog_api_client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.48.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Datadog, Inc.
|
|
@@ -875,6 +875,7 @@ files:
|
|
|
875
875
|
- examples/v2/incident-teams/ListIncidentTeams.rb
|
|
876
876
|
- examples/v2/incident-teams/UpdateIncidentTeam.rb
|
|
877
877
|
- examples/v2/incidents/CreateIncident.rb
|
|
878
|
+
- examples/v2/incidents/CreateIncidentAttachment.rb
|
|
878
879
|
- examples/v2/incidents/CreateIncidentImpact.rb
|
|
879
880
|
- examples/v2/incidents/CreateIncidentIntegration.rb
|
|
880
881
|
- examples/v2/incidents/CreateIncidentNotificationRule.rb
|
|
@@ -883,6 +884,7 @@ files:
|
|
|
883
884
|
- examples/v2/incidents/CreateIncidentTodo.rb
|
|
884
885
|
- examples/v2/incidents/CreateIncidentType.rb
|
|
885
886
|
- examples/v2/incidents/DeleteIncident.rb
|
|
887
|
+
- examples/v2/incidents/DeleteIncidentAttachment.rb
|
|
886
888
|
- examples/v2/incidents/DeleteIncidentImpact.rb
|
|
887
889
|
- examples/v2/incidents/DeleteIncidentIntegration.rb
|
|
888
890
|
- examples/v2/incidents/DeleteIncidentNotificationRule.rb
|
|
@@ -899,7 +901,6 @@ files:
|
|
|
899
901
|
- examples/v2/incidents/GetIncidentTodo.rb
|
|
900
902
|
- examples/v2/incidents/GetIncidentType.rb
|
|
901
903
|
- examples/v2/incidents/ListIncidentAttachments.rb
|
|
902
|
-
- examples/v2/incidents/ListIncidentAttachments_2457735435.rb
|
|
903
904
|
- examples/v2/incidents/ListIncidentImpacts.rb
|
|
904
905
|
- examples/v2/incidents/ListIncidentIntegrations.rb
|
|
905
906
|
- examples/v2/incidents/ListIncidentNotificationRules.rb
|
|
@@ -911,8 +912,7 @@ files:
|
|
|
911
912
|
- examples/v2/incidents/SearchIncidents.rb
|
|
912
913
|
- examples/v2/incidents/SearchIncidents_1931679109.rb
|
|
913
914
|
- examples/v2/incidents/UpdateIncident.rb
|
|
914
|
-
- examples/v2/incidents/
|
|
915
|
-
- examples/v2/incidents/UpdateIncidentAttachments_3881702075.rb
|
|
915
|
+
- examples/v2/incidents/UpdateIncidentAttachment.rb
|
|
916
916
|
- examples/v2/incidents/UpdateIncidentIntegration.rb
|
|
917
917
|
- examples/v2/incidents/UpdateIncidentNotificationRule.rb
|
|
918
918
|
- examples/v2/incidents/UpdateIncidentNotificationRule_1207309457.rb
|
|
@@ -1077,19 +1077,24 @@ files:
|
|
|
1077
1077
|
- examples/v2/on-call/CreateOnCallEscalationPolicy.rb
|
|
1078
1078
|
- examples/v2/on-call/CreateOnCallSchedule.rb
|
|
1079
1079
|
- examples/v2/on-call/CreateUserNotificationChannel.rb
|
|
1080
|
+
- examples/v2/on-call/CreateUserNotificationRule.rb
|
|
1080
1081
|
- examples/v2/on-call/DeleteOnCallEscalationPolicy.rb
|
|
1081
1082
|
- examples/v2/on-call/DeleteOnCallSchedule.rb
|
|
1082
1083
|
- examples/v2/on-call/DeleteUserNotificationChannel.rb
|
|
1084
|
+
- examples/v2/on-call/DeleteUserNotificationRule.rb
|
|
1083
1085
|
- examples/v2/on-call/GetOnCallEscalationPolicy.rb
|
|
1084
1086
|
- examples/v2/on-call/GetOnCallSchedule.rb
|
|
1085
1087
|
- examples/v2/on-call/GetOnCallTeamRoutingRules.rb
|
|
1086
1088
|
- examples/v2/on-call/GetScheduleOnCallUser.rb
|
|
1087
1089
|
- examples/v2/on-call/GetTeamOnCallUsers.rb
|
|
1088
1090
|
- examples/v2/on-call/GetUserNotificationChannel.rb
|
|
1091
|
+
- examples/v2/on-call/GetUserNotificationRule.rb
|
|
1089
1092
|
- examples/v2/on-call/ListUserNotificationChannels.rb
|
|
1093
|
+
- examples/v2/on-call/ListUserNotificationRules.rb
|
|
1090
1094
|
- examples/v2/on-call/SetOnCallTeamRoutingRules.rb
|
|
1091
1095
|
- examples/v2/on-call/UpdateOnCallEscalationPolicy.rb
|
|
1092
1096
|
- examples/v2/on-call/UpdateOnCallSchedule.rb
|
|
1097
|
+
- examples/v2/on-call/UpdateUserNotificationRule.rb
|
|
1093
1098
|
- examples/v2/opsgenie-integration/CreateOpsgenieService.rb
|
|
1094
1099
|
- examples/v2/opsgenie-integration/DeleteOpsgenieService.rb
|
|
1095
1100
|
- examples/v2/opsgenie-integration/GetOpsgenieService.rb
|
|
@@ -1111,6 +1116,7 @@ files:
|
|
|
1111
1116
|
- examples/v2/powerpack/UpdatePowerpack.rb
|
|
1112
1117
|
- examples/v2/processes/ListProcesses.rb
|
|
1113
1118
|
- examples/v2/processes/ListProcesses_797840471.rb
|
|
1119
|
+
- examples/v2/product-analytics/SubmitProductAnalyticsEvent.rb
|
|
1114
1120
|
- examples/v2/reference-tables/CreateReferenceTable.rb
|
|
1115
1121
|
- examples/v2/reference-tables/CreateReferenceTableUpload.rb
|
|
1116
1122
|
- examples/v2/reference-tables/CreateReferenceTable_3196130987.rb
|
|
@@ -1190,6 +1196,7 @@ files:
|
|
|
1190
1196
|
- examples/v2/security-monitoring/CreateSecurityMonitoringRule.rb
|
|
1191
1197
|
- examples/v2/security-monitoring/CreateSecurityMonitoringRule_1092490364.rb
|
|
1192
1198
|
- examples/v2/security-monitoring/CreateSecurityMonitoringRule_1965169892.rb
|
|
1199
|
+
- examples/v2/security-monitoring/CreateSecurityMonitoringRule_2323193894.rb
|
|
1193
1200
|
- examples/v2/security-monitoring/CreateSecurityMonitoringRule_2899714190.rb
|
|
1194
1201
|
- examples/v2/security-monitoring/CreateSecurityMonitoringRule_3367706049.rb
|
|
1195
1202
|
- examples/v2/security-monitoring/CreateSecurityMonitoringRule_461183901.rb
|
|
@@ -1333,6 +1340,7 @@ files:
|
|
|
1333
1340
|
- examples/v2/static-analysis/CreateSCAResolveVulnerableSymbols.rb
|
|
1334
1341
|
- examples/v2/static-analysis/CreateSCAResult.rb
|
|
1335
1342
|
- examples/v2/synthetics/GetOnDemandConcurrencyCap.rb
|
|
1343
|
+
- examples/v2/synthetics/PatchGlobalVariable.rb
|
|
1336
1344
|
- examples/v2/synthetics/SetOnDemandConcurrencyCap.rb
|
|
1337
1345
|
- examples/v2/teams/AddMemberTeam.rb
|
|
1338
1346
|
- examples/v2/teams/AddTeamHierarchyLink.rb
|
|
@@ -1340,17 +1348,21 @@ files:
|
|
|
1340
1348
|
- examples/v2/teams/CreateTeamConnections.rb
|
|
1341
1349
|
- examples/v2/teams/CreateTeamLink.rb
|
|
1342
1350
|
- examples/v2/teams/CreateTeamMembership.rb
|
|
1351
|
+
- examples/v2/teams/CreateTeamNotificationRule.rb
|
|
1343
1352
|
- examples/v2/teams/CreateTeam_252121814.rb
|
|
1344
1353
|
- examples/v2/teams/DeleteTeam.rb
|
|
1345
1354
|
- examples/v2/teams/DeleteTeamConnections.rb
|
|
1346
1355
|
- examples/v2/teams/DeleteTeamLink.rb
|
|
1347
1356
|
- examples/v2/teams/DeleteTeamMembership.rb
|
|
1357
|
+
- examples/v2/teams/DeleteTeamNotificationRule.rb
|
|
1348
1358
|
- examples/v2/teams/GetTeam.rb
|
|
1349
1359
|
- examples/v2/teams/GetTeamHierarchyLink.rb
|
|
1350
1360
|
- examples/v2/teams/GetTeamLink.rb
|
|
1351
1361
|
- examples/v2/teams/GetTeamLinks.rb
|
|
1352
1362
|
- examples/v2/teams/GetTeamMemberships.rb
|
|
1353
1363
|
- examples/v2/teams/GetTeamMemberships_3799131168.rb
|
|
1364
|
+
- examples/v2/teams/GetTeamNotificationRule.rb
|
|
1365
|
+
- examples/v2/teams/GetTeamNotificationRules.rb
|
|
1354
1366
|
- examples/v2/teams/GetTeamPermissionSettings.rb
|
|
1355
1367
|
- examples/v2/teams/GetTeamSync.rb
|
|
1356
1368
|
- examples/v2/teams/GetUserMemberships.rb
|
|
@@ -1371,6 +1383,7 @@ files:
|
|
|
1371
1383
|
- examples/v2/teams/UpdateTeam.rb
|
|
1372
1384
|
- examples/v2/teams/UpdateTeamLink.rb
|
|
1373
1385
|
- examples/v2/teams/UpdateTeamMembership.rb
|
|
1386
|
+
- examples/v2/teams/UpdateTeamNotificationRule.rb
|
|
1374
1387
|
- examples/v2/teams/UpdateTeamPermissionSetting.rb
|
|
1375
1388
|
- examples/v2/test-optimization/SearchFlakyTests.rb
|
|
1376
1389
|
- examples/v2/test-optimization/SearchFlakyTests_1224086727.rb
|
|
@@ -2161,6 +2174,7 @@ files:
|
|
|
2161
2174
|
- lib/datadog_api_client/v1/models/synthetics_test_details.rb
|
|
2162
2175
|
- lib/datadog_api_client/v1/models/synthetics_test_details_sub_type.rb
|
|
2163
2176
|
- lib/datadog_api_client/v1/models/synthetics_test_details_type.rb
|
|
2177
|
+
- lib/datadog_api_client/v1/models/synthetics_test_details_without_steps.rb
|
|
2164
2178
|
- lib/datadog_api_client/v1/models/synthetics_test_execution_rule.rb
|
|
2165
2179
|
- lib/datadog_api_client/v1/models/synthetics_test_monitor_status.rb
|
|
2166
2180
|
- lib/datadog_api_client/v1/models/synthetics_test_options.rb
|
|
@@ -2455,6 +2469,7 @@ files:
|
|
|
2455
2469
|
- lib/datadog_api_client/v2/api/organizations_api.rb
|
|
2456
2470
|
- lib/datadog_api_client/v2/api/powerpack_api.rb
|
|
2457
2471
|
- lib/datadog_api_client/v2/api/processes_api.rb
|
|
2472
|
+
- lib/datadog_api_client/v2/api/product_analytics_api.rb
|
|
2458
2473
|
- lib/datadog_api_client/v2/api/reference_tables_api.rb
|
|
2459
2474
|
- lib/datadog_api_client/v2/api/restriction_policies_api.rb
|
|
2460
2475
|
- lib/datadog_api_client/v2/api/roles_api.rb
|
|
@@ -2660,6 +2675,16 @@ files:
|
|
|
2660
2675
|
- lib/datadog_api_client/v2/models/attach_jira_issue_request_data.rb
|
|
2661
2676
|
- lib/datadog_api_client/v2/models/attach_jira_issue_request_data_attributes.rb
|
|
2662
2677
|
- lib/datadog_api_client/v2/models/attach_jira_issue_request_data_relationships.rb
|
|
2678
|
+
- lib/datadog_api_client/v2/models/attachment.rb
|
|
2679
|
+
- lib/datadog_api_client/v2/models/attachment_array.rb
|
|
2680
|
+
- lib/datadog_api_client/v2/models/attachment_data.rb
|
|
2681
|
+
- lib/datadog_api_client/v2/models/attachment_data_attributes.rb
|
|
2682
|
+
- lib/datadog_api_client/v2/models/attachment_data_attributes_attachment.rb
|
|
2683
|
+
- lib/datadog_api_client/v2/models/attachment_data_attributes_attachment_type.rb
|
|
2684
|
+
- lib/datadog_api_client/v2/models/attachment_data_relationships.rb
|
|
2685
|
+
- lib/datadog_api_client/v2/models/attachment_data_relationships_last_modified_by_user.rb
|
|
2686
|
+
- lib/datadog_api_client/v2/models/attachment_data_relationships_last_modified_by_user_data.rb
|
|
2687
|
+
- lib/datadog_api_client/v2/models/attachment_included.rb
|
|
2663
2688
|
- lib/datadog_api_client/v2/models/audit_logs_event.rb
|
|
2664
2689
|
- lib/datadog_api_client/v2/models/audit_logs_event_attributes.rb
|
|
2665
2690
|
- lib/datadog_api_client/v2/models/audit_logs_event_type.rb
|
|
@@ -3207,6 +3232,10 @@ files:
|
|
|
3207
3232
|
- lib/datadog_api_client/v2/models/create_apps_datastore_request_data_attributes_org_access.rb
|
|
3208
3233
|
- lib/datadog_api_client/v2/models/create_apps_datastore_response.rb
|
|
3209
3234
|
- lib/datadog_api_client/v2/models/create_apps_datastore_response_data.rb
|
|
3235
|
+
- lib/datadog_api_client/v2/models/create_attachment_request.rb
|
|
3236
|
+
- lib/datadog_api_client/v2/models/create_attachment_request_data.rb
|
|
3237
|
+
- lib/datadog_api_client/v2/models/create_attachment_request_data_attributes.rb
|
|
3238
|
+
- lib/datadog_api_client/v2/models/create_attachment_request_data_attributes_attachment.rb
|
|
3210
3239
|
- lib/datadog_api_client/v2/models/create_case_request_array.rb
|
|
3211
3240
|
- lib/datadog_api_client/v2/models/create_case_request_data.rb
|
|
3212
3241
|
- lib/datadog_api_client/v2/models/create_case_request_data_attributes.rb
|
|
@@ -3241,6 +3270,8 @@ files:
|
|
|
3241
3270
|
- lib/datadog_api_client/v2/models/create_notification_rule_parameters.rb
|
|
3242
3271
|
- lib/datadog_api_client/v2/models/create_notification_rule_parameters_data.rb
|
|
3243
3272
|
- lib/datadog_api_client/v2/models/create_notification_rule_parameters_data_attributes.rb
|
|
3273
|
+
- lib/datadog_api_client/v2/models/create_on_call_notification_rule_request.rb
|
|
3274
|
+
- lib/datadog_api_client/v2/models/create_on_call_notification_rule_request_data.rb
|
|
3244
3275
|
- lib/datadog_api_client/v2/models/create_open_api_response.rb
|
|
3245
3276
|
- lib/datadog_api_client/v2/models/create_open_api_response_attributes.rb
|
|
3246
3277
|
- lib/datadog_api_client/v2/models/create_open_api_response_data.rb
|
|
@@ -3489,21 +3520,27 @@ files:
|
|
|
3489
3520
|
- lib/datadog_api_client/v2/models/domain_allowlist_response_data.rb
|
|
3490
3521
|
- lib/datadog_api_client/v2/models/domain_allowlist_response_data_attributes.rb
|
|
3491
3522
|
- lib/datadog_api_client/v2/models/domain_allowlist_type.rb
|
|
3523
|
+
- lib/datadog_api_client/v2/models/dora_deployment_fetch_response.rb
|
|
3524
|
+
- lib/datadog_api_client/v2/models/dora_deployment_object.rb
|
|
3525
|
+
- lib/datadog_api_client/v2/models/dora_deployment_object_attributes.rb
|
|
3492
3526
|
- lib/datadog_api_client/v2/models/dora_deployment_request.rb
|
|
3493
3527
|
- lib/datadog_api_client/v2/models/dora_deployment_request_attributes.rb
|
|
3494
3528
|
- lib/datadog_api_client/v2/models/dora_deployment_request_data.rb
|
|
3495
3529
|
- lib/datadog_api_client/v2/models/dora_deployment_response.rb
|
|
3496
3530
|
- lib/datadog_api_client/v2/models/dora_deployment_response_data.rb
|
|
3497
3531
|
- lib/datadog_api_client/v2/models/dora_deployment_type.rb
|
|
3498
|
-
- lib/datadog_api_client/v2/models/
|
|
3532
|
+
- lib/datadog_api_client/v2/models/dora_deployments_list_response.rb
|
|
3533
|
+
- lib/datadog_api_client/v2/models/dora_failure_fetch_response.rb
|
|
3499
3534
|
- lib/datadog_api_client/v2/models/dora_failure_request.rb
|
|
3500
3535
|
- lib/datadog_api_client/v2/models/dora_failure_request_attributes.rb
|
|
3501
3536
|
- lib/datadog_api_client/v2/models/dora_failure_request_data.rb
|
|
3502
3537
|
- lib/datadog_api_client/v2/models/dora_failure_response.rb
|
|
3503
3538
|
- lib/datadog_api_client/v2/models/dora_failure_response_data.rb
|
|
3504
3539
|
- lib/datadog_api_client/v2/models/dora_failure_type.rb
|
|
3505
|
-
- lib/datadog_api_client/v2/models/
|
|
3540
|
+
- lib/datadog_api_client/v2/models/dora_failures_list_response.rb
|
|
3506
3541
|
- lib/datadog_api_client/v2/models/dora_git_info.rb
|
|
3542
|
+
- lib/datadog_api_client/v2/models/dora_incident_object.rb
|
|
3543
|
+
- lib/datadog_api_client/v2/models/dora_incident_object_attributes.rb
|
|
3507
3544
|
- lib/datadog_api_client/v2/models/dora_list_deployments_request.rb
|
|
3508
3545
|
- lib/datadog_api_client/v2/models/dora_list_deployments_request_attributes.rb
|
|
3509
3546
|
- lib/datadog_api_client/v2/models/dora_list_deployments_request_data.rb
|
|
@@ -3512,7 +3549,6 @@ files:
|
|
|
3512
3549
|
- lib/datadog_api_client/v2/models/dora_list_failures_request_attributes.rb
|
|
3513
3550
|
- lib/datadog_api_client/v2/models/dora_list_failures_request_data.rb
|
|
3514
3551
|
- lib/datadog_api_client/v2/models/dora_list_failures_request_data_type.rb
|
|
3515
|
-
- lib/datadog_api_client/v2/models/dora_list_response.rb
|
|
3516
3552
|
- lib/datadog_api_client/v2/models/downtime_create_request.rb
|
|
3517
3553
|
- lib/datadog_api_client/v2/models/downtime_create_request_attributes.rb
|
|
3518
3554
|
- lib/datadog_api_client/v2/models/downtime_create_request_data.rb
|
|
@@ -3979,6 +4015,13 @@ files:
|
|
|
3979
4015
|
- lib/datadog_api_client/v2/models/gitlab_integration.rb
|
|
3980
4016
|
- lib/datadog_api_client/v2/models/gitlab_integration_type.rb
|
|
3981
4017
|
- lib/datadog_api_client/v2/models/gitlab_integration_update.rb
|
|
4018
|
+
- lib/datadog_api_client/v2/models/global_variable_data.rb
|
|
4019
|
+
- lib/datadog_api_client/v2/models/global_variable_json_patch_request.rb
|
|
4020
|
+
- lib/datadog_api_client/v2/models/global_variable_json_patch_request_data.rb
|
|
4021
|
+
- lib/datadog_api_client/v2/models/global_variable_json_patch_request_data_attributes.rb
|
|
4022
|
+
- lib/datadog_api_client/v2/models/global_variable_json_patch_type.rb
|
|
4023
|
+
- lib/datadog_api_client/v2/models/global_variable_response.rb
|
|
4024
|
+
- lib/datadog_api_client/v2/models/global_variable_type.rb
|
|
3982
4025
|
- lib/datadog_api_client/v2/models/google_meet_configuration_reference.rb
|
|
3983
4026
|
- lib/datadog_api_client/v2/models/google_meet_configuration_reference_data.rb
|
|
3984
4027
|
- lib/datadog_api_client/v2/models/grey_noise_api_key.rb
|
|
@@ -4019,24 +4062,7 @@ files:
|
|
|
4019
4062
|
- lib/datadog_api_client/v2/models/httpci_app_error.rb
|
|
4020
4063
|
- lib/datadog_api_client/v2/models/httpci_app_errors.rb
|
|
4021
4064
|
- lib/datadog_api_client/v2/models/idp_metadata_form_data.rb
|
|
4022
|
-
- lib/datadog_api_client/v2/models/incident_attachment_attachment_type.rb
|
|
4023
|
-
- lib/datadog_api_client/v2/models/incident_attachment_attributes.rb
|
|
4024
|
-
- lib/datadog_api_client/v2/models/incident_attachment_data.rb
|
|
4025
|
-
- lib/datadog_api_client/v2/models/incident_attachment_link_attachment_type.rb
|
|
4026
|
-
- lib/datadog_api_client/v2/models/incident_attachment_link_attributes.rb
|
|
4027
|
-
- lib/datadog_api_client/v2/models/incident_attachment_link_attributes_attachment_object.rb
|
|
4028
|
-
- lib/datadog_api_client/v2/models/incident_attachment_postmortem_attachment_type.rb
|
|
4029
|
-
- lib/datadog_api_client/v2/models/incident_attachment_postmortem_attributes.rb
|
|
4030
|
-
- lib/datadog_api_client/v2/models/incident_attachment_related_object.rb
|
|
4031
|
-
- lib/datadog_api_client/v2/models/incident_attachment_relationships.rb
|
|
4032
4065
|
- lib/datadog_api_client/v2/models/incident_attachment_type.rb
|
|
4033
|
-
- lib/datadog_api_client/v2/models/incident_attachment_update_attributes.rb
|
|
4034
|
-
- lib/datadog_api_client/v2/models/incident_attachment_update_data.rb
|
|
4035
|
-
- lib/datadog_api_client/v2/models/incident_attachment_update_request.rb
|
|
4036
|
-
- lib/datadog_api_client/v2/models/incident_attachment_update_response.rb
|
|
4037
|
-
- lib/datadog_api_client/v2/models/incident_attachments_postmortem_attributes_attachment_object.rb
|
|
4038
|
-
- lib/datadog_api_client/v2/models/incident_attachments_response.rb
|
|
4039
|
-
- lib/datadog_api_client/v2/models/incident_attachments_response_included_item.rb
|
|
4040
4066
|
- lib/datadog_api_client/v2/models/incident_create_attributes.rb
|
|
4041
4067
|
- lib/datadog_api_client/v2/models/incident_create_data.rb
|
|
4042
4068
|
- lib/datadog_api_client/v2/models/incident_create_relationships.rb
|
|
@@ -4275,6 +4301,8 @@ files:
|
|
|
4275
4301
|
- lib/datadog_api_client/v2/models/job_create_response_data.rb
|
|
4276
4302
|
- lib/datadog_api_client/v2/models/job_definition.rb
|
|
4277
4303
|
- lib/datadog_api_client/v2/models/job_definition_from_rule.rb
|
|
4304
|
+
- lib/datadog_api_client/v2/models/json_patch_operation.rb
|
|
4305
|
+
- lib/datadog_api_client/v2/models/json_patch_operation_op.rb
|
|
4278
4306
|
- lib/datadog_api_client/v2/models/jsonapi_error_item.rb
|
|
4279
4307
|
- lib/datadog_api_client/v2/models/jsonapi_error_item_source.rb
|
|
4280
4308
|
- lib/datadog_api_client/v2/models/jsonapi_error_response.rb
|
|
@@ -4340,6 +4368,7 @@ files:
|
|
|
4340
4368
|
- lib/datadog_api_client/v2/models/list_findings_response.rb
|
|
4341
4369
|
- lib/datadog_api_client/v2/models/list_kind_catalog_response.rb
|
|
4342
4370
|
- lib/datadog_api_client/v2/models/list_notification_channels_response.rb
|
|
4371
|
+
- lib/datadog_api_client/v2/models/list_on_call_notification_rules_response.rb
|
|
4343
4372
|
- lib/datadog_api_client/v2/models/list_pipelines_response.rb
|
|
4344
4373
|
- lib/datadog_api_client/v2/models/list_pipelines_response_meta.rb
|
|
4345
4374
|
- lib/datadog_api_client/v2/models/list_powerpacks_response.rb
|
|
@@ -4892,7 +4921,20 @@ files:
|
|
|
4892
4921
|
- lib/datadog_api_client/v2/models/okta_integration.rb
|
|
4893
4922
|
- lib/datadog_api_client/v2/models/okta_integration_type.rb
|
|
4894
4923
|
- lib/datadog_api_client/v2/models/okta_integration_update.rb
|
|
4924
|
+
- lib/datadog_api_client/v2/models/on_call_notification_rule.rb
|
|
4925
|
+
- lib/datadog_api_client/v2/models/on_call_notification_rule_attributes.rb
|
|
4926
|
+
- lib/datadog_api_client/v2/models/on_call_notification_rule_category.rb
|
|
4927
|
+
- lib/datadog_api_client/v2/models/on_call_notification_rule_channel_relationship.rb
|
|
4928
|
+
- lib/datadog_api_client/v2/models/on_call_notification_rule_channel_relationship_data.rb
|
|
4929
|
+
- lib/datadog_api_client/v2/models/on_call_notification_rule_channel_settings.rb
|
|
4930
|
+
- lib/datadog_api_client/v2/models/on_call_notification_rule_data.rb
|
|
4931
|
+
- lib/datadog_api_client/v2/models/on_call_notification_rule_relationships.rb
|
|
4932
|
+
- lib/datadog_api_client/v2/models/on_call_notification_rule_request_attributes.rb
|
|
4933
|
+
- lib/datadog_api_client/v2/models/on_call_notification_rule_type.rb
|
|
4934
|
+
- lib/datadog_api_client/v2/models/on_call_notification_rules_included.rb
|
|
4895
4935
|
- lib/datadog_api_client/v2/models/on_call_page_target_type.rb
|
|
4936
|
+
- lib/datadog_api_client/v2/models/on_call_phone_notification_rule_method.rb
|
|
4937
|
+
- lib/datadog_api_client/v2/models/on_call_phone_notification_rule_settings.rb
|
|
4896
4938
|
- lib/datadog_api_client/v2/models/on_demand_concurrency_cap.rb
|
|
4897
4939
|
- lib/datadog_api_client/v2/models/on_demand_concurrency_cap_attributes.rb
|
|
4898
4940
|
- lib/datadog_api_client/v2/models/on_demand_concurrency_cap_response.rb
|
|
@@ -4979,6 +5021,10 @@ files:
|
|
|
4979
5021
|
- lib/datadog_api_client/v2/models/partial_application_key.rb
|
|
4980
5022
|
- lib/datadog_api_client/v2/models/partial_application_key_attributes.rb
|
|
4981
5023
|
- lib/datadog_api_client/v2/models/partial_application_key_response.rb
|
|
5024
|
+
- lib/datadog_api_client/v2/models/patch_attachment_request.rb
|
|
5025
|
+
- lib/datadog_api_client/v2/models/patch_attachment_request_data.rb
|
|
5026
|
+
- lib/datadog_api_client/v2/models/patch_attachment_request_data_attributes.rb
|
|
5027
|
+
- lib/datadog_api_client/v2/models/patch_attachment_request_data_attributes_attachment.rb
|
|
4982
5028
|
- lib/datadog_api_client/v2/models/patch_incident_notification_template_request.rb
|
|
4983
5029
|
- lib/datadog_api_client/v2/models/patch_notification_rule_parameters.rb
|
|
4984
5030
|
- lib/datadog_api_client/v2/models/patch_notification_rule_parameters_data.rb
|
|
@@ -5021,6 +5067,15 @@ files:
|
|
|
5021
5067
|
- lib/datadog_api_client/v2/models/process_summary.rb
|
|
5022
5068
|
- lib/datadog_api_client/v2/models/process_summary_attributes.rb
|
|
5023
5069
|
- lib/datadog_api_client/v2/models/process_summary_type.rb
|
|
5070
|
+
- lib/datadog_api_client/v2/models/product_analytics_server_side_event_error.rb
|
|
5071
|
+
- lib/datadog_api_client/v2/models/product_analytics_server_side_event_errors.rb
|
|
5072
|
+
- lib/datadog_api_client/v2/models/product_analytics_server_side_event_item.rb
|
|
5073
|
+
- lib/datadog_api_client/v2/models/product_analytics_server_side_event_item_account.rb
|
|
5074
|
+
- lib/datadog_api_client/v2/models/product_analytics_server_side_event_item_application.rb
|
|
5075
|
+
- lib/datadog_api_client/v2/models/product_analytics_server_side_event_item_event.rb
|
|
5076
|
+
- lib/datadog_api_client/v2/models/product_analytics_server_side_event_item_session.rb
|
|
5077
|
+
- lib/datadog_api_client/v2/models/product_analytics_server_side_event_item_type.rb
|
|
5078
|
+
- lib/datadog_api_client/v2/models/product_analytics_server_side_event_item_usr.rb
|
|
5024
5079
|
- lib/datadog_api_client/v2/models/project.rb
|
|
5025
5080
|
- lib/datadog_api_client/v2/models/project_attributes.rb
|
|
5026
5081
|
- lib/datadog_api_client/v2/models/project_create.rb
|
|
@@ -5466,6 +5521,10 @@ files:
|
|
|
5466
5521
|
- lib/datadog_api_client/v2/models/security_monitoring_filter_action.rb
|
|
5467
5522
|
- lib/datadog_api_client/v2/models/security_monitoring_list_rules_response.rb
|
|
5468
5523
|
- lib/datadog_api_client/v2/models/security_monitoring_reference_table.rb
|
|
5524
|
+
- lib/datadog_api_client/v2/models/security_monitoring_rule_anomaly_detection_options.rb
|
|
5525
|
+
- lib/datadog_api_client/v2/models/security_monitoring_rule_anomaly_detection_options_bucket_duration.rb
|
|
5526
|
+
- lib/datadog_api_client/v2/models/security_monitoring_rule_anomaly_detection_options_detection_tolerance.rb
|
|
5527
|
+
- lib/datadog_api_client/v2/models/security_monitoring_rule_anomaly_detection_options_learning_duration.rb
|
|
5469
5528
|
- lib/datadog_api_client/v2/models/security_monitoring_rule_case.rb
|
|
5470
5529
|
- lib/datadog_api_client/v2/models/security_monitoring_rule_case_action.rb
|
|
5471
5530
|
- lib/datadog_api_client/v2/models/security_monitoring_rule_case_action_options.rb
|
|
@@ -5821,6 +5880,15 @@ files:
|
|
|
5821
5880
|
- lib/datadog_api_client/v2/models/step_display_bounds.rb
|
|
5822
5881
|
- lib/datadog_api_client/v2/models/suppression_version_history.rb
|
|
5823
5882
|
- lib/datadog_api_client/v2/models/suppression_versions.rb
|
|
5883
|
+
- lib/datadog_api_client/v2/models/synthetics_global_variable.rb
|
|
5884
|
+
- lib/datadog_api_client/v2/models/synthetics_global_variable_attributes.rb
|
|
5885
|
+
- lib/datadog_api_client/v2/models/synthetics_global_variable_options.rb
|
|
5886
|
+
- lib/datadog_api_client/v2/models/synthetics_global_variable_parse_test_options.rb
|
|
5887
|
+
- lib/datadog_api_client/v2/models/synthetics_global_variable_parse_test_options_type.rb
|
|
5888
|
+
- lib/datadog_api_client/v2/models/synthetics_global_variable_parser_type.rb
|
|
5889
|
+
- lib/datadog_api_client/v2/models/synthetics_global_variable_totp_parameters.rb
|
|
5890
|
+
- lib/datadog_api_client/v2/models/synthetics_global_variable_value.rb
|
|
5891
|
+
- lib/datadog_api_client/v2/models/synthetics_variable_parser.rb
|
|
5824
5892
|
- lib/datadog_api_client/v2/models/table_result_v2.rb
|
|
5825
5893
|
- lib/datadog_api_client/v2/models/table_result_v2_array.rb
|
|
5826
5894
|
- lib/datadog_api_client/v2/models/table_result_v2_data.rb
|
|
@@ -5876,6 +5944,18 @@ files:
|
|
|
5876
5944
|
- lib/datadog_api_client/v2/models/team_link_response.rb
|
|
5877
5945
|
- lib/datadog_api_client/v2/models/team_link_type.rb
|
|
5878
5946
|
- lib/datadog_api_client/v2/models/team_links_response.rb
|
|
5947
|
+
- lib/datadog_api_client/v2/models/team_notification_rule.rb
|
|
5948
|
+
- lib/datadog_api_client/v2/models/team_notification_rule_attributes.rb
|
|
5949
|
+
- lib/datadog_api_client/v2/models/team_notification_rule_attributes_email.rb
|
|
5950
|
+
- lib/datadog_api_client/v2/models/team_notification_rule_attributes_ms_teams.rb
|
|
5951
|
+
- lib/datadog_api_client/v2/models/team_notification_rule_attributes_pagerduty.rb
|
|
5952
|
+
- lib/datadog_api_client/v2/models/team_notification_rule_attributes_slack.rb
|
|
5953
|
+
- lib/datadog_api_client/v2/models/team_notification_rule_request.rb
|
|
5954
|
+
- lib/datadog_api_client/v2/models/team_notification_rule_response.rb
|
|
5955
|
+
- lib/datadog_api_client/v2/models/team_notification_rule_type.rb
|
|
5956
|
+
- lib/datadog_api_client/v2/models/team_notification_rules_response.rb
|
|
5957
|
+
- lib/datadog_api_client/v2/models/team_notification_rules_response_meta.rb
|
|
5958
|
+
- lib/datadog_api_client/v2/models/team_notification_rules_response_meta_page.rb
|
|
5879
5959
|
- lib/datadog_api_client/v2/models/team_on_call_responders.rb
|
|
5880
5960
|
- lib/datadog_api_client/v2/models/team_on_call_responders_data.rb
|
|
5881
5961
|
- lib/datadog_api_client/v2/models/team_on_call_responders_data_relationships.rb
|
|
@@ -6012,6 +6092,9 @@ files:
|
|
|
6012
6092
|
- lib/datadog_api_client/v2/models/update_deployment_rule_params.rb
|
|
6013
6093
|
- lib/datadog_api_client/v2/models/update_deployment_rule_params_data.rb
|
|
6014
6094
|
- lib/datadog_api_client/v2/models/update_deployment_rule_params_data_attributes.rb
|
|
6095
|
+
- lib/datadog_api_client/v2/models/update_on_call_notification_rule_request.rb
|
|
6096
|
+
- lib/datadog_api_client/v2/models/update_on_call_notification_rule_request_attributes.rb
|
|
6097
|
+
- lib/datadog_api_client/v2/models/update_on_call_notification_rule_request_data.rb
|
|
6015
6098
|
- lib/datadog_api_client/v2/models/update_open_api_response.rb
|
|
6016
6099
|
- lib/datadog_api_client/v2/models/update_open_api_response_attributes.rb
|
|
6017
6100
|
- lib/datadog_api_client/v2/models/update_open_api_response_data.rb
|
|
@@ -6056,6 +6139,7 @@ files:
|
|
|
6056
6139
|
- lib/datadog_api_client/v2/models/usage_time_series_object.rb
|
|
6057
6140
|
- lib/datadog_api_client/v2/models/usage_time_series_type.rb
|
|
6058
6141
|
- lib/datadog_api_client/v2/models/user.rb
|
|
6142
|
+
- lib/datadog_api_client/v2/models/user140420082644000.rb
|
|
6059
6143
|
- lib/datadog_api_client/v2/models/user_attributes.rb
|
|
6060
6144
|
- lib/datadog_api_client/v2/models/user_attributes_status.rb
|
|
6061
6145
|
- lib/datadog_api_client/v2/models/user_create_attributes.rb
|
|
@@ -6094,6 +6178,7 @@ files:
|
|
|
6094
6178
|
- lib/datadog_api_client/v2/models/user_team_update_request.rb
|
|
6095
6179
|
- lib/datadog_api_client/v2/models/user_team_user_type.rb
|
|
6096
6180
|
- lib/datadog_api_client/v2/models/user_teams_response.rb
|
|
6181
|
+
- lib/datadog_api_client/v2/models/user_type.rb
|
|
6097
6182
|
- lib/datadog_api_client/v2/models/user_update_attributes.rb
|
|
6098
6183
|
- lib/datadog_api_client/v2/models/user_update_data.rb
|
|
6099
6184
|
- lib/datadog_api_client/v2/models/user_update_request.rb
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
# Get incident attachments returns "OK" response
|
|
2
|
-
|
|
3
|
-
require "datadog_api_client"
|
|
4
|
-
DatadogAPIClient.configure do |config|
|
|
5
|
-
config.unstable_operations["v2.list_incident_attachments".to_sym] = true
|
|
6
|
-
end
|
|
7
|
-
api_instance = DatadogAPIClient::V2::IncidentsAPI.new
|
|
8
|
-
|
|
9
|
-
# there is a valid "incident" in the system
|
|
10
|
-
INCIDENT_DATA_ID = ENV["INCIDENT_DATA_ID"]
|
|
11
|
-
p api_instance.list_incident_attachments(INCIDENT_DATA_ID)
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
# Create, update, and delete incident attachments returns "OK" response
|
|
2
|
-
|
|
3
|
-
require "datadog_api_client"
|
|
4
|
-
DatadogAPIClient.configure do |config|
|
|
5
|
-
config.unstable_operations["v2.update_incident_attachments".to_sym] = true
|
|
6
|
-
end
|
|
7
|
-
api_instance = DatadogAPIClient::V2::IncidentsAPI.new
|
|
8
|
-
|
|
9
|
-
body = DatadogAPIClient::V2::IncidentAttachmentUpdateRequest.new({
|
|
10
|
-
data: [
|
|
11
|
-
DatadogAPIClient::V2::IncidentAttachmentUpdateData.new({
|
|
12
|
-
attributes: DatadogAPIClient::V2::IncidentAttachmentPostmortemAttributes.new({
|
|
13
|
-
attachment: DatadogAPIClient::V2::IncidentAttachmentsPostmortemAttributesAttachmentObject.new({
|
|
14
|
-
document_url: "https://app.datadoghq.com/notebook/123",
|
|
15
|
-
title: "Postmortem IR-123",
|
|
16
|
-
}),
|
|
17
|
-
attachment_type: DatadogAPIClient::V2::IncidentAttachmentPostmortemAttachmentType::POSTMORTEM,
|
|
18
|
-
}),
|
|
19
|
-
id: "00000000-abcd-0002-0000-000000000000",
|
|
20
|
-
type: DatadogAPIClient::V2::IncidentAttachmentType::INCIDENT_ATTACHMENTS,
|
|
21
|
-
}),
|
|
22
|
-
DatadogAPIClient::V2::IncidentAttachmentUpdateData.new({
|
|
23
|
-
attributes: DatadogAPIClient::V2::IncidentAttachmentLinkAttributes.new({
|
|
24
|
-
attachment: DatadogAPIClient::V2::IncidentAttachmentLinkAttributesAttachmentObject.new({
|
|
25
|
-
document_url: "https://www.example.com/webstore-failure-runbook",
|
|
26
|
-
title: "Runbook for webstore service failures",
|
|
27
|
-
}),
|
|
28
|
-
attachment_type: DatadogAPIClient::V2::IncidentAttachmentLinkAttachmentType::LINK,
|
|
29
|
-
}),
|
|
30
|
-
type: DatadogAPIClient::V2::IncidentAttachmentType::INCIDENT_ATTACHMENTS,
|
|
31
|
-
}),
|
|
32
|
-
DatadogAPIClient::V2::IncidentAttachmentUpdateData.new({
|
|
33
|
-
id: "00000000-abcd-0003-0000-000000000000",
|
|
34
|
-
type: DatadogAPIClient::V2::IncidentAttachmentType::INCIDENT_ATTACHMENTS,
|
|
35
|
-
}),
|
|
36
|
-
],
|
|
37
|
-
})
|
|
38
|
-
p api_instance.update_incident_attachments("incident_id", body)
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
# Create an incident attachment returns "OK" response
|
|
2
|
-
|
|
3
|
-
require "datadog_api_client"
|
|
4
|
-
DatadogAPIClient.configure do |config|
|
|
5
|
-
config.unstable_operations["v2.update_incident_attachments".to_sym] = true
|
|
6
|
-
end
|
|
7
|
-
api_instance = DatadogAPIClient::V2::IncidentsAPI.new
|
|
8
|
-
|
|
9
|
-
# there is a valid "incident" in the system
|
|
10
|
-
INCIDENT_DATA_ID = ENV["INCIDENT_DATA_ID"]
|
|
11
|
-
|
|
12
|
-
body = DatadogAPIClient::V2::IncidentAttachmentUpdateRequest.new({
|
|
13
|
-
data: [
|
|
14
|
-
DatadogAPIClient::V2::IncidentAttachmentUpdateData.new({
|
|
15
|
-
type: DatadogAPIClient::V2::IncidentAttachmentType::INCIDENT_ATTACHMENTS,
|
|
16
|
-
attributes: DatadogAPIClient::V2::IncidentAttachmentLinkAttributes.new({
|
|
17
|
-
attachment_type: DatadogAPIClient::V2::IncidentAttachmentLinkAttachmentType::LINK,
|
|
18
|
-
attachment: DatadogAPIClient::V2::IncidentAttachmentLinkAttributesAttachmentObject.new({
|
|
19
|
-
document_url: "https://www.example.com/doc",
|
|
20
|
-
title: "Example-Incident",
|
|
21
|
-
}),
|
|
22
|
-
}),
|
|
23
|
-
}),
|
|
24
|
-
],
|
|
25
|
-
})
|
|
26
|
-
p api_instance.update_incident_attachments(INCIDENT_DATA_ID, body)
|