datadog_api_client 2.45.0 → 2.46.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 +81 -0
- data/.generator/schemas/v2/openapi.yaml +3968 -94
- data/.pre-commit-config.yaml +4 -0
- data/CHANGELOG.md +20 -0
- data/examples/v1/monitors/CreateMonitor_3541766733.rb +32 -0
- data/examples/v2/deployment-gates/CreateDeploymentGate.rb +20 -0
- data/examples/v2/deployment-gates/CreateDeploymentRule.rb +25 -0
- data/examples/v2/deployment-gates/DeleteDeploymentGate.rb +11 -0
- data/examples/v2/deployment-gates/DeleteDeploymentRule.rb +14 -0
- data/examples/v2/deployment-gates/GetDeploymentGate.rb +11 -0
- data/examples/v2/deployment-gates/GetDeploymentRule.rb +14 -0
- data/examples/v2/deployment-gates/UpdateDeploymentGate.rb +21 -0
- data/examples/v2/deployment-gates/UpdateDeploymentRule.rb +27 -0
- data/examples/v2/fleet-automation/GetFleetAgentInfo.rb +8 -0
- data/examples/v2/fleet-automation/ListFleetAgents.rb +8 -0
- data/examples/v2/logs-restriction-queries/AddRoleToRestrictionQuery.rb +21 -0
- data/examples/v2/logs-restriction-queries/CreateRestrictionQuery.rb +17 -0
- data/examples/v2/logs-restriction-queries/DeleteRestrictionQuery.rb +11 -0
- data/examples/v2/logs-restriction-queries/GetRestrictionQuery.rb +11 -0
- data/examples/v2/logs-restriction-queries/GetRoleRestrictionQuery.rb +11 -0
- data/examples/v2/logs-restriction-queries/ListRestrictionQueries.rb +8 -0
- data/examples/v2/logs-restriction-queries/ListRestrictionQueryRoles.rb +11 -0
- data/examples/v2/logs-restriction-queries/ListUserRestrictionQueries.rb +11 -0
- data/examples/v2/logs-restriction-queries/RemoveRoleFromRestrictionQuery.rb +21 -0
- data/examples/v2/logs-restriction-queries/ReplaceRestrictionQuery.rb +20 -0
- data/examples/v2/logs-restriction-queries/UpdateRestrictionQuery.rb +20 -0
- data/examples/v2/monitors/CreateMonitorNotificationRule_1379932371.rb +21 -0
- data/examples/v2/monitors/UpdateMonitorNotificationRule_1446058210.rb +24 -0
- data/examples/v2/on-call/CreateOnCallEscalationPolicy.rb +9 -0
- data/examples/v2/on-call/GetScheduleOnCallUser.rb +1 -1
- data/examples/v2/reference-tables/CreateReferenceTable.rb +23 -14
- data/examples/v2/reference-tables/DeleteRows.rb +14 -0
- data/examples/v2/reference-tables/UpsertRows.rb +19 -0
- data/examples/v2/security-monitoring/AttachCase.rb +26 -0
- data/examples/v2/security-monitoring/AttachCase_897782765.rb +22 -0
- data/examples/v2/security-monitoring/AttachJiraIssue.rb +34 -0
- data/examples/v2/security-monitoring/AttachJiraIssue_3042842144.rb +30 -0
- data/examples/v2/security-monitoring/CreateCases.rb +56 -0
- data/examples/v2/security-monitoring/CreateCases_2385516013.rb +33 -0
- data/examples/v2/security-monitoring/CreateCases_2798851680.rb +37 -0
- data/examples/v2/security-monitoring/CreateJiraIssues.rb +96 -0
- data/examples/v2/security-monitoring/CreateJiraIssues_379590688.rb +56 -0
- data/examples/v2/security-monitoring/CreateJiraIssues_829823123.rb +64 -0
- data/examples/v2/security-monitoring/DetachCase.rb +21 -0
- data/examples/v2/teams/AddTeamHierarchyLink.rb +31 -0
- data/examples/v2/{team-connections → teams}/CreateTeamConnections.rb +1 -1
- data/examples/v2/{team-connections → teams}/DeleteTeamConnections.rb +1 -1
- data/examples/v2/teams/GetTeamHierarchyLink.rb +8 -0
- data/examples/v2/teams/GetTeamSync.rb +8 -0
- data/examples/v2/{team-connections → teams}/ListTeamConnections.rb +1 -1
- data/examples/v2/{team-connections → teams}/ListTeamConnections_1473516764.rb +1 -1
- data/examples/v2/{team-connections → teams}/ListTeamConnections_2418873869.rb +1 -1
- data/examples/v2/teams/ListTeamHierarchyLinks.rb +15 -0
- data/examples/v2/teams/ListTeamHierarchyLinks_3360757486.rb +5 -0
- data/examples/v2/teams/RemoveTeamHierarchyLink.rb +8 -0
- data/lib/datadog_api_client/configuration.rb +25 -3
- data/lib/datadog_api_client/inflector.rb +141 -3
- data/lib/datadog_api_client/v1/api/monitors_api.rb +2 -0
- data/lib/datadog_api_client/v1/models/monitor.rb +13 -1
- data/lib/datadog_api_client/v1/models/monitor_asset.rb +186 -0
- data/lib/datadog_api_client/v1/models/monitor_asset_category.rb +26 -0
- data/lib/datadog_api_client/v1/models/monitor_asset_resource_type.rb +26 -0
- data/lib/datadog_api_client/v1/models/monitor_update_request.rb +14 -1
- data/lib/datadog_api_client/v1/models/usage_summary_date.rb +11 -1
- data/lib/datadog_api_client/v1/models/usage_summary_date_org.rb +11 -1
- data/lib/datadog_api_client/v1/models/usage_summary_response.rb +11 -1
- data/lib/datadog_api_client/v2/api/deployment_gates_api.rb +632 -0
- data/lib/datadog_api_client/v2/api/fleet_automation_api.rb +166 -1
- data/lib/datadog_api_client/v2/api/logs_restriction_queries_api.rb +842 -0
- data/lib/datadog_api_client/v2/api/on_call_api.rb +2 -2
- data/lib/datadog_api_client/v2/api/reference_tables_api.rb +144 -0
- data/lib/datadog_api_client/v2/api/security_monitoring_api.rb +355 -5
- data/lib/datadog_api_client/v2/api/teams_api.rb +628 -1
- data/lib/datadog_api_client/v2/models/attach_case_request.rb +105 -0
- data/lib/datadog_api_client/v2/models/attach_case_request_data.rb +154 -0
- data/lib/datadog_api_client/v2/models/attach_case_request_data_relationships.rb +123 -0
- data/lib/datadog_api_client/v2/models/attach_jira_issue_request.rb +105 -0
- data/lib/datadog_api_client/v2/models/attach_jira_issue_request_data.rb +153 -0
- data/lib/datadog_api_client/v2/models/attach_jira_issue_request_data_attributes.rb +123 -0
- data/lib/datadog_api_client/v2/models/attach_jira_issue_request_data_relationships.rb +144 -0
- data/lib/datadog_api_client/v2/models/batch_delete_rows_request_array.rb +129 -0
- data/lib/datadog_api_client/v2/models/batch_delete_rows_request_data.rb +144 -0
- data/lib/datadog_api_client/v2/models/batch_upsert_rows_request_array.rb +129 -0
- data/lib/datadog_api_client/v2/models/batch_upsert_rows_request_data.rb +154 -0
- data/lib/datadog_api_client/v2/models/batch_upsert_rows_request_data_attributes.rb +123 -0
- data/lib/datadog_api_client/v2/models/case_data_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/case_insights_items.rb +125 -0
- data/lib/datadog_api_client/v2/models/case_management_project.rb +123 -0
- data/lib/datadog_api_client/v2/models/case_management_project_data.rb +144 -0
- data/lib/datadog_api_client/v2/models/case_management_project_data_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/configured_schedule.rb +186 -0
- data/lib/datadog_api_client/v2/models/configured_schedule_target.rb +144 -0
- data/lib/datadog_api_client/v2/models/configured_schedule_target_attributes.rb +123 -0
- data/lib/datadog_api_client/v2/models/configured_schedule_target_relationships.rb +123 -0
- data/lib/datadog_api_client/v2/models/configured_schedule_target_relationships_schedule.rb +123 -0
- data/lib/datadog_api_client/v2/models/configured_schedule_target_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/create_case_request_array.rb +125 -0
- data/lib/datadog_api_client/v2/models/create_case_request_data.rb +153 -0
- data/lib/datadog_api_client/v2/models/create_case_request_data_attributes.rb +135 -0
- data/lib/datadog_api_client/v2/models/create_case_request_data_relationships.rb +144 -0
- data/lib/datadog_api_client/v2/models/create_deployment_gate_params.rb +123 -0
- data/lib/datadog_api_client/v2/models/create_deployment_gate_params_data.rb +144 -0
- data/lib/datadog_api_client/v2/models/create_deployment_gate_params_data_attributes.rb +164 -0
- data/lib/datadog_api_client/v2/models/create_deployment_rule_params.rb +105 -0
- data/lib/datadog_api_client/v2/models/create_deployment_rule_params_data.rb +144 -0
- data/lib/datadog_api_client/v2/models/create_deployment_rule_params_data_attributes.rb +175 -0
- data/lib/datadog_api_client/v2/models/create_jira_issue_request_array.rb +137 -0
- data/lib/datadog_api_client/v2/models/create_jira_issue_request_array_included.rb +64 -0
- data/lib/datadog_api_client/v2/models/create_jira_issue_request_data.rb +153 -0
- data/lib/datadog_api_client/v2/models/create_jira_issue_request_data_attributes.rb +105 -0
- data/lib/datadog_api_client/v2/models/create_jira_issue_request_data_attributes_fields.rb +105 -0
- data/lib/datadog_api_client/v2/models/create_jira_issue_request_data_relationships.rb +123 -0
- data/lib/datadog_api_client/v2/models/create_jira_issue_request_data_relationships_case.rb +123 -0
- data/lib/datadog_api_client/v2/models/create_jira_issue_request_data_relationships_case_data.rb +144 -0
- data/lib/datadog_api_client/v2/models/deployment_gate_data_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/deployment_gate_response.rb +105 -0
- data/lib/datadog_api_client/v2/models/deployment_gate_response_data.rb +165 -0
- data/lib/datadog_api_client/v2/models/deployment_gate_response_data_attributes.rb +248 -0
- data/lib/datadog_api_client/v2/models/deployment_gate_response_data_attributes_created_by.rb +143 -0
- data/lib/datadog_api_client/v2/models/deployment_gate_response_data_attributes_updated_by.rb +143 -0
- data/lib/datadog_api_client/v2/models/deployment_rule_data_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/{table_result_v2_data_attributes_file_metadata_local_file.rb → deployment_rule_options_faulty_deployment_detection.rb} +21 -19
- data/lib/datadog_api_client/v2/models/deployment_rule_options_monitor.rb +108 -0
- data/lib/datadog_api_client/v2/models/deployment_rule_response.rb +105 -0
- data/lib/datadog_api_client/v2/models/deployment_rule_response_data.rb +165 -0
- data/lib/datadog_api_client/v2/models/deployment_rule_response_data_attributes.rb +269 -0
- data/lib/datadog_api_client/v2/models/deployment_rule_response_data_attributes_created_by.rb +143 -0
- data/lib/datadog_api_client/v2/models/deployment_rule_response_data_attributes_type.rb +27 -0
- data/lib/datadog_api_client/v2/models/deployment_rule_response_data_attributes_updated_by.rb +143 -0
- data/lib/datadog_api_client/v2/models/deployment_rules_options.rb +63 -0
- data/lib/datadog_api_client/v2/models/detach_case_request.rb +105 -0
- data/lib/datadog_api_client/v2/models/detach_case_request_data.rb +143 -0
- data/lib/datadog_api_client/v2/models/detach_case_request_data_relationships.rb +123 -0
- data/lib/datadog_api_client/v2/models/escalation_policy_create_request_data_attributes.rb +28 -1
- data/lib/datadog_api_client/v2/models/escalation_policy_create_request_data_attributes_steps_items.rb +16 -1
- data/lib/datadog_api_client/v2/models/escalation_policy_data_attributes.rb +20 -1
- data/lib/datadog_api_client/v2/models/escalation_policy_included.rb +3 -2
- data/lib/datadog_api_client/v2/models/escalation_policy_step_target.rb +12 -2
- data/lib/datadog_api_client/v2/models/escalation_policy_step_target_config.rb +105 -0
- data/lib/datadog_api_client/v2/models/escalation_policy_step_target_config_schedule.rb +105 -0
- data/lib/datadog_api_client/v2/models/escalation_policy_update_request_data_attributes.rb +28 -1
- data/lib/datadog_api_client/v2/models/escalation_policy_update_request_data_attributes_steps_items.rb +16 -1
- data/lib/datadog_api_client/v2/models/escalation_target.rb +3 -2
- data/lib/datadog_api_client/v2/models/finding_case_response.rb +105 -0
- data/lib/datadog_api_client/v2/models/finding_case_response_array.rb +125 -0
- data/lib/datadog_api_client/v2/models/finding_case_response_data.rb +153 -0
- data/lib/datadog_api_client/v2/models/finding_case_response_data_attributes.rb +277 -0
- data/lib/datadog_api_client/v2/models/finding_case_response_data_relationships.rb +125 -0
- data/lib/datadog_api_client/v2/models/finding_data.rb +144 -0
- data/lib/datadog_api_client/v2/models/finding_data_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/finding_jira_issue.rb +125 -0
- data/lib/datadog_api_client/v2/models/finding_jira_issue_result.rb +135 -0
- data/lib/datadog_api_client/v2/models/findings.rb +107 -0
- data/lib/datadog_api_client/v2/models/fleet_agent_attributes.rb +327 -0
- data/lib/datadog_api_client/v2/models/fleet_agent_attributes_tags_items.rb +115 -0
- data/lib/datadog_api_client/v2/models/fleet_agent_info.rb +165 -0
- data/lib/datadog_api_client/v2/models/fleet_agent_info_attributes.rb +137 -0
- data/lib/datadog_api_client/v2/models/fleet_agent_info_details.rb +403 -0
- data/lib/datadog_api_client/v2/models/fleet_agent_info_resource_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/fleet_agent_info_response.rb +123 -0
- data/lib/datadog_api_client/v2/models/fleet_agents_response.rb +133 -0
- data/lib/datadog_api_client/v2/models/fleet_agents_response_data.rb +165 -0
- data/lib/datadog_api_client/v2/models/fleet_agents_response_data_attributes.rb +107 -0
- data/lib/datadog_api_client/v2/models/fleet_agents_response_meta.rb +105 -0
- data/lib/datadog_api_client/v2/models/fleet_configuration_file.rb +125 -0
- data/lib/datadog_api_client/v2/models/fleet_configuration_layer.rb +155 -0
- data/lib/datadog_api_client/v2/models/fleet_detected_integration.rb +115 -0
- data/lib/datadog_api_client/v2/models/fleet_integration_details.rb +197 -0
- data/lib/datadog_api_client/v2/models/fleet_integrations_by_status.rb +165 -0
- data/lib/datadog_api_client/v2/models/httpcd_gates_bad_request_response.rb +107 -0
- data/lib/datadog_api_client/v2/models/httpcd_gates_not_found_response.rb +107 -0
- data/lib/datadog_api_client/v2/models/httpcd_rules_not_found_response.rb +107 -0
- data/lib/datadog_api_client/v2/models/jira_issues_data_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/layer_attributes.rb +13 -3
- data/lib/datadog_api_client/v2/models/logs_restriction_queries_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/monitor_notification_rule_attributes.rb +2 -2
- data/lib/datadog_api_client/v2/models/monitor_notification_rule_condition.rb +1 -1
- data/lib/datadog_api_client/v2/models/monitor_notification_rule_conditional_recipients.rb +2 -2
- data/lib/datadog_api_client/v2/models/monitor_notification_rule_filter.rb +2 -1
- data/lib/datadog_api_client/v2/models/monitor_notification_rule_filter_scope.rb +106 -0
- data/lib/datadog_api_client/v2/models/monitor_notification_rule_filter_tags.rb +2 -2
- data/lib/datadog_api_client/v2/models/monitor_notification_rule_response_attributes.rb +2 -2
- data/lib/datadog_api_client/v2/models/observability_pipeline_google_chronicle_destination.rb +1 -12
- data/lib/datadog_api_client/v2/models/observability_pipeline_google_cloud_storage_destination.rb +2 -24
- data/lib/datadog_api_client/v2/models/observability_pipeline_google_pub_sub_source.rb +1 -12
- data/lib/datadog_api_client/v2/models/relationship_to_user_team_permission.rb +8 -0
- data/lib/datadog_api_client/v2/models/restriction_query_attributes.rb +165 -0
- data/lib/datadog_api_client/v2/models/restriction_query_create_attributes.rb +123 -0
- data/lib/datadog_api_client/v2/models/restriction_query_create_data.rb +115 -0
- data/lib/datadog_api_client/v2/models/restriction_query_create_payload.rb +105 -0
- data/lib/datadog_api_client/v2/models/restriction_query_list_response.rb +107 -0
- data/lib/datadog_api_client/v2/models/restriction_query_response_included_item.rb +62 -0
- data/lib/datadog_api_client/v2/models/restriction_query_role.rb +165 -0
- data/lib/datadog_api_client/v2/models/restriction_query_role_attribute.rb +105 -0
- data/lib/datadog_api_client/v2/models/restriction_query_roles_response.rb +107 -0
- data/lib/datadog_api_client/v2/models/restriction_query_update_attributes.rb +123 -0
- data/lib/datadog_api_client/v2/models/restriction_query_update_data.rb +115 -0
- data/lib/datadog_api_client/v2/models/restriction_query_update_payload.rb +105 -0
- data/lib/datadog_api_client/v2/models/restriction_query_with_relationships.rb +135 -0
- data/lib/datadog_api_client/v2/models/restriction_query_with_relationships_response.rb +117 -0
- data/lib/datadog_api_client/v2/models/restriction_query_without_relationships.rb +125 -0
- data/lib/datadog_api_client/v2/models/restriction_query_without_relationships_response.rb +105 -0
- data/lib/datadog_api_client/v2/models/schedule_create_request_data_attributes_layers_items.rb +13 -3
- data/lib/datadog_api_client/v2/models/schedule_target.rb +1 -1
- data/lib/datadog_api_client/v2/models/schedule_target_position.rb +28 -0
- data/lib/datadog_api_client/v2/models/schedule_update_request_data_attributes_layers_items.rb +13 -3
- data/lib/datadog_api_client/v2/models/table_result_v2_data_attributes.rb +8 -0
- data/lib/datadog_api_client/v2/models/table_result_v2_data_attributes_file_metadata.rb +101 -36
- data/lib/datadog_api_client/v2/models/team_attributes.rb +13 -1
- data/lib/datadog_api_client/v2/models/team_hierarchy_link.rb +175 -0
- data/lib/datadog_api_client/v2/models/team_hierarchy_link_attributes.rb +144 -0
- data/lib/datadog_api_client/v2/models/team_hierarchy_link_create.rb +144 -0
- data/lib/datadog_api_client/v2/models/team_hierarchy_link_create_relationships.rb +144 -0
- data/lib/datadog_api_client/v2/models/team_hierarchy_link_create_request.rb +123 -0
- data/lib/datadog_api_client/v2/models/team_hierarchy_link_create_team.rb +144 -0
- data/lib/datadog_api_client/v2/models/team_hierarchy_link_create_team_relationship.rb +123 -0
- data/lib/datadog_api_client/v2/models/team_hierarchy_link_relationships.rb +144 -0
- data/lib/datadog_api_client/v2/models/team_hierarchy_link_response.rb +127 -0
- data/lib/datadog_api_client/v2/models/team_hierarchy_link_team.rb +154 -0
- data/lib/datadog_api_client/v2/models/team_hierarchy_link_team_attributes.rb +223 -0
- data/lib/datadog_api_client/v2/models/team_hierarchy_link_team_relationship.rb +123 -0
- data/lib/datadog_api_client/v2/models/team_hierarchy_link_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/team_hierarchy_links_response.rb +139 -0
- data/lib/datadog_api_client/v2/models/team_sync_attributes.rb +22 -2
- data/lib/datadog_api_client/v2/models/team_sync_attributes_frequency.rb +28 -0
- data/lib/datadog_api_client/v2/models/team_sync_attributes_type.rb +2 -1
- data/lib/datadog_api_client/v2/models/team_sync_data.rb +12 -2
- data/lib/datadog_api_client/v2/models/team_sync_request.rb +1 -1
- data/lib/datadog_api_client/v2/models/team_sync_response.rb +107 -0
- data/lib/datadog_api_client/v2/models/teams_hierarchy_links_response_links.rb +156 -0
- data/lib/datadog_api_client/v2/models/teams_hierarchy_links_response_meta.rb +105 -0
- data/lib/datadog_api_client/v2/models/teams_hierarchy_links_response_meta_page.rb +184 -0
- data/lib/datadog_api_client/v2/models/threat_hunting_job_response_attributes.rb +13 -3
- data/lib/datadog_api_client/v2/models/update_deployment_gate_params.rb +123 -0
- data/lib/datadog_api_client/v2/models/update_deployment_gate_params_data.rb +165 -0
- data/lib/datadog_api_client/v2/models/update_deployment_gate_params_data_attributes.rb +123 -0
- data/lib/datadog_api_client/v2/models/update_deployment_rule_params.rb +123 -0
- data/lib/datadog_api_client/v2/models/update_deployment_rule_params_data.rb +144 -0
- data/lib/datadog_api_client/v2/models/update_deployment_rule_params_data_attributes.rb +165 -0
- data/lib/datadog_api_client/version.rb +1 -1
- metadata +190 -9
- data/lib/datadog_api_client/v2/api/team_connections_api.rb +0 -272
- data/lib/datadog_api_client/v2/models/table_result_v2_data_attributes_file_metadata_cloud_storage.rb +0 -138
|
@@ -321,6 +321,9 @@ module DatadogAPIClient
|
|
|
321
321
|
"v1.metrics_query_response" => "MetricsQueryResponse",
|
|
322
322
|
"v1.metrics_query_unit" => "MetricsQueryUnit",
|
|
323
323
|
"v1.monitor" => "Monitor",
|
|
324
|
+
"v1.monitor_asset" => "MonitorAsset",
|
|
325
|
+
"v1.monitor_asset_category" => "MonitorAssetCategory",
|
|
326
|
+
"v1.monitor_asset_resource_type" => "MonitorAssetResourceType",
|
|
324
327
|
"v1.monitor_device_id" => "MonitorDeviceID",
|
|
325
328
|
"v1.monitor_draft_status" => "MonitorDraftStatus",
|
|
326
329
|
"v1.monitor_formula_and_function_cost_aggregator" => "MonitorFormulaAndFunctionCostAggregator",
|
|
@@ -1128,6 +1131,13 @@ module DatadogAPIClient
|
|
|
1128
1131
|
"v2.asset_risks" => "AssetRisks",
|
|
1129
1132
|
"v2.asset_type" => "AssetType",
|
|
1130
1133
|
"v2.asset_version" => "AssetVersion",
|
|
1134
|
+
"v2.attach_case_request" => "AttachCaseRequest",
|
|
1135
|
+
"v2.attach_case_request_data" => "AttachCaseRequestData",
|
|
1136
|
+
"v2.attach_case_request_data_relationships" => "AttachCaseRequestDataRelationships",
|
|
1137
|
+
"v2.attach_jira_issue_request" => "AttachJiraIssueRequest",
|
|
1138
|
+
"v2.attach_jira_issue_request_data" => "AttachJiraIssueRequestData",
|
|
1139
|
+
"v2.attach_jira_issue_request_data_attributes" => "AttachJiraIssueRequestDataAttributes",
|
|
1140
|
+
"v2.attach_jira_issue_request_data_relationships" => "AttachJiraIssueRequestDataRelationships",
|
|
1131
1141
|
"v2.audit_logs_event" => "AuditLogsEvent",
|
|
1132
1142
|
"v2.audit_logs_event_attributes" => "AuditLogsEventAttributes",
|
|
1133
1143
|
"v2.audit_logs_events_response" => "AuditLogsEventsResponse",
|
|
@@ -1305,6 +1315,11 @@ module DatadogAPIClient
|
|
|
1305
1315
|
"v2.azure_uc_config_post_request_attributes" => "AzureUCConfigPostRequestAttributes",
|
|
1306
1316
|
"v2.azure_uc_config_post_request_type" => "AzureUCConfigPostRequestType",
|
|
1307
1317
|
"v2.azure_uc_configs_response" => "AzureUCConfigsResponse",
|
|
1318
|
+
"v2.batch_delete_rows_request_array" => "BatchDeleteRowsRequestArray",
|
|
1319
|
+
"v2.batch_delete_rows_request_data" => "BatchDeleteRowsRequestData",
|
|
1320
|
+
"v2.batch_upsert_rows_request_array" => "BatchUpsertRowsRequestArray",
|
|
1321
|
+
"v2.batch_upsert_rows_request_data" => "BatchUpsertRowsRequestData",
|
|
1322
|
+
"v2.batch_upsert_rows_request_data_attributes" => "BatchUpsertRowsRequestDataAttributes",
|
|
1308
1323
|
"v2.bill_config" => "BillConfig",
|
|
1309
1324
|
"v2.billing_dimensions_mapping_body_item" => "BillingDimensionsMappingBodyItem",
|
|
1310
1325
|
"v2.billing_dimensions_mapping_body_item_attributes" => "BillingDimensionsMappingBodyItemAttributes",
|
|
@@ -1347,8 +1362,13 @@ module DatadogAPIClient
|
|
|
1347
1362
|
"v2.case_create_attributes" => "CaseCreateAttributes",
|
|
1348
1363
|
"v2.case_create_relationships" => "CaseCreateRelationships",
|
|
1349
1364
|
"v2.case_create_request" => "CaseCreateRequest",
|
|
1365
|
+
"v2.case_data_type" => "CaseDataType",
|
|
1350
1366
|
"v2.case_empty" => "CaseEmpty",
|
|
1351
1367
|
"v2.case_empty_request" => "CaseEmptyRequest",
|
|
1368
|
+
"v2.case_insights_items" => "CaseInsightsItems",
|
|
1369
|
+
"v2.case_management_project" => "CaseManagementProject",
|
|
1370
|
+
"v2.case_management_project_data" => "CaseManagementProjectData",
|
|
1371
|
+
"v2.case_management_project_data_type" => "CaseManagementProjectDataType",
|
|
1352
1372
|
"v2.case_priority" => "CasePriority",
|
|
1353
1373
|
"v2.case_relationships" => "CaseRelationships",
|
|
1354
1374
|
"v2.case_resource_type" => "CaseResourceType",
|
|
@@ -1570,6 +1590,12 @@ module DatadogAPIClient
|
|
|
1570
1590
|
"v2.config_cat_sdk_key" => "ConfigCatSDKKey",
|
|
1571
1591
|
"v2.config_cat_sdk_key_type" => "ConfigCatSDKKeyType",
|
|
1572
1592
|
"v2.config_cat_sdk_key_update" => "ConfigCatSDKKeyUpdate",
|
|
1593
|
+
"v2.configured_schedule" => "ConfiguredSchedule",
|
|
1594
|
+
"v2.configured_schedule_target" => "ConfiguredScheduleTarget",
|
|
1595
|
+
"v2.configured_schedule_target_attributes" => "ConfiguredScheduleTargetAttributes",
|
|
1596
|
+
"v2.configured_schedule_target_relationships" => "ConfiguredScheduleTargetRelationships",
|
|
1597
|
+
"v2.configured_schedule_target_relationships_schedule" => "ConfiguredScheduleTargetRelationshipsSchedule",
|
|
1598
|
+
"v2.configured_schedule_target_type" => "ConfiguredScheduleTargetType",
|
|
1573
1599
|
"v2.confluent_account_create_request" => "ConfluentAccountCreateRequest",
|
|
1574
1600
|
"v2.confluent_account_create_request_attributes" => "ConfluentAccountCreateRequestAttributes",
|
|
1575
1601
|
"v2.confluent_account_create_request_data" => "ConfluentAccountCreateRequestData",
|
|
@@ -1656,6 +1682,10 @@ module DatadogAPIClient
|
|
|
1656
1682
|
"v2.create_apps_datastore_request_data_attributes_org_access" => "CreateAppsDatastoreRequestDataAttributesOrgAccess",
|
|
1657
1683
|
"v2.create_apps_datastore_response" => "CreateAppsDatastoreResponse",
|
|
1658
1684
|
"v2.create_apps_datastore_response_data" => "CreateAppsDatastoreResponseData",
|
|
1685
|
+
"v2.create_case_request_array" => "CreateCaseRequestArray",
|
|
1686
|
+
"v2.create_case_request_data" => "CreateCaseRequestData",
|
|
1687
|
+
"v2.create_case_request_data_attributes" => "CreateCaseRequestDataAttributes",
|
|
1688
|
+
"v2.create_case_request_data_relationships" => "CreateCaseRequestDataRelationships",
|
|
1659
1689
|
"v2.create_connection_request" => "CreateConnectionRequest",
|
|
1660
1690
|
"v2.create_connection_request_data" => "CreateConnectionRequestData",
|
|
1661
1691
|
"v2.create_connection_request_data_attributes" => "CreateConnectionRequestDataAttributes",
|
|
@@ -1667,8 +1697,22 @@ module DatadogAPIClient
|
|
|
1667
1697
|
"v2.create_data_deletion_request_body_data" => "CreateDataDeletionRequestBodyData",
|
|
1668
1698
|
"v2.create_data_deletion_request_body_data_type" => "CreateDataDeletionRequestBodyDataType",
|
|
1669
1699
|
"v2.create_data_deletion_response_body" => "CreateDataDeletionResponseBody",
|
|
1700
|
+
"v2.create_deployment_gate_params" => "CreateDeploymentGateParams",
|
|
1701
|
+
"v2.create_deployment_gate_params_data" => "CreateDeploymentGateParamsData",
|
|
1702
|
+
"v2.create_deployment_gate_params_data_attributes" => "CreateDeploymentGateParamsDataAttributes",
|
|
1703
|
+
"v2.create_deployment_rule_params" => "CreateDeploymentRuleParams",
|
|
1704
|
+
"v2.create_deployment_rule_params_data" => "CreateDeploymentRuleParamsData",
|
|
1705
|
+
"v2.create_deployment_rule_params_data_attributes" => "CreateDeploymentRuleParamsDataAttributes",
|
|
1670
1706
|
"v2.create_incident_notification_rule_request" => "CreateIncidentNotificationRuleRequest",
|
|
1671
1707
|
"v2.create_incident_notification_template_request" => "CreateIncidentNotificationTemplateRequest",
|
|
1708
|
+
"v2.create_jira_issue_request_array" => "CreateJiraIssueRequestArray",
|
|
1709
|
+
"v2.create_jira_issue_request_array_included" => "CreateJiraIssueRequestArrayIncluded",
|
|
1710
|
+
"v2.create_jira_issue_request_data" => "CreateJiraIssueRequestData",
|
|
1711
|
+
"v2.create_jira_issue_request_data_attributes" => "CreateJiraIssueRequestDataAttributes",
|
|
1712
|
+
"v2.create_jira_issue_request_data_attributes_fields" => "CreateJiraIssueRequestDataAttributesFields",
|
|
1713
|
+
"v2.create_jira_issue_request_data_relationships" => "CreateJiraIssueRequestDataRelationships",
|
|
1714
|
+
"v2.create_jira_issue_request_data_relationships_case" => "CreateJiraIssueRequestDataRelationshipsCase",
|
|
1715
|
+
"v2.create_jira_issue_request_data_relationships_case_data" => "CreateJiraIssueRequestDataRelationshipsCaseData",
|
|
1672
1716
|
"v2.create_notification_rule_parameters" => "CreateNotificationRuleParameters",
|
|
1673
1717
|
"v2.create_notification_rule_parameters_data" => "CreateNotificationRuleParametersData",
|
|
1674
1718
|
"v2.create_notification_rule_parameters_data_attributes" => "CreateNotificationRuleParametersDataAttributes",
|
|
@@ -1880,9 +1924,28 @@ module DatadogAPIClient
|
|
|
1880
1924
|
"v2.dependency_location" => "DependencyLocation",
|
|
1881
1925
|
"v2.deployment" => "Deployment",
|
|
1882
1926
|
"v2.deployment_attributes" => "DeploymentAttributes",
|
|
1927
|
+
"v2.deployment_gate_data_type" => "DeploymentGateDataType",
|
|
1928
|
+
"v2.deployment_gate_response" => "DeploymentGateResponse",
|
|
1929
|
+
"v2.deployment_gate_response_data" => "DeploymentGateResponseData",
|
|
1930
|
+
"v2.deployment_gate_response_data_attributes" => "DeploymentGateResponseDataAttributes",
|
|
1931
|
+
"v2.deployment_gate_response_data_attributes_created_by" => "DeploymentGateResponseDataAttributesCreatedBy",
|
|
1932
|
+
"v2.deployment_gate_response_data_attributes_updated_by" => "DeploymentGateResponseDataAttributesUpdatedBy",
|
|
1883
1933
|
"v2.deployment_metadata" => "DeploymentMetadata",
|
|
1884
1934
|
"v2.deployment_relationship" => "DeploymentRelationship",
|
|
1885
1935
|
"v2.deployment_relationship_data" => "DeploymentRelationshipData",
|
|
1936
|
+
"v2.deployment_rule_data_type" => "DeploymentRuleDataType",
|
|
1937
|
+
"v2.deployment_rule_options_faulty_deployment_detection" => "DeploymentRuleOptionsFaultyDeploymentDetection",
|
|
1938
|
+
"v2.deployment_rule_options_monitor" => "DeploymentRuleOptionsMonitor",
|
|
1939
|
+
"v2.deployment_rule_response" => "DeploymentRuleResponse",
|
|
1940
|
+
"v2.deployment_rule_response_data" => "DeploymentRuleResponseData",
|
|
1941
|
+
"v2.deployment_rule_response_data_attributes" => "DeploymentRuleResponseDataAttributes",
|
|
1942
|
+
"v2.deployment_rule_response_data_attributes_created_by" => "DeploymentRuleResponseDataAttributesCreatedBy",
|
|
1943
|
+
"v2.deployment_rule_response_data_attributes_type" => "DeploymentRuleResponseDataAttributesType",
|
|
1944
|
+
"v2.deployment_rule_response_data_attributes_updated_by" => "DeploymentRuleResponseDataAttributesUpdatedBy",
|
|
1945
|
+
"v2.deployment_rules_options" => "DeploymentRulesOptions",
|
|
1946
|
+
"v2.detach_case_request" => "DetachCaseRequest",
|
|
1947
|
+
"v2.detach_case_request_data" => "DetachCaseRequestData",
|
|
1948
|
+
"v2.detach_case_request_data_relationships" => "DetachCaseRequestDataRelationships",
|
|
1886
1949
|
"v2.detailed_finding" => "DetailedFinding",
|
|
1887
1950
|
"v2.detailed_finding_attributes" => "DetailedFindingAttributes",
|
|
1888
1951
|
"v2.detailed_finding_type" => "DetailedFindingType",
|
|
@@ -2064,6 +2127,8 @@ module DatadogAPIClient
|
|
|
2064
2127
|
"v2.escalation_policy_step_attributes_assignment" => "EscalationPolicyStepAttributesAssignment",
|
|
2065
2128
|
"v2.escalation_policy_step_relationships" => "EscalationPolicyStepRelationships",
|
|
2066
2129
|
"v2.escalation_policy_step_target" => "EscalationPolicyStepTarget",
|
|
2130
|
+
"v2.escalation_policy_step_target_config" => "EscalationPolicyStepTargetConfig",
|
|
2131
|
+
"v2.escalation_policy_step_target_config_schedule" => "EscalationPolicyStepTargetConfigSchedule",
|
|
2067
2132
|
"v2.escalation_policy_step_target_type" => "EscalationPolicyStepTargetType",
|
|
2068
2133
|
"v2.escalation_policy_step_type" => "EscalationPolicyStepType",
|
|
2069
2134
|
"v2.escalation_policy_update_request" => "EscalationPolicyUpdateRequest",
|
|
@@ -2167,10 +2232,20 @@ module DatadogAPIClient
|
|
|
2167
2232
|
"v2.filters_per_product" => "FiltersPerProduct",
|
|
2168
2233
|
"v2.finding" => "Finding",
|
|
2169
2234
|
"v2.finding_attributes" => "FindingAttributes",
|
|
2235
|
+
"v2.finding_case_response" => "FindingCaseResponse",
|
|
2236
|
+
"v2.finding_case_response_array" => "FindingCaseResponseArray",
|
|
2237
|
+
"v2.finding_case_response_data" => "FindingCaseResponseData",
|
|
2238
|
+
"v2.finding_case_response_data_attributes" => "FindingCaseResponseDataAttributes",
|
|
2239
|
+
"v2.finding_case_response_data_relationships" => "FindingCaseResponseDataRelationships",
|
|
2240
|
+
"v2.finding_data" => "FindingData",
|
|
2241
|
+
"v2.finding_data_type" => "FindingDataType",
|
|
2170
2242
|
"v2.finding_evaluation" => "FindingEvaluation",
|
|
2243
|
+
"v2.finding_jira_issue" => "FindingJiraIssue",
|
|
2244
|
+
"v2.finding_jira_issue_result" => "FindingJiraIssueResult",
|
|
2171
2245
|
"v2.finding_mute" => "FindingMute",
|
|
2172
2246
|
"v2.finding_mute_reason" => "FindingMuteReason",
|
|
2173
2247
|
"v2.finding_rule" => "FindingRule",
|
|
2248
|
+
"v2.findings" => "Findings",
|
|
2174
2249
|
"v2.finding_status" => "FindingStatus",
|
|
2175
2250
|
"v2.finding_type" => "FindingType",
|
|
2176
2251
|
"v2.finding_vulnerability_type" => "FindingVulnerabilityType",
|
|
@@ -2191,10 +2266,23 @@ module DatadogAPIClient
|
|
|
2191
2266
|
"v2.flaky_tests_search_sort" => "FlakyTestsSearchSort",
|
|
2192
2267
|
"v2.flaky_test_stats" => "FlakyTestStats",
|
|
2193
2268
|
"v2.flaky_test_type" => "FlakyTestType",
|
|
2269
|
+
"v2.fleet_agent_attributes" => "FleetAgentAttributes",
|
|
2270
|
+
"v2.fleet_agent_attributes_tags_items" => "FleetAgentAttributesTagsItems",
|
|
2271
|
+
"v2.fleet_agent_info" => "FleetAgentInfo",
|
|
2272
|
+
"v2.fleet_agent_info_attributes" => "FleetAgentInfoAttributes",
|
|
2273
|
+
"v2.fleet_agent_info_details" => "FleetAgentInfoDetails",
|
|
2274
|
+
"v2.fleet_agent_info_resource_type" => "FleetAgentInfoResourceType",
|
|
2275
|
+
"v2.fleet_agent_info_response" => "FleetAgentInfoResponse",
|
|
2276
|
+
"v2.fleet_agents_response" => "FleetAgentsResponse",
|
|
2277
|
+
"v2.fleet_agents_response_data" => "FleetAgentsResponseData",
|
|
2278
|
+
"v2.fleet_agents_response_data_attributes" => "FleetAgentsResponseDataAttributes",
|
|
2279
|
+
"v2.fleet_agents_response_meta" => "FleetAgentsResponseMeta",
|
|
2194
2280
|
"v2.fleet_agent_version" => "FleetAgentVersion",
|
|
2195
2281
|
"v2.fleet_agent_version_attributes" => "FleetAgentVersionAttributes",
|
|
2196
2282
|
"v2.fleet_agent_version_resource_type" => "FleetAgentVersionResourceType",
|
|
2197
2283
|
"v2.fleet_agent_versions_response" => "FleetAgentVersionsResponse",
|
|
2284
|
+
"v2.fleet_configuration_file" => "FleetConfigurationFile",
|
|
2285
|
+
"v2.fleet_configuration_layer" => "FleetConfigurationLayer",
|
|
2198
2286
|
"v2.fleet_deployment" => "FleetDeployment",
|
|
2199
2287
|
"v2.fleet_deployment_attributes" => "FleetDeploymentAttributes",
|
|
2200
2288
|
"v2.fleet_deployment_configure_attributes" => "FleetDeploymentConfigureAttributes",
|
|
@@ -2215,6 +2303,9 @@ module DatadogAPIClient
|
|
|
2215
2303
|
"v2.fleet_deployments_page" => "FleetDeploymentsPage",
|
|
2216
2304
|
"v2.fleet_deployments_response" => "FleetDeploymentsResponse",
|
|
2217
2305
|
"v2.fleet_deployments_response_meta" => "FleetDeploymentsResponseMeta",
|
|
2306
|
+
"v2.fleet_detected_integration" => "FleetDetectedIntegration",
|
|
2307
|
+
"v2.fleet_integration_details" => "FleetIntegrationDetails",
|
|
2308
|
+
"v2.fleet_integrations_by_status" => "FleetIntegrationsByStatus",
|
|
2218
2309
|
"v2.fleet_schedule" => "FleetSchedule",
|
|
2219
2310
|
"v2.fleet_schedule_attributes" => "FleetScheduleAttributes",
|
|
2220
2311
|
"v2.fleet_schedule_create" => "FleetScheduleCreate",
|
|
@@ -2375,6 +2466,9 @@ module DatadogAPIClient
|
|
|
2375
2466
|
"v2.hourly_usage_response" => "HourlyUsageResponse",
|
|
2376
2467
|
"v2.hourly_usage_type" => "HourlyUsageType",
|
|
2377
2468
|
"v2.http_body" => "HTTPBody",
|
|
2469
|
+
"v2.httpcd_gates_bad_request_response" => "HTTPCDGatesBadRequestResponse",
|
|
2470
|
+
"v2.httpcd_gates_not_found_response" => "HTTPCDGatesNotFoundResponse",
|
|
2471
|
+
"v2.httpcd_rules_not_found_response" => "HTTPCDRulesNotFoundResponse",
|
|
2378
2472
|
"v2.httpci_app_error" => "HTTPCIAppError",
|
|
2379
2473
|
"v2.httpci_app_errors" => "HTTPCIAppErrors",
|
|
2380
2474
|
"v2.http_credentials" => "HTTPCredentials",
|
|
@@ -2644,6 +2738,7 @@ module DatadogAPIClient
|
|
|
2644
2738
|
"v2.jira_integration_metadata_issues_item" => "JiraIntegrationMetadataIssuesItem",
|
|
2645
2739
|
"v2.jira_issue" => "JiraIssue",
|
|
2646
2740
|
"v2.jira_issue_result" => "JiraIssueResult",
|
|
2741
|
+
"v2.jira_issues_data_type" => "JiraIssuesDataType",
|
|
2647
2742
|
"v2.job_create_response" => "JobCreateResponse",
|
|
2648
2743
|
"v2.job_create_response_data" => "JobCreateResponseData",
|
|
2649
2744
|
"v2.job_definition" => "JobDefinition",
|
|
@@ -2798,6 +2893,7 @@ module DatadogAPIClient
|
|
|
2798
2893
|
"v2.logs_query_options" => "LogsQueryOptions",
|
|
2799
2894
|
"v2.logs_response_metadata" => "LogsResponseMetadata",
|
|
2800
2895
|
"v2.logs_response_metadata_page" => "LogsResponseMetadataPage",
|
|
2896
|
+
"v2.logs_restriction_queries_type" => "LogsRestrictionQueriesType",
|
|
2801
2897
|
"v2.logs_sort" => "LogsSort",
|
|
2802
2898
|
"v2.logs_sort_order" => "LogsSortOrder",
|
|
2803
2899
|
"v2.logs_storage_tier" => "LogsStorageTier",
|
|
@@ -2956,6 +3052,7 @@ module DatadogAPIClient
|
|
|
2956
3052
|
"v2.monitor_notification_rule_create_request_data" => "MonitorNotificationRuleCreateRequestData",
|
|
2957
3053
|
"v2.monitor_notification_rule_data" => "MonitorNotificationRuleData",
|
|
2958
3054
|
"v2.monitor_notification_rule_filter" => "MonitorNotificationRuleFilter",
|
|
3055
|
+
"v2.monitor_notification_rule_filter_scope" => "MonitorNotificationRuleFilterScope",
|
|
2959
3056
|
"v2.monitor_notification_rule_filter_tags" => "MonitorNotificationRuleFilterTags",
|
|
2960
3057
|
"v2.monitor_notification_rule_list_response" => "MonitorNotificationRuleListResponse",
|
|
2961
3058
|
"v2.monitor_notification_rule_relationships" => "MonitorNotificationRuleRelationships",
|
|
@@ -3514,6 +3611,22 @@ module DatadogAPIClient
|
|
|
3514
3611
|
"v2.restriction_policy_response" => "RestrictionPolicyResponse",
|
|
3515
3612
|
"v2.restriction_policy_type" => "RestrictionPolicyType",
|
|
3516
3613
|
"v2.restriction_policy_update_request" => "RestrictionPolicyUpdateRequest",
|
|
3614
|
+
"v2.restriction_query_attributes" => "RestrictionQueryAttributes",
|
|
3615
|
+
"v2.restriction_query_create_attributes" => "RestrictionQueryCreateAttributes",
|
|
3616
|
+
"v2.restriction_query_create_data" => "RestrictionQueryCreateData",
|
|
3617
|
+
"v2.restriction_query_create_payload" => "RestrictionQueryCreatePayload",
|
|
3618
|
+
"v2.restriction_query_list_response" => "RestrictionQueryListResponse",
|
|
3619
|
+
"v2.restriction_query_response_included_item" => "RestrictionQueryResponseIncludedItem",
|
|
3620
|
+
"v2.restriction_query_role" => "RestrictionQueryRole",
|
|
3621
|
+
"v2.restriction_query_role_attribute" => "RestrictionQueryRoleAttribute",
|
|
3622
|
+
"v2.restriction_query_roles_response" => "RestrictionQueryRolesResponse",
|
|
3623
|
+
"v2.restriction_query_update_attributes" => "RestrictionQueryUpdateAttributes",
|
|
3624
|
+
"v2.restriction_query_update_data" => "RestrictionQueryUpdateData",
|
|
3625
|
+
"v2.restriction_query_update_payload" => "RestrictionQueryUpdatePayload",
|
|
3626
|
+
"v2.restriction_query_without_relationships" => "RestrictionQueryWithoutRelationships",
|
|
3627
|
+
"v2.restriction_query_without_relationships_response" => "RestrictionQueryWithoutRelationshipsResponse",
|
|
3628
|
+
"v2.restriction_query_with_relationships" => "RestrictionQueryWithRelationships",
|
|
3629
|
+
"v2.restriction_query_with_relationships_response" => "RestrictionQueryWithRelationshipsResponse",
|
|
3517
3630
|
"v2.retention_filter" => "RetentionFilter",
|
|
3518
3631
|
"v2.retention_filter_all" => "RetentionFilterAll",
|
|
3519
3632
|
"v2.retention_filter_all_attributes" => "RetentionFilterAllAttributes",
|
|
@@ -3765,6 +3878,7 @@ module DatadogAPIClient
|
|
|
3765
3878
|
"v2.schedule_request_data_attributes_layers_items_members_items" => "ScheduleRequestDataAttributesLayersItemsMembersItems",
|
|
3766
3879
|
"v2.schedule_request_data_attributes_layers_items_members_items_user" => "ScheduleRequestDataAttributesLayersItemsMembersItemsUser",
|
|
3767
3880
|
"v2.schedule_target" => "ScheduleTarget",
|
|
3881
|
+
"v2.schedule_target_position" => "ScheduleTargetPosition",
|
|
3768
3882
|
"v2.schedule_target_type" => "ScheduleTargetType",
|
|
3769
3883
|
"v2.schedule_trigger" => "ScheduleTrigger",
|
|
3770
3884
|
"v2.schedule_trigger_wrapper" => "ScheduleTriggerWrapper",
|
|
@@ -4158,9 +4272,7 @@ module DatadogAPIClient
|
|
|
4158
4272
|
"v2.table_result_v2_data" => "TableResultV2Data",
|
|
4159
4273
|
"v2.table_result_v2_data_attributes" => "TableResultV2DataAttributes",
|
|
4160
4274
|
"v2.table_result_v2_data_attributes_file_metadata" => "TableResultV2DataAttributesFileMetadata",
|
|
4161
|
-
"v2.table_result_v2_data_attributes_file_metadata_cloud_storage" => "TableResultV2DataAttributesFileMetadataCloudStorage",
|
|
4162
4275
|
"v2.table_result_v2_data_attributes_file_metadata_cloud_storage_error_type" => "TableResultV2DataAttributesFileMetadataCloudStorageErrorType",
|
|
4163
|
-
"v2.table_result_v2_data_attributes_file_metadata_local_file" => "TableResultV2DataAttributesFileMetadataLocalFile",
|
|
4164
4276
|
"v2.table_result_v2_data_attributes_file_metadata_one_of_access_details" => "TableResultV2DataAttributesFileMetadataOneOfAccessDetails",
|
|
4165
4277
|
"v2.table_result_v2_data_attributes_file_metadata_one_of_access_details_aws_detail" => "TableResultV2DataAttributesFileMetadataOneOfAccessDetailsAwsDetail",
|
|
4166
4278
|
"v2.table_result_v2_data_attributes_file_metadata_one_of_access_details_azure_detail" => "TableResultV2DataAttributesFileMetadataOneOfAccessDetailsAzureDetail",
|
|
@@ -4188,6 +4300,20 @@ module DatadogAPIClient
|
|
|
4188
4300
|
"v2.team_create_attributes" => "TeamCreateAttributes",
|
|
4189
4301
|
"v2.team_create_relationships" => "TeamCreateRelationships",
|
|
4190
4302
|
"v2.team_create_request" => "TeamCreateRequest",
|
|
4303
|
+
"v2.team_hierarchy_link" => "TeamHierarchyLink",
|
|
4304
|
+
"v2.team_hierarchy_link_attributes" => "TeamHierarchyLinkAttributes",
|
|
4305
|
+
"v2.team_hierarchy_link_create" => "TeamHierarchyLinkCreate",
|
|
4306
|
+
"v2.team_hierarchy_link_create_relationships" => "TeamHierarchyLinkCreateRelationships",
|
|
4307
|
+
"v2.team_hierarchy_link_create_request" => "TeamHierarchyLinkCreateRequest",
|
|
4308
|
+
"v2.team_hierarchy_link_create_team" => "TeamHierarchyLinkCreateTeam",
|
|
4309
|
+
"v2.team_hierarchy_link_create_team_relationship" => "TeamHierarchyLinkCreateTeamRelationship",
|
|
4310
|
+
"v2.team_hierarchy_link_relationships" => "TeamHierarchyLinkRelationships",
|
|
4311
|
+
"v2.team_hierarchy_link_response" => "TeamHierarchyLinkResponse",
|
|
4312
|
+
"v2.team_hierarchy_links_response" => "TeamHierarchyLinksResponse",
|
|
4313
|
+
"v2.team_hierarchy_link_team" => "TeamHierarchyLinkTeam",
|
|
4314
|
+
"v2.team_hierarchy_link_team_attributes" => "TeamHierarchyLinkTeamAttributes",
|
|
4315
|
+
"v2.team_hierarchy_link_team_relationship" => "TeamHierarchyLinkTeamRelationship",
|
|
4316
|
+
"v2.team_hierarchy_link_type" => "TeamHierarchyLinkType",
|
|
4191
4317
|
"v2.team_included" => "TeamIncluded",
|
|
4192
4318
|
"v2.team_link" => "TeamLink",
|
|
4193
4319
|
"v2.team_link_attributes" => "TeamLinkAttributes",
|
|
@@ -4240,16 +4366,21 @@ module DatadogAPIClient
|
|
|
4240
4366
|
"v2.team_routing_rules_request_data_type" => "TeamRoutingRulesRequestDataType",
|
|
4241
4367
|
"v2.team_routing_rules_request_rule" => "TeamRoutingRulesRequestRule",
|
|
4242
4368
|
"v2.teams_field" => "TeamsField",
|
|
4369
|
+
"v2.teams_hierarchy_links_response_links" => "TeamsHierarchyLinksResponseLinks",
|
|
4370
|
+
"v2.teams_hierarchy_links_response_meta" => "TeamsHierarchyLinksResponseMeta",
|
|
4371
|
+
"v2.teams_hierarchy_links_response_meta_page" => "TeamsHierarchyLinksResponseMetaPage",
|
|
4243
4372
|
"v2.teams_response" => "TeamsResponse",
|
|
4244
4373
|
"v2.teams_response_links" => "TeamsResponseLinks",
|
|
4245
4374
|
"v2.teams_response_meta" => "TeamsResponseMeta",
|
|
4246
4375
|
"v2.teams_response_meta_pagination" => "TeamsResponseMetaPagination",
|
|
4247
4376
|
"v2.team_sync_attributes" => "TeamSyncAttributes",
|
|
4377
|
+
"v2.team_sync_attributes_frequency" => "TeamSyncAttributesFrequency",
|
|
4248
4378
|
"v2.team_sync_attributes_source" => "TeamSyncAttributesSource",
|
|
4249
4379
|
"v2.team_sync_attributes_type" => "TeamSyncAttributesType",
|
|
4250
4380
|
"v2.team_sync_bulk_type" => "TeamSyncBulkType",
|
|
4251
4381
|
"v2.team_sync_data" => "TeamSyncData",
|
|
4252
4382
|
"v2.team_sync_request" => "TeamSyncRequest",
|
|
4383
|
+
"v2.team_sync_response" => "TeamSyncResponse",
|
|
4253
4384
|
"v2.team_target" => "TeamTarget",
|
|
4254
4385
|
"v2.team_target_type" => "TeamTargetType",
|
|
4255
4386
|
"v2.team_type" => "TeamType",
|
|
@@ -4321,6 +4452,12 @@ module DatadogAPIClient
|
|
|
4321
4452
|
"v2.update_connection_request_data_type" => "UpdateConnectionRequestDataType",
|
|
4322
4453
|
"v2.update_custom_framework_request" => "UpdateCustomFrameworkRequest",
|
|
4323
4454
|
"v2.update_custom_framework_response" => "UpdateCustomFrameworkResponse",
|
|
4455
|
+
"v2.update_deployment_gate_params" => "UpdateDeploymentGateParams",
|
|
4456
|
+
"v2.update_deployment_gate_params_data" => "UpdateDeploymentGateParamsData",
|
|
4457
|
+
"v2.update_deployment_gate_params_data_attributes" => "UpdateDeploymentGateParamsDataAttributes",
|
|
4458
|
+
"v2.update_deployment_rule_params" => "UpdateDeploymentRuleParams",
|
|
4459
|
+
"v2.update_deployment_rule_params_data" => "UpdateDeploymentRuleParamsData",
|
|
4460
|
+
"v2.update_deployment_rule_params_data_attributes" => "UpdateDeploymentRuleParamsDataAttributes",
|
|
4324
4461
|
"v2.update_open_api_response" => "UpdateOpenAPIResponse",
|
|
4325
4462
|
"v2.update_open_api_response_attributes" => "UpdateOpenAPIResponseAttributes",
|
|
4326
4463
|
"v2.update_open_api_response_data" => "UpdateOpenAPIResponseData",
|
|
@@ -4529,6 +4666,7 @@ module DatadogAPIClient
|
|
|
4529
4666
|
"v2.dashboard_lists_api" => "DashboardListsAPI",
|
|
4530
4667
|
"v2.data_deletion_api" => "DataDeletionAPI",
|
|
4531
4668
|
"v2.datasets_api" => "DatasetsAPI",
|
|
4669
|
+
"v2.deployment_gates_api" => "DeploymentGatesAPI",
|
|
4532
4670
|
"v2.domain_allowlist_api" => "DomainAllowlistAPI",
|
|
4533
4671
|
"v2.dora_metrics_api" => "DORAMetricsAPI",
|
|
4534
4672
|
"v2.downtimes_api" => "DowntimesAPI",
|
|
@@ -4546,6 +4684,7 @@ module DatadogAPIClient
|
|
|
4546
4684
|
"v2.logs_archives_api" => "LogsArchivesAPI",
|
|
4547
4685
|
"v2.logs_custom_destinations_api" => "LogsCustomDestinationsAPI",
|
|
4548
4686
|
"v2.logs_metrics_api" => "LogsMetricsAPI",
|
|
4687
|
+
"v2.logs_restriction_queries_api" => "LogsRestrictionQueriesAPI",
|
|
4549
4688
|
"v2.metrics_api" => "MetricsAPI",
|
|
4550
4689
|
"v2.microsoft_teams_integration_api" => "MicrosoftTeamsIntegrationAPI",
|
|
4551
4690
|
"v2.monitors_api" => "MonitorsAPI",
|
|
@@ -4578,7 +4717,6 @@ module DatadogAPIClient
|
|
|
4578
4717
|
"v2.spans_metrics_api" => "SpansMetricsAPI",
|
|
4579
4718
|
"v2.static_analysis_api" => "StaticAnalysisAPI",
|
|
4580
4719
|
"v2.synthetics_api" => "SyntheticsAPI",
|
|
4581
|
-
"v2.team_connections_api" => "TeamConnectionsAPI",
|
|
4582
4720
|
"v2.teams_api" => "TeamsAPI",
|
|
4583
4721
|
"v2.test_optimization_api" => "TestOptimizationAPI",
|
|
4584
4722
|
"v2.usage_metering_api" => "UsageMeteringAPI",
|
|
@@ -456,6 +456,7 @@ module DatadogAPIClient::V1
|
|
|
456
456
|
# @param opts [Hash] the optional parameters
|
|
457
457
|
# @option opts [String] :group_states When specified, shows additional information about the group states. Choose one or more from `all`, `alert`, `warn`, and `no data`.
|
|
458
458
|
# @option opts [Boolean] :with_downtimes If this argument is set to true, then the returned data includes all current active downtimes for the monitor.
|
|
459
|
+
# @option opts [Boolean] :with_assets If this argument is set to `true`, the returned data includes all assets tied to this monitor.
|
|
459
460
|
# @return [Array<(Monitor, Integer, Hash)>] Monitor data, response status code and response headers
|
|
460
461
|
def get_monitor_with_http_info(monitor_id, opts = {})
|
|
461
462
|
|
|
@@ -473,6 +474,7 @@ module DatadogAPIClient::V1
|
|
|
473
474
|
query_params = opts[:query_params] || {}
|
|
474
475
|
query_params[:'group_states'] = opts[:'group_states'] if !opts[:'group_states'].nil?
|
|
475
476
|
query_params[:'with_downtimes'] = opts[:'with_downtimes'] if !opts[:'with_downtimes'].nil?
|
|
477
|
+
query_params[:'with_assets'] = opts[:'with_assets'] if !opts[:'with_assets'].nil?
|
|
476
478
|
|
|
477
479
|
# header parameters
|
|
478
480
|
header_params = opts[:header_params] || {}
|
|
@@ -21,6 +21,9 @@ module DatadogAPIClient::V1
|
|
|
21
21
|
class Monitor
|
|
22
22
|
include BaseGenericModel
|
|
23
23
|
|
|
24
|
+
# The list of monitor assets tied to a monitor, which represents key links for users to take action on monitor alerts (for example, runbooks).
|
|
25
|
+
attr_accessor :assets
|
|
26
|
+
|
|
24
27
|
# Timestamp of the monitor creation.
|
|
25
28
|
attr_accessor :created
|
|
26
29
|
|
|
@@ -86,6 +89,7 @@ module DatadogAPIClient::V1
|
|
|
86
89
|
# @!visibility private
|
|
87
90
|
def self.attribute_map
|
|
88
91
|
{
|
|
92
|
+
:'assets' => :'assets',
|
|
89
93
|
:'created' => :'created',
|
|
90
94
|
:'creator' => :'creator',
|
|
91
95
|
:'deleted' => :'deleted',
|
|
@@ -111,6 +115,7 @@ module DatadogAPIClient::V1
|
|
|
111
115
|
# @!visibility private
|
|
112
116
|
def self.openapi_types
|
|
113
117
|
{
|
|
118
|
+
:'assets' => :'Array<MonitorAsset>',
|
|
114
119
|
:'created' => :'Time',
|
|
115
120
|
:'creator' => :'Creator',
|
|
116
121
|
:'deleted' => :'Time',
|
|
@@ -160,6 +165,12 @@ module DatadogAPIClient::V1
|
|
|
160
165
|
end
|
|
161
166
|
}
|
|
162
167
|
|
|
168
|
+
if attributes.key?(:'assets')
|
|
169
|
+
if (value = attributes[:'assets']).is_a?(Array)
|
|
170
|
+
self.assets = value
|
|
171
|
+
end
|
|
172
|
+
end
|
|
173
|
+
|
|
163
174
|
if attributes.key?(:'created')
|
|
164
175
|
self.created = attributes[:'created']
|
|
165
176
|
end
|
|
@@ -294,6 +305,7 @@ module DatadogAPIClient::V1
|
|
|
294
305
|
def ==(o)
|
|
295
306
|
return true if self.equal?(o)
|
|
296
307
|
self.class == o.class &&
|
|
308
|
+
assets == o.assets &&
|
|
297
309
|
created == o.created &&
|
|
298
310
|
creator == o.creator &&
|
|
299
311
|
deleted == o.deleted &&
|
|
@@ -319,7 +331,7 @@ module DatadogAPIClient::V1
|
|
|
319
331
|
# @return [Integer] Hash code
|
|
320
332
|
# @!visibility private
|
|
321
333
|
def hash
|
|
322
|
-
[created, creator, deleted, draft_status, id, matching_downtimes, message, modified, multi, name, options, overall_state, priority, query, restricted_roles, state, tags, type, additional_properties].hash
|
|
334
|
+
[assets, created, creator, deleted, draft_status, id, matching_downtimes, message, modified, multi, name, options, overall_state, priority, query, restricted_roles, state, tags, type, additional_properties].hash
|
|
323
335
|
end
|
|
324
336
|
end
|
|
325
337
|
end
|
|
@@ -0,0 +1,186 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Datadog API V1 Collection
|
|
3
|
+
|
|
4
|
+
#Collection of all Datadog Public endpoints.
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 1.0
|
|
7
|
+
Contact: support@datadoghq.com
|
|
8
|
+
Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator
|
|
9
|
+
|
|
10
|
+
Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
|
|
11
|
+
This product includes software developed at Datadog (https://www.datadoghq.com/).
|
|
12
|
+
Copyright 2020-Present Datadog, Inc.
|
|
13
|
+
|
|
14
|
+
=end
|
|
15
|
+
|
|
16
|
+
require 'date'
|
|
17
|
+
require 'time'
|
|
18
|
+
|
|
19
|
+
module DatadogAPIClient::V1
|
|
20
|
+
# Represents key links tied to a monitor to help users take action on alerts.
|
|
21
|
+
# This feature is in Preview and only available to users with the feature enabled.
|
|
22
|
+
class MonitorAsset
|
|
23
|
+
include BaseGenericModel
|
|
24
|
+
|
|
25
|
+
# Indicates the type of asset this entity represents on a monitor.
|
|
26
|
+
attr_reader :category
|
|
27
|
+
|
|
28
|
+
# Name for the monitor asset
|
|
29
|
+
attr_reader :name
|
|
30
|
+
|
|
31
|
+
# Represents the identifier of the internal Datadog resource that this asset represents. IDs in this field should be passed in as strings.
|
|
32
|
+
attr_accessor :resource_key
|
|
33
|
+
|
|
34
|
+
# Type of internal Datadog resource associated with a monitor asset.
|
|
35
|
+
attr_accessor :resource_type
|
|
36
|
+
|
|
37
|
+
# URL link for the asset. For links with an internal resource type set, this should be the relative path to where the Datadog domain is appended internally. For external links, this should be the full URL path.
|
|
38
|
+
attr_reader :url
|
|
39
|
+
|
|
40
|
+
attr_accessor :additional_properties
|
|
41
|
+
|
|
42
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
43
|
+
# @!visibility private
|
|
44
|
+
def self.attribute_map
|
|
45
|
+
{
|
|
46
|
+
:'category' => :'category',
|
|
47
|
+
:'name' => :'name',
|
|
48
|
+
:'resource_key' => :'resource_key',
|
|
49
|
+
:'resource_type' => :'resource_type',
|
|
50
|
+
:'url' => :'url'
|
|
51
|
+
}
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
# Attribute type mapping.
|
|
55
|
+
# @!visibility private
|
|
56
|
+
def self.openapi_types
|
|
57
|
+
{
|
|
58
|
+
:'category' => :'MonitorAssetCategory',
|
|
59
|
+
:'name' => :'String',
|
|
60
|
+
:'resource_key' => :'String',
|
|
61
|
+
:'resource_type' => :'MonitorAssetResourceType',
|
|
62
|
+
:'url' => :'String'
|
|
63
|
+
}
|
|
64
|
+
end
|
|
65
|
+
|
|
66
|
+
# Initializes the object
|
|
67
|
+
# @param attributes [Hash] Model attributes in the form of hash
|
|
68
|
+
# @!visibility private
|
|
69
|
+
def initialize(attributes = {})
|
|
70
|
+
if (!attributes.is_a?(Hash))
|
|
71
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V1::MonitorAsset` initialize method"
|
|
72
|
+
end
|
|
73
|
+
|
|
74
|
+
self.additional_properties = {}
|
|
75
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
|
76
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
|
77
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
|
78
|
+
self.additional_properties[k.to_sym] = v
|
|
79
|
+
else
|
|
80
|
+
h[k.to_sym] = v
|
|
81
|
+
end
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
if attributes.key?(:'category')
|
|
85
|
+
self.category = attributes[:'category']
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
if attributes.key?(:'name')
|
|
89
|
+
self.name = attributes[:'name']
|
|
90
|
+
end
|
|
91
|
+
|
|
92
|
+
if attributes.key?(:'resource_key')
|
|
93
|
+
self.resource_key = attributes[:'resource_key']
|
|
94
|
+
end
|
|
95
|
+
|
|
96
|
+
if attributes.key?(:'resource_type')
|
|
97
|
+
self.resource_type = attributes[:'resource_type']
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
if attributes.key?(:'url')
|
|
101
|
+
self.url = attributes[:'url']
|
|
102
|
+
end
|
|
103
|
+
end
|
|
104
|
+
|
|
105
|
+
# Check to see if the all the properties in the model are valid
|
|
106
|
+
# @return true if the model is valid
|
|
107
|
+
# @!visibility private
|
|
108
|
+
def valid?
|
|
109
|
+
return false if @category.nil?
|
|
110
|
+
return false if @name.nil?
|
|
111
|
+
return false if @url.nil?
|
|
112
|
+
true
|
|
113
|
+
end
|
|
114
|
+
|
|
115
|
+
# Custom attribute writer method with validation
|
|
116
|
+
# @param category [Object] Object to be assigned
|
|
117
|
+
# @!visibility private
|
|
118
|
+
def category=(category)
|
|
119
|
+
if category.nil?
|
|
120
|
+
fail ArgumentError, 'invalid value for "category", category cannot be nil.'
|
|
121
|
+
end
|
|
122
|
+
@category = category
|
|
123
|
+
end
|
|
124
|
+
|
|
125
|
+
# Custom attribute writer method with validation
|
|
126
|
+
# @param name [Object] Object to be assigned
|
|
127
|
+
# @!visibility private
|
|
128
|
+
def name=(name)
|
|
129
|
+
if name.nil?
|
|
130
|
+
fail ArgumentError, 'invalid value for "name", name cannot be nil.'
|
|
131
|
+
end
|
|
132
|
+
@name = name
|
|
133
|
+
end
|
|
134
|
+
|
|
135
|
+
# Custom attribute writer method with validation
|
|
136
|
+
# @param url [Object] Object to be assigned
|
|
137
|
+
# @!visibility private
|
|
138
|
+
def url=(url)
|
|
139
|
+
if url.nil?
|
|
140
|
+
fail ArgumentError, 'invalid value for "url", url cannot be nil.'
|
|
141
|
+
end
|
|
142
|
+
@url = url
|
|
143
|
+
end
|
|
144
|
+
|
|
145
|
+
# Returns the object in the form of hash, with additionalProperties support.
|
|
146
|
+
# @return [Hash] Returns the object in the form of hash
|
|
147
|
+
# @!visibility private
|
|
148
|
+
def to_hash
|
|
149
|
+
hash = {}
|
|
150
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
151
|
+
value = self.send(attr)
|
|
152
|
+
if value.nil?
|
|
153
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
|
154
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
|
155
|
+
end
|
|
156
|
+
|
|
157
|
+
hash[param] = _to_hash(value)
|
|
158
|
+
end
|
|
159
|
+
self.additional_properties.each_pair do |attr, value|
|
|
160
|
+
hash[attr] = value
|
|
161
|
+
end
|
|
162
|
+
hash
|
|
163
|
+
end
|
|
164
|
+
|
|
165
|
+
# Checks equality by comparing each attribute.
|
|
166
|
+
# @param o [Object] Object to be compared
|
|
167
|
+
# @!visibility private
|
|
168
|
+
def ==(o)
|
|
169
|
+
return true if self.equal?(o)
|
|
170
|
+
self.class == o.class &&
|
|
171
|
+
category == o.category &&
|
|
172
|
+
name == o.name &&
|
|
173
|
+
resource_key == o.resource_key &&
|
|
174
|
+
resource_type == o.resource_type &&
|
|
175
|
+
url == o.url &&
|
|
176
|
+
additional_properties == o.additional_properties
|
|
177
|
+
end
|
|
178
|
+
|
|
179
|
+
# Calculates hash code according to all attributes.
|
|
180
|
+
# @return [Integer] Hash code
|
|
181
|
+
# @!visibility private
|
|
182
|
+
def hash
|
|
183
|
+
[category, name, resource_key, resource_type, url, additional_properties].hash
|
|
184
|
+
end
|
|
185
|
+
end
|
|
186
|
+
end
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Datadog API V1 Collection
|
|
3
|
+
|
|
4
|
+
#Collection of all Datadog Public endpoints.
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 1.0
|
|
7
|
+
Contact: support@datadoghq.com
|
|
8
|
+
Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator
|
|
9
|
+
|
|
10
|
+
Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
|
|
11
|
+
This product includes software developed at Datadog (https://www.datadoghq.com/).
|
|
12
|
+
Copyright 2020-Present Datadog, Inc.
|
|
13
|
+
|
|
14
|
+
=end
|
|
15
|
+
|
|
16
|
+
require 'date'
|
|
17
|
+
require 'time'
|
|
18
|
+
|
|
19
|
+
module DatadogAPIClient::V1
|
|
20
|
+
# Indicates the type of asset this entity represents on a monitor.
|
|
21
|
+
class MonitorAssetCategory
|
|
22
|
+
include BaseEnumModel
|
|
23
|
+
|
|
24
|
+
RUNBOOK = "runbook".freeze
|
|
25
|
+
end
|
|
26
|
+
end
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Datadog API V1 Collection
|
|
3
|
+
|
|
4
|
+
#Collection of all Datadog Public endpoints.
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 1.0
|
|
7
|
+
Contact: support@datadoghq.com
|
|
8
|
+
Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator
|
|
9
|
+
|
|
10
|
+
Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
|
|
11
|
+
This product includes software developed at Datadog (https://www.datadoghq.com/).
|
|
12
|
+
Copyright 2020-Present Datadog, Inc.
|
|
13
|
+
|
|
14
|
+
=end
|
|
15
|
+
|
|
16
|
+
require 'date'
|
|
17
|
+
require 'time'
|
|
18
|
+
|
|
19
|
+
module DatadogAPIClient::V1
|
|
20
|
+
# Type of internal Datadog resource associated with a monitor asset.
|
|
21
|
+
class MonitorAssetResourceType
|
|
22
|
+
include BaseEnumModel
|
|
23
|
+
|
|
24
|
+
NOTEBOOK = "notebook".freeze
|
|
25
|
+
end
|
|
26
|
+
end
|