datadog_api_client 2.42.0 → 2.43.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 +3 -7
- data/.generator/schemas/v2/openapi.yaml +2981 -63
- data/.github/CODEOWNERS +4 -4
- data/.github/workflows/reusable-ci.yml +71 -0
- data/.github/workflows/reusable-examples.yml +40 -0
- data/.github/workflows/{test_integration.yml → reusable-integration-test.yml} +66 -17
- data/.github/workflows/reusable-pre-commit.yml +84 -0
- data/.github/workflows/reusable-ruby-test.yml +65 -0
- data/.github/workflows/test.yml +31 -89
- data/CHANGELOG.md +19 -0
- data/examples/v1/dashboards/CreateDashboard_607525069.rb +61 -0
- data/examples/v2/aws-integration/GetAWSIntegrationIAMPermissionsResourceCollection.rb +5 -0
- data/examples/v2/aws-integration/GetAWSIntegrationIAMPermissionsResourceCollection_1008672547.rb +5 -0
- data/examples/v2/aws-integration/GetAWSIntegrationIAMPermissionsStandard.rb +5 -0
- data/examples/v2/aws-integration/GetAWSIntegrationIAMPermissionsStandard_3136299151.rb +5 -0
- data/examples/v2/cloud-cost-management/CreateArbitraryCostRule.rb +63 -0
- data/examples/v2/cloud-cost-management/CreateCostAzureUCConfigs.rb +0 -1
- data/examples/v2/cloud-cost-management/CreateCostGCPUsageCostConfig.rb +1 -1
- data/examples/v2/cloud-cost-management/CreateRuleset.rb +32 -0
- data/examples/v2/cloud-cost-management/DeleteArbitraryCostRule.rb +5 -0
- data/examples/v2/cloud-cost-management/DeleteCostGCPUsageCostConfig.rb +1 -1
- data/examples/v2/cloud-cost-management/DeleteRuleset.rb +5 -0
- data/examples/v2/cloud-cost-management/GetArbitraryCostRule.rb +5 -0
- data/examples/v2/cloud-cost-management/GetCostAWSCURConfig.rb +5 -0
- data/examples/v2/cloud-cost-management/GetCostAzureUCConfig.rb +5 -0
- data/examples/v2/cloud-cost-management/GetCostGCPUsageCostConfig.rb +5 -0
- data/examples/v2/cloud-cost-management/GetRuleset.rb +5 -0
- data/examples/v2/cloud-cost-management/ListArbitraryCostRules.rb +5 -0
- data/examples/v2/cloud-cost-management/ListCostGCPUsageCostConfigs.rb +1 -1
- data/examples/v2/cloud-cost-management/ListRulesets.rb +5 -0
- data/examples/v2/cloud-cost-management/ReorderArbitraryCostRules.rb +22 -0
- data/examples/v2/cloud-cost-management/ReorderRulesets.rb +13 -0
- data/examples/v2/cloud-cost-management/UpdateArbitraryCostRule.rb +63 -0
- data/examples/v2/cloud-cost-management/UpdateCostGCPUsageCostConfig.rb +1 -1
- data/examples/v2/cloud-cost-management/UpdateRuleset.rb +31 -0
- data/examples/v2/cloud-cost-management/ValidateQuery.rb +14 -0
- data/examples/v2/dora-metrics/DeleteDORADeployment.rb +5 -0
- data/examples/v2/dora-metrics/DeleteDORAFailure.rb +5 -0
- data/examples/v2/incidents/CreateIncidentImpact.rb +22 -0
- data/examples/v2/incidents/DeleteIncidentImpact.rb +12 -0
- data/examples/v2/incidents/ListIncidentImpacts.rb +11 -0
- data/examples/v2/key-management/GetCurrentUserApplicationKey.rb +4 -1
- data/examples/v2/security-monitoring/CreateSecurityMonitoringRule_2899714190.rb +68 -0
- data/examples/v2/security-monitoring/ValidateSecurityMonitoringRule_4152369508.rb +70 -0
- data/lib/datadog_api_client/configuration.rb +3 -0
- data/lib/datadog_api_client/inflector.rb +104 -1
- data/lib/datadog_api_client/v1/api/synthetics_api.rb +1 -3
- data/lib/datadog_api_client/v1/models/formula_and_function_events_data_source.rb +1 -0
- data/lib/datadog_api_client/v2/api/aws_integration_api.rb +120 -0
- data/lib/datadog_api_client/v2/api/cloud_cost_management_api.rb +1211 -126
- data/lib/datadog_api_client/v2/api/dora_metrics_api.rb +130 -0
- data/lib/datadog_api_client/v2/api/incidents_api.rb +229 -0
- data/lib/datadog_api_client/v2/api/security_monitoring_api.rb +2 -0
- data/lib/datadog_api_client/v2/models/account_filtering_config.rb +8 -0
- data/lib/datadog_api_client/v2/models/arbitrary_cost_upsert_request.rb +105 -0
- data/lib/datadog_api_client/v2/models/arbitrary_cost_upsert_request_data.rb +143 -0
- data/lib/datadog_api_client/v2/models/arbitrary_cost_upsert_request_data_attributes.rb +241 -0
- data/lib/datadog_api_client/v2/models/arbitrary_cost_upsert_request_data_attributes_costs_to_allocate_items.rb +174 -0
- data/lib/datadog_api_client/v2/models/arbitrary_cost_upsert_request_data_attributes_strategy.rb +215 -0
- data/lib/datadog_api_client/v2/models/arbitrary_cost_upsert_request_data_attributes_strategy_allocated_by_filters_items.rb +174 -0
- data/lib/datadog_api_client/v2/models/arbitrary_cost_upsert_request_data_attributes_strategy_allocated_by_items.rb +146 -0
- data/lib/datadog_api_client/v2/models/arbitrary_cost_upsert_request_data_attributes_strategy_allocated_by_items_allocated_tags_items.rb +144 -0
- data/lib/datadog_api_client/v2/models/arbitrary_cost_upsert_request_data_attributes_strategy_based_on_costs_items.rb +174 -0
- data/lib/datadog_api_client/v2/models/arbitrary_cost_upsert_request_data_attributes_strategy_evaluate_grouped_by_filters_items.rb +174 -0
- data/lib/datadog_api_client/v2/models/arbitrary_cost_upsert_request_data_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/arbitrary_rule_response.rb +105 -0
- data/lib/datadog_api_client/v2/models/arbitrary_rule_response_array.rb +125 -0
- data/lib/datadog_api_client/v2/models/arbitrary_rule_response_data.rb +143 -0
- data/lib/datadog_api_client/v2/models/arbitrary_rule_response_data_attributes.rb +351 -0
- data/lib/datadog_api_client/v2/models/arbitrary_rule_response_data_attributes_costs_to_allocate_items.rb +174 -0
- data/lib/datadog_api_client/v2/models/arbitrary_rule_response_data_attributes_strategy.rb +215 -0
- data/lib/datadog_api_client/v2/models/arbitrary_rule_response_data_attributes_strategy_allocated_by_filters_items.rb +174 -0
- data/lib/datadog_api_client/v2/models/arbitrary_rule_response_data_attributes_strategy_allocated_by_items.rb +146 -0
- data/lib/datadog_api_client/v2/models/arbitrary_rule_response_data_attributes_strategy_allocated_by_items_allocated_tags_items.rb +144 -0
- data/lib/datadog_api_client/v2/models/arbitrary_rule_response_data_attributes_strategy_based_on_costs_items.rb +174 -0
- data/lib/datadog_api_client/v2/models/arbitrary_rule_response_data_attributes_strategy_evaluate_grouped_by_filters_items.rb +174 -0
- data/lib/datadog_api_client/v2/models/arbitrary_rule_response_data_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/aws_cur_config_attributes.rb +8 -0
- data/lib/datadog_api_client/v2/models/aws_cur_config_post_data.rb +1 -12
- data/lib/datadog_api_client/v2/models/aws_cur_config_response.rb +5 -5
- data/lib/datadog_api_client/v2/models/aws_cur_config_response_data.rb +143 -0
- data/lib/datadog_api_client/v2/models/aws_cur_config_response_data_attributes.rb +225 -0
- data/lib/datadog_api_client/v2/models/aws_cur_config_response_data_attributes_account_filters.rb +137 -0
- data/lib/datadog_api_client/v2/models/aws_cur_config_response_data_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/aws_cur_configs_response.rb +19 -1
- data/lib/datadog_api_client/v2/models/azure_uc_config.rb +9 -1
- data/lib/datadog_api_client/v2/models/azure_uc_config_patch_data.rb +1 -12
- data/lib/datadog_api_client/v2/models/azure_uc_config_post_data.rb +1 -12
- data/lib/datadog_api_client/v2/models/azure_uc_config_post_request_attributes.rb +3 -13
- data/lib/datadog_api_client/v2/models/azure_uc_configs_response.rb +19 -1
- data/lib/datadog_api_client/v2/models/create_ruleset_request.rb +105 -0
- data/lib/datadog_api_client/v2/models/create_ruleset_request_data.rb +143 -0
- data/lib/datadog_api_client/v2/models/create_ruleset_request_data_attributes.rb +135 -0
- data/lib/datadog_api_client/v2/models/create_ruleset_request_data_attributes_rules_items.rb +195 -0
- data/lib/datadog_api_client/v2/models/create_ruleset_request_data_attributes_rules_items_mapping.rb +167 -0
- data/lib/datadog_api_client/v2/models/create_ruleset_request_data_attributes_rules_items_query.rb +172 -0
- data/lib/datadog_api_client/v2/models/create_ruleset_request_data_attributes_rules_items_query_addition.rb +144 -0
- data/lib/datadog_api_client/v2/models/create_ruleset_request_data_attributes_rules_items_reference_table.rb +189 -0
- data/lib/datadog_api_client/v2/models/create_ruleset_request_data_attributes_rules_items_reference_table_field_pairs_items.rb +144 -0
- data/lib/datadog_api_client/v2/models/create_ruleset_request_data_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/datastore_trigger.rb +105 -0
- data/lib/datadog_api_client/v2/models/datastore_trigger_wrapper.rb +135 -0
- data/lib/datadog_api_client/v2/models/full_api_key_attributes.rb +19 -1
- data/lib/datadog_api_client/v2/models/full_application_key_attributes.rb +12 -1
- data/lib/datadog_api_client/v2/models/gcp_uc_config_response.rb +105 -0
- data/lib/datadog_api_client/v2/models/gcp_uc_config_response_data.rb +143 -0
- data/lib/datadog_api_client/v2/models/gcp_uc_config_response_data_attributes.rb +235 -0
- data/lib/datadog_api_client/v2/models/gcp_uc_config_response_data_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/gcp_usage_cost_config.rb +4 -4
- data/lib/datadog_api_client/v2/models/gcp_usage_cost_config_attributes.rb +13 -13
- data/lib/datadog_api_client/v2/models/gcp_usage_cost_config_patch_data.rb +3 -3
- data/lib/datadog_api_client/v2/models/gcp_usage_cost_config_patch_request.rb +2 -2
- data/lib/datadog_api_client/v2/models/gcp_usage_cost_config_patch_request_attributes.rb +1 -1
- data/lib/datadog_api_client/v2/models/gcp_usage_cost_config_patch_request_type.rb +1 -1
- data/lib/datadog_api_client/v2/models/gcp_usage_cost_config_post_data.rb +4 -15
- data/lib/datadog_api_client/v2/models/gcp_usage_cost_config_post_request.rb +2 -2
- data/lib/datadog_api_client/v2/models/gcp_usage_cost_config_post_request_attributes.rb +7 -7
- data/lib/datadog_api_client/v2/models/gcp_usage_cost_config_post_request_type.rb +1 -1
- data/lib/datadog_api_client/v2/models/gcp_usage_cost_config_response.rb +2 -2
- data/lib/datadog_api_client/v2/models/gcp_usage_cost_config_type.rb +1 -1
- data/lib/datadog_api_client/v2/models/gcp_usage_cost_configs_response.rb +21 -3
- data/lib/datadog_api_client/v2/models/historical_job_options.rb +11 -1
- data/lib/datadog_api_client/v2/models/incident_impact_attributes.rb +203 -0
- data/lib/datadog_api_client/v2/models/incident_impact_create_attributes.rb +173 -0
- data/lib/datadog_api_client/v2/models/incident_impact_create_data.rb +144 -0
- data/lib/datadog_api_client/v2/models/incident_impact_create_request.rb +123 -0
- data/lib/datadog_api_client/v2/models/incident_impact_related_object.rb +28 -0
- data/lib/datadog_api_client/v2/models/incident_impact_relationships.rb +125 -0
- data/lib/datadog_api_client/v2/models/incident_impact_response.rb +135 -0
- data/lib/datadog_api_client/v2/models/incident_impact_response_data.rb +164 -0
- data/lib/datadog_api_client/v2/models/incident_impact_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/incident_impacts_response.rb +137 -0
- data/lib/datadog_api_client/v2/models/incident_response_attributes.rb +33 -1
- data/lib/datadog_api_client/v2/models/incident_response_relationships.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_config_destination_item.rb +2 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_google_pub_sub_destination.rb +251 -0
- data/lib/datadog_api_client/v2/models/observability_pipeline_google_pub_sub_destination_encoding.rb +27 -0
- data/lib/datadog_api_client/v2/models/observability_pipeline_google_pub_sub_destination_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/partial_api_key_attributes.rb +19 -1
- data/lib/datadog_api_client/v2/models/partial_application_key_attributes.rb +12 -1
- data/lib/datadog_api_client/v2/models/relationship_to_incident.rb +123 -0
- data/lib/datadog_api_client/v2/models/relationship_to_incident_data.rb +144 -0
- data/lib/datadog_api_client/v2/models/reorder_rule_resource_array.rb +125 -0
- data/lib/datadog_api_client/v2/models/reorder_rule_resource_data.rb +133 -0
- data/lib/datadog_api_client/v2/models/reorder_rule_resource_data_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/reorder_ruleset_resource_array.rb +125 -0
- data/lib/datadog_api_client/v2/models/reorder_ruleset_resource_data.rb +133 -0
- data/lib/datadog_api_client/v2/models/reorder_ruleset_resource_data_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/rules_validate_query_request.rb +105 -0
- data/lib/datadog_api_client/v2/models/rules_validate_query_request_data.rb +143 -0
- data/lib/datadog_api_client/v2/models/rules_validate_query_request_data_attributes.rb +123 -0
- data/lib/datadog_api_client/v2/models/rules_validate_query_request_data_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/rules_validate_query_response.rb +105 -0
- data/lib/datadog_api_client/v2/models/rules_validate_query_response_data.rb +143 -0
- data/lib/datadog_api_client/v2/models/rules_validate_query_response_data_attributes.rb +123 -0
- data/lib/datadog_api_client/v2/models/rules_validate_query_response_data_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/ruleset_resp.rb +105 -0
- data/lib/datadog_api_client/v2/models/ruleset_resp_array.rb +125 -0
- data/lib/datadog_api_client/v2/models/ruleset_resp_data.rb +143 -0
- data/lib/datadog_api_client/v2/models/ruleset_resp_data_attributes.rb +276 -0
- data/lib/datadog_api_client/v2/models/ruleset_resp_data_attributes_created.rb +133 -0
- data/lib/datadog_api_client/v2/models/ruleset_resp_data_attributes_modified.rb +133 -0
- data/lib/datadog_api_client/v2/models/ruleset_resp_data_attributes_rules_items.rb +195 -0
- data/lib/datadog_api_client/v2/models/ruleset_resp_data_attributes_rules_items_mapping.rb +167 -0
- data/lib/datadog_api_client/v2/models/ruleset_resp_data_attributes_rules_items_query.rb +172 -0
- data/lib/datadog_api_client/v2/models/ruleset_resp_data_attributes_rules_items_query_addition.rb +144 -0
- data/lib/datadog_api_client/v2/models/ruleset_resp_data_attributes_rules_items_reference_table.rb +189 -0
- data/lib/datadog_api_client/v2/models/ruleset_resp_data_attributes_rules_items_reference_table_field_pairs_items.rb +144 -0
- data/lib/datadog_api_client/v2/models/ruleset_resp_data_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/rum_application_attributes.rb +22 -1
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_detection_method.rb +1 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_options.rb +11 -1
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_sequence_detection_options.rb +119 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_sequence_detection_step.rb +126 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_sequence_detection_step_transition.rb +126 -0
- data/lib/datadog_api_client/v2/models/trigger.rb +1 -0
- data/lib/datadog_api_client/v2/models/uc_config_pair.rb +105 -0
- data/lib/datadog_api_client/v2/models/uc_config_pair_data.rb +143 -0
- data/lib/datadog_api_client/v2/models/uc_config_pair_data_attributes.rb +107 -0
- data/lib/datadog_api_client/v2/models/uc_config_pair_data_attributes_configs_items.rb +255 -0
- data/lib/datadog_api_client/v2/models/uc_config_pair_data_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/update_ruleset_request.rb +105 -0
- data/lib/datadog_api_client/v2/models/update_ruleset_request_data.rb +143 -0
- data/lib/datadog_api_client/v2/models/update_ruleset_request_data_attributes.rb +156 -0
- data/lib/datadog_api_client/v2/models/update_ruleset_request_data_attributes_rules_items.rb +195 -0
- data/lib/datadog_api_client/v2/models/update_ruleset_request_data_attributes_rules_items_mapping.rb +167 -0
- data/lib/datadog_api_client/v2/models/update_ruleset_request_data_attributes_rules_items_query.rb +172 -0
- data/lib/datadog_api_client/v2/models/update_ruleset_request_data_attributes_rules_items_query_addition.rb +144 -0
- data/lib/datadog_api_client/v2/models/update_ruleset_request_data_attributes_rules_items_reference_table.rb +189 -0
- data/lib/datadog_api_client/v2/models/update_ruleset_request_data_attributes_rules_items_reference_table_field_pairs_items.rb +144 -0
- data/lib/datadog_api_client/v2/models/update_ruleset_request_data_type.rb +26 -0
- data/lib/datadog_api_client/version.rb +1 -1
- metadata +137 -3
- data/examples/v1/synthetics/SearchTests_195957771.rb +0 -14
@@ -467,6 +467,23 @@ components:
|
|
467
467
|
required: true
|
468
468
|
schema:
|
469
469
|
type: string
|
470
|
+
IncidentImpactIDPathParameter:
|
471
|
+
description: The UUID of the incident impact.
|
472
|
+
in: path
|
473
|
+
name: impact_id
|
474
|
+
required: true
|
475
|
+
schema:
|
476
|
+
type: string
|
477
|
+
IncidentImpactIncludeQueryParameter:
|
478
|
+
description: Specifies which related resources should be included in the response.
|
479
|
+
explode: false
|
480
|
+
in: query
|
481
|
+
name: include
|
482
|
+
required: false
|
483
|
+
schema:
|
484
|
+
items:
|
485
|
+
$ref: '#/components/schemas/IncidentImpactRelatedObject'
|
486
|
+
type: array
|
470
487
|
IncidentIncludeQueryParameter:
|
471
488
|
description: Specifies which types of related objects should be included in
|
472
489
|
the response.
|
@@ -2136,6 +2153,7 @@ components:
|
|
2136
2153
|
description: Whether or not to automatically include new member accounts
|
2137
2154
|
by default in your billing dataset.
|
2138
2155
|
example: true
|
2156
|
+
nullable: true
|
2139
2157
|
type: boolean
|
2140
2158
|
included_accounts:
|
2141
2159
|
description: The AWS account IDs to be included in your billing dataset.
|
@@ -3931,6 +3949,634 @@ components:
|
|
3931
3949
|
- CREATED_AT_DESC
|
3932
3950
|
- UPDATED_AT_DESC
|
3933
3951
|
- USER_NAME_DESC
|
3952
|
+
ArbitraryCostUpsertRequest:
|
3953
|
+
description: The definition of `ArbitraryCostUpsertRequest` object.
|
3954
|
+
example:
|
3955
|
+
data:
|
3956
|
+
attributes:
|
3957
|
+
costs_to_allocate:
|
3958
|
+
- condition: is
|
3959
|
+
tag: account_id
|
3960
|
+
value: '123456789'
|
3961
|
+
values: null
|
3962
|
+
- condition: in
|
3963
|
+
tag: environment
|
3964
|
+
value: ''
|
3965
|
+
values:
|
3966
|
+
- production
|
3967
|
+
- staging
|
3968
|
+
enabled: true
|
3969
|
+
order_id: 1
|
3970
|
+
provider:
|
3971
|
+
- aws
|
3972
|
+
- gcp
|
3973
|
+
rule_name: example-arbitrary-cost-rule
|
3974
|
+
strategy:
|
3975
|
+
allocated_by_tag_keys:
|
3976
|
+
- team
|
3977
|
+
- environment
|
3978
|
+
based_on_costs:
|
3979
|
+
- condition: is
|
3980
|
+
tag: service
|
3981
|
+
value: web-api
|
3982
|
+
values: null
|
3983
|
+
- condition: not in
|
3984
|
+
tag: team
|
3985
|
+
value: ''
|
3986
|
+
values:
|
3987
|
+
- legacy
|
3988
|
+
- deprecated
|
3989
|
+
granularity: daily
|
3990
|
+
method: proportional
|
3991
|
+
type: shared
|
3992
|
+
type: upsert_arbitrary_rule
|
3993
|
+
properties:
|
3994
|
+
data:
|
3995
|
+
$ref: '#/components/schemas/ArbitraryCostUpsertRequestData'
|
3996
|
+
type: object
|
3997
|
+
ArbitraryCostUpsertRequestData:
|
3998
|
+
description: The definition of `ArbitraryCostUpsertRequestData` object.
|
3999
|
+
properties:
|
4000
|
+
attributes:
|
4001
|
+
$ref: '#/components/schemas/ArbitraryCostUpsertRequestDataAttributes'
|
4002
|
+
id:
|
4003
|
+
description: The `ArbitraryCostUpsertRequestData` `id`.
|
4004
|
+
type: string
|
4005
|
+
type:
|
4006
|
+
$ref: '#/components/schemas/ArbitraryCostUpsertRequestDataType'
|
4007
|
+
required:
|
4008
|
+
- type
|
4009
|
+
type: object
|
4010
|
+
ArbitraryCostUpsertRequestDataAttributes:
|
4011
|
+
description: The definition of `ArbitraryCostUpsertRequestDataAttributes` object.
|
4012
|
+
properties:
|
4013
|
+
costs_to_allocate:
|
4014
|
+
description: The `attributes` `costs_to_allocate`.
|
4015
|
+
items:
|
4016
|
+
$ref: '#/components/schemas/ArbitraryCostUpsertRequestDataAttributesCostsToAllocateItems'
|
4017
|
+
type: array
|
4018
|
+
enabled:
|
4019
|
+
description: The `attributes` `enabled`.
|
4020
|
+
type: boolean
|
4021
|
+
order_id:
|
4022
|
+
description: The `attributes` `order_id`.
|
4023
|
+
format: int64
|
4024
|
+
type: integer
|
4025
|
+
provider:
|
4026
|
+
description: The `attributes` `provider`.
|
4027
|
+
example:
|
4028
|
+
- ''
|
4029
|
+
items:
|
4030
|
+
type: string
|
4031
|
+
type: array
|
4032
|
+
rejected:
|
4033
|
+
description: The `attributes` `rejected`.
|
4034
|
+
type: boolean
|
4035
|
+
rule_name:
|
4036
|
+
description: The `attributes` `rule_name`.
|
4037
|
+
example: ''
|
4038
|
+
type: string
|
4039
|
+
strategy:
|
4040
|
+
$ref: '#/components/schemas/ArbitraryCostUpsertRequestDataAttributesStrategy'
|
4041
|
+
type:
|
4042
|
+
description: The `attributes` `type`.
|
4043
|
+
example: ''
|
4044
|
+
type: string
|
4045
|
+
required:
|
4046
|
+
- costs_to_allocate
|
4047
|
+
- provider
|
4048
|
+
- rule_name
|
4049
|
+
- strategy
|
4050
|
+
- type
|
4051
|
+
type: object
|
4052
|
+
ArbitraryCostUpsertRequestDataAttributesCostsToAllocateItems:
|
4053
|
+
description: The definition of `ArbitraryCostUpsertRequestDataAttributesCostsToAllocateItems`
|
4054
|
+
object.
|
4055
|
+
properties:
|
4056
|
+
condition:
|
4057
|
+
description: The `items` `condition`.
|
4058
|
+
example: ''
|
4059
|
+
type: string
|
4060
|
+
tag:
|
4061
|
+
description: The `items` `tag`.
|
4062
|
+
example: ''
|
4063
|
+
type: string
|
4064
|
+
value:
|
4065
|
+
description: The `items` `value`.
|
4066
|
+
type: string
|
4067
|
+
values:
|
4068
|
+
description: The `items` `values`.
|
4069
|
+
items:
|
4070
|
+
type: string
|
4071
|
+
nullable: true
|
4072
|
+
type: array
|
4073
|
+
required:
|
4074
|
+
- condition
|
4075
|
+
- tag
|
4076
|
+
type: object
|
4077
|
+
ArbitraryCostUpsertRequestDataAttributesStrategy:
|
4078
|
+
description: The definition of `ArbitraryCostUpsertRequestDataAttributesStrategy`
|
4079
|
+
object.
|
4080
|
+
properties:
|
4081
|
+
allocated_by:
|
4082
|
+
description: The `strategy` `allocated_by`.
|
4083
|
+
items:
|
4084
|
+
$ref: '#/components/schemas/ArbitraryCostUpsertRequestDataAttributesStrategyAllocatedByItems'
|
4085
|
+
type: array
|
4086
|
+
allocated_by_filters:
|
4087
|
+
description: The `strategy` `allocated_by_filters`.
|
4088
|
+
items:
|
4089
|
+
$ref: '#/components/schemas/ArbitraryCostUpsertRequestDataAttributesStrategyAllocatedByFiltersItems'
|
4090
|
+
type: array
|
4091
|
+
allocated_by_tag_keys:
|
4092
|
+
description: The `strategy` `allocated_by_tag_keys`.
|
4093
|
+
items:
|
4094
|
+
type: string
|
4095
|
+
type: array
|
4096
|
+
based_on_costs:
|
4097
|
+
description: The `strategy` `based_on_costs`.
|
4098
|
+
items:
|
4099
|
+
$ref: '#/components/schemas/ArbitraryCostUpsertRequestDataAttributesStrategyBasedOnCostsItems'
|
4100
|
+
type: array
|
4101
|
+
based_on_timeseries:
|
4102
|
+
additionalProperties: {}
|
4103
|
+
description: The `strategy` `based_on_timeseries`.
|
4104
|
+
type: object
|
4105
|
+
evaluate_grouped_by_filters:
|
4106
|
+
description: The `strategy` `evaluate_grouped_by_filters`.
|
4107
|
+
items:
|
4108
|
+
$ref: '#/components/schemas/ArbitraryCostUpsertRequestDataAttributesStrategyEvaluateGroupedByFiltersItems'
|
4109
|
+
type: array
|
4110
|
+
evaluate_grouped_by_tag_keys:
|
4111
|
+
description: The `strategy` `evaluate_grouped_by_tag_keys`.
|
4112
|
+
items:
|
4113
|
+
type: string
|
4114
|
+
type: array
|
4115
|
+
granularity:
|
4116
|
+
description: The `strategy` `granularity`.
|
4117
|
+
type: string
|
4118
|
+
method:
|
4119
|
+
description: The `strategy` `method`.
|
4120
|
+
example: ''
|
4121
|
+
type: string
|
4122
|
+
required:
|
4123
|
+
- method
|
4124
|
+
type: object
|
4125
|
+
ArbitraryCostUpsertRequestDataAttributesStrategyAllocatedByFiltersItems:
|
4126
|
+
description: The definition of `ArbitraryCostUpsertRequestDataAttributesStrategyAllocatedByFiltersItems`
|
4127
|
+
object.
|
4128
|
+
properties:
|
4129
|
+
condition:
|
4130
|
+
description: The `items` `condition`.
|
4131
|
+
example: ''
|
4132
|
+
type: string
|
4133
|
+
tag:
|
4134
|
+
description: The `items` `tag`.
|
4135
|
+
example: ''
|
4136
|
+
type: string
|
4137
|
+
value:
|
4138
|
+
description: The `items` `value`.
|
4139
|
+
type: string
|
4140
|
+
values:
|
4141
|
+
description: The `items` `values`.
|
4142
|
+
items:
|
4143
|
+
type: string
|
4144
|
+
nullable: true
|
4145
|
+
type: array
|
4146
|
+
required:
|
4147
|
+
- condition
|
4148
|
+
- tag
|
4149
|
+
type: object
|
4150
|
+
ArbitraryCostUpsertRequestDataAttributesStrategyAllocatedByItems:
|
4151
|
+
description: The definition of `ArbitraryCostUpsertRequestDataAttributesStrategyAllocatedByItems`
|
4152
|
+
object.
|
4153
|
+
properties:
|
4154
|
+
allocated_tags:
|
4155
|
+
description: The `items` `allocated_tags`.
|
4156
|
+
items:
|
4157
|
+
$ref: '#/components/schemas/ArbitraryCostUpsertRequestDataAttributesStrategyAllocatedByItemsAllocatedTagsItems'
|
4158
|
+
type: array
|
4159
|
+
percentage:
|
4160
|
+
description: The `items` `percentage`. The numeric value format should be
|
4161
|
+
a 32bit float value.
|
4162
|
+
example: 0.0
|
4163
|
+
format: double
|
4164
|
+
type: number
|
4165
|
+
required:
|
4166
|
+
- allocated_tags
|
4167
|
+
- percentage
|
4168
|
+
type: object
|
4169
|
+
ArbitraryCostUpsertRequestDataAttributesStrategyAllocatedByItemsAllocatedTagsItems:
|
4170
|
+
description: The definition of `ArbitraryCostUpsertRequestDataAttributesStrategyAllocatedByItemsAllocatedTagsItems`
|
4171
|
+
object.
|
4172
|
+
properties:
|
4173
|
+
key:
|
4174
|
+
description: The `items` `key`.
|
4175
|
+
example: ''
|
4176
|
+
type: string
|
4177
|
+
value:
|
4178
|
+
description: The `items` `value`.
|
4179
|
+
example: ''
|
4180
|
+
type: string
|
4181
|
+
required:
|
4182
|
+
- key
|
4183
|
+
- value
|
4184
|
+
type: object
|
4185
|
+
ArbitraryCostUpsertRequestDataAttributesStrategyBasedOnCostsItems:
|
4186
|
+
description: The definition of `ArbitraryCostUpsertRequestDataAttributesStrategyBasedOnCostsItems`
|
4187
|
+
object.
|
4188
|
+
properties:
|
4189
|
+
condition:
|
4190
|
+
description: The `items` `condition`.
|
4191
|
+
example: ''
|
4192
|
+
type: string
|
4193
|
+
tag:
|
4194
|
+
description: The `items` `tag`.
|
4195
|
+
example: ''
|
4196
|
+
type: string
|
4197
|
+
value:
|
4198
|
+
description: The `items` `value`.
|
4199
|
+
type: string
|
4200
|
+
values:
|
4201
|
+
description: The `items` `values`.
|
4202
|
+
items:
|
4203
|
+
type: string
|
4204
|
+
nullable: true
|
4205
|
+
type: array
|
4206
|
+
required:
|
4207
|
+
- condition
|
4208
|
+
- tag
|
4209
|
+
type: object
|
4210
|
+
ArbitraryCostUpsertRequestDataAttributesStrategyEvaluateGroupedByFiltersItems:
|
4211
|
+
description: The definition of `ArbitraryCostUpsertRequestDataAttributesStrategyEvaluateGroupedByFiltersItems`
|
4212
|
+
object.
|
4213
|
+
properties:
|
4214
|
+
condition:
|
4215
|
+
description: The `items` `condition`.
|
4216
|
+
example: ''
|
4217
|
+
type: string
|
4218
|
+
tag:
|
4219
|
+
description: The `items` `tag`.
|
4220
|
+
example: ''
|
4221
|
+
type: string
|
4222
|
+
value:
|
4223
|
+
description: The `items` `value`.
|
4224
|
+
type: string
|
4225
|
+
values:
|
4226
|
+
description: The `items` `values`.
|
4227
|
+
items:
|
4228
|
+
type: string
|
4229
|
+
nullable: true
|
4230
|
+
type: array
|
4231
|
+
required:
|
4232
|
+
- condition
|
4233
|
+
- tag
|
4234
|
+
type: object
|
4235
|
+
ArbitraryCostUpsertRequestDataType:
|
4236
|
+
default: upsert_arbitrary_rule
|
4237
|
+
description: Upsert arbitrary rule resource type.
|
4238
|
+
enum:
|
4239
|
+
- upsert_arbitrary_rule
|
4240
|
+
example: upsert_arbitrary_rule
|
4241
|
+
type: string
|
4242
|
+
x-enum-varnames:
|
4243
|
+
- UPSERT_ARBITRARY_RULE
|
4244
|
+
ArbitraryRuleResponse:
|
4245
|
+
description: The definition of `ArbitraryRuleResponse` object.
|
4246
|
+
example:
|
4247
|
+
data:
|
4248
|
+
attributes:
|
4249
|
+
costs_to_allocate:
|
4250
|
+
- condition: is
|
4251
|
+
tag: account_id
|
4252
|
+
value: '123456789'
|
4253
|
+
values: null
|
4254
|
+
- condition: in
|
4255
|
+
tag: environment
|
4256
|
+
value: ''
|
4257
|
+
values:
|
4258
|
+
- production
|
4259
|
+
- staging
|
4260
|
+
created: '2023-01-01T12:00:00Z'
|
4261
|
+
enabled: true
|
4262
|
+
last_modified_user_uuid: user-123-uuid
|
4263
|
+
order_id: 1
|
4264
|
+
provider:
|
4265
|
+
- aws
|
4266
|
+
- gcp
|
4267
|
+
rule_name: Example Arbitrary Cost Rule
|
4268
|
+
strategy:
|
4269
|
+
allocated_by_tag_keys:
|
4270
|
+
- team
|
4271
|
+
- environment
|
4272
|
+
based_on_costs:
|
4273
|
+
- condition: is
|
4274
|
+
tag: service
|
4275
|
+
value: web-api
|
4276
|
+
values: null
|
4277
|
+
- condition: not in
|
4278
|
+
tag: team
|
4279
|
+
value: ''
|
4280
|
+
values:
|
4281
|
+
- legacy
|
4282
|
+
- deprecated
|
4283
|
+
granularity: daily
|
4284
|
+
method: proportional
|
4285
|
+
type: shared
|
4286
|
+
updated: '2023-01-01T12:00:00Z'
|
4287
|
+
version: 1
|
4288
|
+
id: '123'
|
4289
|
+
type: arbitrary_rule
|
4290
|
+
properties:
|
4291
|
+
data:
|
4292
|
+
$ref: '#/components/schemas/ArbitraryRuleResponseData'
|
4293
|
+
type: object
|
4294
|
+
ArbitraryRuleResponseArray:
|
4295
|
+
description: The definition of `ArbitraryRuleResponseArray` object.
|
4296
|
+
properties:
|
4297
|
+
data:
|
4298
|
+
description: The `ArbitraryRuleResponseArray` `data`.
|
4299
|
+
items:
|
4300
|
+
$ref: '#/components/schemas/ArbitraryRuleResponseData'
|
4301
|
+
type: array
|
4302
|
+
required:
|
4303
|
+
- data
|
4304
|
+
type: object
|
4305
|
+
ArbitraryRuleResponseData:
|
4306
|
+
description: The definition of `ArbitraryRuleResponseData` object.
|
4307
|
+
properties:
|
4308
|
+
attributes:
|
4309
|
+
$ref: '#/components/schemas/ArbitraryRuleResponseDataAttributes'
|
4310
|
+
id:
|
4311
|
+
description: The `ArbitraryRuleResponseData` `id`.
|
4312
|
+
type: string
|
4313
|
+
type:
|
4314
|
+
$ref: '#/components/schemas/ArbitraryRuleResponseDataType'
|
4315
|
+
required:
|
4316
|
+
- type
|
4317
|
+
type: object
|
4318
|
+
ArbitraryRuleResponseDataAttributes:
|
4319
|
+
description: The definition of `ArbitraryRuleResponseDataAttributes` object.
|
4320
|
+
properties:
|
4321
|
+
costs_to_allocate:
|
4322
|
+
description: The `attributes` `costs_to_allocate`.
|
4323
|
+
items:
|
4324
|
+
$ref: '#/components/schemas/ArbitraryRuleResponseDataAttributesCostsToAllocateItems'
|
4325
|
+
type: array
|
4326
|
+
created:
|
4327
|
+
description: The `attributes` `created`.
|
4328
|
+
example: ''
|
4329
|
+
format: date-time
|
4330
|
+
type: string
|
4331
|
+
enabled:
|
4332
|
+
description: The `attributes` `enabled`.
|
4333
|
+
example: false
|
4334
|
+
type: boolean
|
4335
|
+
last_modified_user_uuid:
|
4336
|
+
description: The `attributes` `last_modified_user_uuid`.
|
4337
|
+
example: ''
|
4338
|
+
type: string
|
4339
|
+
order_id:
|
4340
|
+
description: The `attributes` `order_id`.
|
4341
|
+
example: 0
|
4342
|
+
format: int64
|
4343
|
+
type: integer
|
4344
|
+
provider:
|
4345
|
+
description: The `attributes` `provider`.
|
4346
|
+
example:
|
4347
|
+
- ''
|
4348
|
+
items:
|
4349
|
+
type: string
|
4350
|
+
type: array
|
4351
|
+
rejected:
|
4352
|
+
description: The `attributes` `rejected`.
|
4353
|
+
type: boolean
|
4354
|
+
rule_name:
|
4355
|
+
description: The `attributes` `rule_name`.
|
4356
|
+
example: ''
|
4357
|
+
type: string
|
4358
|
+
strategy:
|
4359
|
+
$ref: '#/components/schemas/ArbitraryRuleResponseDataAttributesStrategy'
|
4360
|
+
type:
|
4361
|
+
description: The `attributes` `type`.
|
4362
|
+
example: ''
|
4363
|
+
type: string
|
4364
|
+
updated:
|
4365
|
+
description: The `attributes` `updated`.
|
4366
|
+
example: ''
|
4367
|
+
format: date-time
|
4368
|
+
type: string
|
4369
|
+
version:
|
4370
|
+
description: The `attributes` `version`.
|
4371
|
+
example: 0
|
4372
|
+
format: int32
|
4373
|
+
maximum: 2147483647
|
4374
|
+
type: integer
|
4375
|
+
required:
|
4376
|
+
- costs_to_allocate
|
4377
|
+
- created
|
4378
|
+
- enabled
|
4379
|
+
- last_modified_user_uuid
|
4380
|
+
- order_id
|
4381
|
+
- provider
|
4382
|
+
- rule_name
|
4383
|
+
- strategy
|
4384
|
+
- type
|
4385
|
+
- updated
|
4386
|
+
- version
|
4387
|
+
type: object
|
4388
|
+
ArbitraryRuleResponseDataAttributesCostsToAllocateItems:
|
4389
|
+
description: The definition of `ArbitraryRuleResponseDataAttributesCostsToAllocateItems`
|
4390
|
+
object.
|
4391
|
+
properties:
|
4392
|
+
condition:
|
4393
|
+
description: The `items` `condition`.
|
4394
|
+
example: ''
|
4395
|
+
type: string
|
4396
|
+
tag:
|
4397
|
+
description: The `items` `tag`.
|
4398
|
+
example: ''
|
4399
|
+
type: string
|
4400
|
+
value:
|
4401
|
+
description: The `items` `value`.
|
4402
|
+
type: string
|
4403
|
+
values:
|
4404
|
+
description: The `items` `values`.
|
4405
|
+
items:
|
4406
|
+
type: string
|
4407
|
+
nullable: true
|
4408
|
+
type: array
|
4409
|
+
required:
|
4410
|
+
- condition
|
4411
|
+
- tag
|
4412
|
+
type: object
|
4413
|
+
ArbitraryRuleResponseDataAttributesStrategy:
|
4414
|
+
description: The definition of `ArbitraryRuleResponseDataAttributesStrategy`
|
4415
|
+
object.
|
4416
|
+
properties:
|
4417
|
+
allocated_by:
|
4418
|
+
description: The `strategy` `allocated_by`.
|
4419
|
+
items:
|
4420
|
+
$ref: '#/components/schemas/ArbitraryRuleResponseDataAttributesStrategyAllocatedByItems'
|
4421
|
+
type: array
|
4422
|
+
allocated_by_filters:
|
4423
|
+
description: The `strategy` `allocated_by_filters`.
|
4424
|
+
items:
|
4425
|
+
$ref: '#/components/schemas/ArbitraryRuleResponseDataAttributesStrategyAllocatedByFiltersItems'
|
4426
|
+
type: array
|
4427
|
+
allocated_by_tag_keys:
|
4428
|
+
description: The `strategy` `allocated_by_tag_keys`.
|
4429
|
+
items:
|
4430
|
+
type: string
|
4431
|
+
type: array
|
4432
|
+
based_on_costs:
|
4433
|
+
description: The `strategy` `based_on_costs`.
|
4434
|
+
items:
|
4435
|
+
$ref: '#/components/schemas/ArbitraryRuleResponseDataAttributesStrategyBasedOnCostsItems'
|
4436
|
+
type: array
|
4437
|
+
based_on_timeseries:
|
4438
|
+
additionalProperties: {}
|
4439
|
+
description: The rule `strategy` `based_on_timeseries`.
|
4440
|
+
type: object
|
4441
|
+
evaluate_grouped_by_filters:
|
4442
|
+
description: The `strategy` `evaluate_grouped_by_filters`.
|
4443
|
+
items:
|
4444
|
+
$ref: '#/components/schemas/ArbitraryRuleResponseDataAttributesStrategyEvaluateGroupedByFiltersItems'
|
4445
|
+
type: array
|
4446
|
+
evaluate_grouped_by_tag_keys:
|
4447
|
+
description: The `strategy` `evaluate_grouped_by_tag_keys`.
|
4448
|
+
items:
|
4449
|
+
type: string
|
4450
|
+
type: array
|
4451
|
+
granularity:
|
4452
|
+
description: The `strategy` `granularity`.
|
4453
|
+
type: string
|
4454
|
+
method:
|
4455
|
+
description: The `strategy` `method`.
|
4456
|
+
example: ''
|
4457
|
+
type: string
|
4458
|
+
required:
|
4459
|
+
- method
|
4460
|
+
type: object
|
4461
|
+
ArbitraryRuleResponseDataAttributesStrategyAllocatedByFiltersItems:
|
4462
|
+
description: The definition of `ArbitraryRuleResponseDataAttributesStrategyAllocatedByFiltersItems`
|
4463
|
+
object.
|
4464
|
+
properties:
|
4465
|
+
condition:
|
4466
|
+
description: The `items` `condition`.
|
4467
|
+
example: ''
|
4468
|
+
type: string
|
4469
|
+
tag:
|
4470
|
+
description: The `items` `tag`.
|
4471
|
+
example: ''
|
4472
|
+
type: string
|
4473
|
+
value:
|
4474
|
+
description: The `items` `value`.
|
4475
|
+
type: string
|
4476
|
+
values:
|
4477
|
+
description: The `items` `values`.
|
4478
|
+
items:
|
4479
|
+
type: string
|
4480
|
+
nullable: true
|
4481
|
+
type: array
|
4482
|
+
required:
|
4483
|
+
- condition
|
4484
|
+
- tag
|
4485
|
+
type: object
|
4486
|
+
ArbitraryRuleResponseDataAttributesStrategyAllocatedByItems:
|
4487
|
+
description: The definition of `ArbitraryRuleResponseDataAttributesStrategyAllocatedByItems`
|
4488
|
+
object.
|
4489
|
+
properties:
|
4490
|
+
allocated_tags:
|
4491
|
+
description: The `items` `allocated_tags`.
|
4492
|
+
items:
|
4493
|
+
$ref: '#/components/schemas/ArbitraryRuleResponseDataAttributesStrategyAllocatedByItemsAllocatedTagsItems'
|
4494
|
+
type: array
|
4495
|
+
percentage:
|
4496
|
+
description: The `items` `percentage`. The numeric value format should be
|
4497
|
+
a 32bit float value.
|
4498
|
+
example: 0.0
|
4499
|
+
format: double
|
4500
|
+
type: number
|
4501
|
+
required:
|
4502
|
+
- allocated_tags
|
4503
|
+
- percentage
|
4504
|
+
type: object
|
4505
|
+
ArbitraryRuleResponseDataAttributesStrategyAllocatedByItemsAllocatedTagsItems:
|
4506
|
+
description: The definition of `ArbitraryRuleResponseDataAttributesStrategyAllocatedByItemsAllocatedTagsItems`
|
4507
|
+
object.
|
4508
|
+
properties:
|
4509
|
+
key:
|
4510
|
+
description: The `items` `key`.
|
4511
|
+
example: ''
|
4512
|
+
type: string
|
4513
|
+
value:
|
4514
|
+
description: The `items` `value`.
|
4515
|
+
example: ''
|
4516
|
+
type: string
|
4517
|
+
required:
|
4518
|
+
- key
|
4519
|
+
- value
|
4520
|
+
type: object
|
4521
|
+
ArbitraryRuleResponseDataAttributesStrategyBasedOnCostsItems:
|
4522
|
+
description: The definition of `ArbitraryRuleResponseDataAttributesStrategyBasedOnCostsItems`
|
4523
|
+
object.
|
4524
|
+
properties:
|
4525
|
+
condition:
|
4526
|
+
description: The `items` `condition`.
|
4527
|
+
example: ''
|
4528
|
+
type: string
|
4529
|
+
tag:
|
4530
|
+
description: The `items` `tag`.
|
4531
|
+
example: ''
|
4532
|
+
type: string
|
4533
|
+
value:
|
4534
|
+
description: The `items` `value`.
|
4535
|
+
type: string
|
4536
|
+
values:
|
4537
|
+
description: The `items` `values`.
|
4538
|
+
items:
|
4539
|
+
type: string
|
4540
|
+
nullable: true
|
4541
|
+
type: array
|
4542
|
+
required:
|
4543
|
+
- condition
|
4544
|
+
- tag
|
4545
|
+
type: object
|
4546
|
+
ArbitraryRuleResponseDataAttributesStrategyEvaluateGroupedByFiltersItems:
|
4547
|
+
description: The definition of `ArbitraryRuleResponseDataAttributesStrategyEvaluateGroupedByFiltersItems`
|
4548
|
+
object.
|
4549
|
+
properties:
|
4550
|
+
condition:
|
4551
|
+
description: The `items` `condition`.
|
4552
|
+
example: ''
|
4553
|
+
type: string
|
4554
|
+
tag:
|
4555
|
+
description: The `items` `tag`.
|
4556
|
+
example: ''
|
4557
|
+
type: string
|
4558
|
+
value:
|
4559
|
+
description: The `items` `value`.
|
4560
|
+
type: string
|
4561
|
+
values:
|
4562
|
+
description: The `items` `values`.
|
4563
|
+
items:
|
4564
|
+
type: string
|
4565
|
+
nullable: true
|
4566
|
+
type: array
|
4567
|
+
required:
|
4568
|
+
- condition
|
4569
|
+
- tag
|
4570
|
+
type: object
|
4571
|
+
ArbitraryRuleResponseDataType:
|
4572
|
+
default: arbitrary_rule
|
4573
|
+
description: Arbitrary rule resource type.
|
4574
|
+
enum:
|
4575
|
+
- arbitrary_rule
|
4576
|
+
example: arbitrary_rule
|
4577
|
+
type: string
|
4578
|
+
x-enum-varnames:
|
4579
|
+
- ARBITRARY_RULE
|
3934
4580
|
AsanaAccessToken:
|
3935
4581
|
description: The definition of the `AsanaAccessToken` object.
|
3936
4582
|
properties:
|
@@ -4684,6 +5330,7 @@ components:
|
|
4684
5330
|
description: The error messages for the AWS CUR config.
|
4685
5331
|
items:
|
4686
5332
|
type: string
|
5333
|
+
nullable: true
|
4687
5334
|
type: array
|
4688
5335
|
months:
|
4689
5336
|
deprecated: true
|
@@ -4765,7 +5412,6 @@ components:
|
|
4765
5412
|
type:
|
4766
5413
|
$ref: '#/components/schemas/AwsCURConfigPostRequestType'
|
4767
5414
|
required:
|
4768
|
-
- attributes
|
4769
5415
|
- type
|
4770
5416
|
type: object
|
4771
5417
|
AwsCURConfigPostRequest:
|
@@ -4821,12 +5467,6 @@ components:
|
|
4821
5467
|
type: string
|
4822
5468
|
x-enum-varnames:
|
4823
5469
|
- AWS_CUR_CONFIG_POST_REQUEST
|
4824
|
-
AwsCURConfigResponse:
|
4825
|
-
description: Response of AWS CUR config.
|
4826
|
-
properties:
|
4827
|
-
data:
|
4828
|
-
$ref: '#/components/schemas/AwsCURConfig'
|
4829
|
-
type: object
|
4830
5470
|
AwsCURConfigType:
|
4831
5471
|
default: aws_cur_config
|
4832
5472
|
description: Type of AWS CUR config.
|
@@ -4844,7 +5484,120 @@ components:
|
|
4844
5484
|
items:
|
4845
5485
|
$ref: '#/components/schemas/AwsCURConfig'
|
4846
5486
|
type: array
|
5487
|
+
required:
|
5488
|
+
- data
|
5489
|
+
type: object
|
5490
|
+
AwsCurConfigResponse:
|
5491
|
+
description: The definition of `AwsCurConfigResponse` object.
|
5492
|
+
example:
|
5493
|
+
data:
|
5494
|
+
attributes:
|
5495
|
+
account_filters:
|
5496
|
+
excluded_accounts:
|
5497
|
+
- '123456789124'
|
5498
|
+
- '123456789125'
|
5499
|
+
include_new_accounts: true
|
5500
|
+
account_id: '123456789123'
|
5501
|
+
bucket_name: dd-cost-bucket
|
5502
|
+
bucket_region: us-east-1
|
5503
|
+
created_at: 2023-01-01 12:00:00
|
5504
|
+
error_messages: []
|
5505
|
+
months: 36
|
5506
|
+
report_name: dd-report-name
|
5507
|
+
report_prefix: dd-report-prefix
|
5508
|
+
status: active
|
5509
|
+
status_updated_at: 2023-01-01 12:00:00
|
5510
|
+
updated_at: 2023-01-01 12:00:00
|
5511
|
+
id: '123456789123'
|
5512
|
+
type: aws_cur_config
|
5513
|
+
properties:
|
5514
|
+
data:
|
5515
|
+
$ref: '#/components/schemas/AwsCurConfigResponseData'
|
5516
|
+
type: object
|
5517
|
+
AwsCurConfigResponseData:
|
5518
|
+
description: The definition of `AwsCurConfigResponseData` object.
|
5519
|
+
properties:
|
5520
|
+
attributes:
|
5521
|
+
$ref: '#/components/schemas/AwsCurConfigResponseDataAttributes'
|
5522
|
+
id:
|
5523
|
+
description: The `AwsCurConfigResponseData` `id`.
|
5524
|
+
type: string
|
5525
|
+
type:
|
5526
|
+
$ref: '#/components/schemas/AwsCurConfigResponseDataType'
|
5527
|
+
required:
|
5528
|
+
- type
|
5529
|
+
type: object
|
5530
|
+
AwsCurConfigResponseDataAttributes:
|
5531
|
+
description: The definition of `AwsCurConfigResponseDataAttributes` object.
|
5532
|
+
properties:
|
5533
|
+
account_filters:
|
5534
|
+
$ref: '#/components/schemas/AwsCurConfigResponseDataAttributesAccountFilters'
|
5535
|
+
account_id:
|
5536
|
+
description: The `attributes` `account_id`.
|
5537
|
+
type: string
|
5538
|
+
bucket_name:
|
5539
|
+
description: The `attributes` `bucket_name`.
|
5540
|
+
type: string
|
5541
|
+
bucket_region:
|
5542
|
+
description: The `attributes` `bucket_region`.
|
5543
|
+
type: string
|
5544
|
+
created_at:
|
5545
|
+
description: The `attributes` `created_at`.
|
5546
|
+
type: string
|
5547
|
+
error_messages:
|
5548
|
+
description: The `attributes` `error_messages`.
|
5549
|
+
items:
|
5550
|
+
type: string
|
5551
|
+
nullable: true
|
5552
|
+
type: array
|
5553
|
+
months:
|
5554
|
+
description: The `attributes` `months`.
|
5555
|
+
format: int64
|
5556
|
+
type: integer
|
5557
|
+
report_name:
|
5558
|
+
description: The `attributes` `report_name`.
|
5559
|
+
type: string
|
5560
|
+
report_prefix:
|
5561
|
+
description: The `attributes` `report_prefix`.
|
5562
|
+
type: string
|
5563
|
+
status:
|
5564
|
+
description: The `attributes` `status`.
|
5565
|
+
type: string
|
5566
|
+
status_updated_at:
|
5567
|
+
description: The `attributes` `status_updated_at`.
|
5568
|
+
type: string
|
5569
|
+
updated_at:
|
5570
|
+
description: The `attributes` `updated_at`.
|
5571
|
+
type: string
|
5572
|
+
type: object
|
5573
|
+
AwsCurConfigResponseDataAttributesAccountFilters:
|
5574
|
+
description: The definition of `AwsCurConfigResponseDataAttributesAccountFilters`
|
5575
|
+
object.
|
5576
|
+
properties:
|
5577
|
+
excluded_accounts:
|
5578
|
+
description: The `account_filters` `excluded_accounts`.
|
5579
|
+
items:
|
5580
|
+
type: string
|
5581
|
+
type: array
|
5582
|
+
include_new_accounts:
|
5583
|
+
description: The `account_filters` `include_new_accounts`.
|
5584
|
+
nullable: true
|
5585
|
+
type: boolean
|
5586
|
+
included_accounts:
|
5587
|
+
description: The `account_filters` `included_accounts`.
|
5588
|
+
items:
|
5589
|
+
type: string
|
5590
|
+
type: array
|
4847
5591
|
type: object
|
5592
|
+
AwsCurConfigResponseDataType:
|
5593
|
+
default: aws_cur_config
|
5594
|
+
description: AWS CUR config resource type.
|
5595
|
+
enum:
|
5596
|
+
- aws_cur_config
|
5597
|
+
example: aws_cur_config
|
5598
|
+
type: string
|
5599
|
+
x-enum-varnames:
|
5600
|
+
- AWS_CUR_CONFIG
|
4848
5601
|
AwsOnDemandAttributes:
|
4849
5602
|
description: Attributes for the AWS on demand task.
|
4850
5603
|
properties:
|
@@ -5254,7 +6007,7 @@ components:
|
|
5254
6007
|
description: Azure config.
|
5255
6008
|
properties:
|
5256
6009
|
account_id:
|
5257
|
-
description: The tenant ID of the
|
6010
|
+
description: The tenant ID of the Azure account.
|
5258
6011
|
example: 1234abcd-1234-abcd-1234-1234abcd1234
|
5259
6012
|
type: string
|
5260
6013
|
client_id:
|
@@ -5273,6 +6026,7 @@ components:
|
|
5273
6026
|
description: The error messages for the Azure config.
|
5274
6027
|
items:
|
5275
6028
|
type: string
|
6029
|
+
nullable: true
|
5276
6030
|
type: array
|
5277
6031
|
export_name:
|
5278
6032
|
description: The name of the configured Azure Export.
|
@@ -5378,7 +6132,6 @@ components:
|
|
5378
6132
|
type:
|
5379
6133
|
$ref: '#/components/schemas/AzureUCConfigPatchRequestType'
|
5380
6134
|
required:
|
5381
|
-
- attributes
|
5382
6135
|
- type
|
5383
6136
|
type: object
|
5384
6137
|
AzureUCConfigPatchRequest:
|
@@ -5416,7 +6169,6 @@ components:
|
|
5416
6169
|
type:
|
5417
6170
|
$ref: '#/components/schemas/AzureUCConfigPostRequestType'
|
5418
6171
|
required:
|
5419
|
-
- attributes
|
5420
6172
|
- type
|
5421
6173
|
type: object
|
5422
6174
|
AzureUCConfigPostRequest:
|
@@ -5431,7 +6183,7 @@ components:
|
|
5431
6183
|
description: Attributes for Azure config Post Request.
|
5432
6184
|
properties:
|
5433
6185
|
account_id:
|
5434
|
-
description: The tenant ID of the
|
6186
|
+
description: The tenant ID of the Azure account.
|
5435
6187
|
example: 1234abcd-1234-abcd-1234-1234abcd1234
|
5436
6188
|
type: string
|
5437
6189
|
actual_bill_config:
|
@@ -5439,12 +6191,9 @@ components:
|
|
5439
6191
|
amortized_bill_config:
|
5440
6192
|
$ref: '#/components/schemas/BillConfig'
|
5441
6193
|
client_id:
|
5442
|
-
description: The client ID of the
|
6194
|
+
description: The client ID of the Azure account.
|
5443
6195
|
example: 1234abcd-1234-abcd-1234-1234abcd1234
|
5444
6196
|
type: string
|
5445
|
-
is_enabled:
|
5446
|
-
description: Whether or not the Cloud Cost Management account is enabled.
|
5447
|
-
type: boolean
|
5448
6197
|
scope:
|
5449
6198
|
description: The scope of your observed subscription.
|
5450
6199
|
example: /subscriptions/1234abcd-1234-abcd-1234-1234abcd1234
|
@@ -5473,6 +6222,8 @@ components:
|
|
5473
6222
|
items:
|
5474
6223
|
$ref: '#/components/schemas/AzureUCConfigPair'
|
5475
6224
|
type: array
|
6225
|
+
required:
|
6226
|
+
- data
|
5476
6227
|
type: object
|
5477
6228
|
BillConfig:
|
5478
6229
|
description: Bill config.
|
@@ -11188,6 +11939,204 @@ components:
|
|
11188
11939
|
type:
|
11189
11940
|
$ref: '#/components/schemas/RuleType'
|
11190
11941
|
type: object
|
11942
|
+
CreateRulesetRequest:
|
11943
|
+
description: The definition of `CreateRulesetRequest` object.
|
11944
|
+
example:
|
11945
|
+
data:
|
11946
|
+
attributes:
|
11947
|
+
enabled: true
|
11948
|
+
rules:
|
11949
|
+
- enabled: true
|
11950
|
+
mapping: null
|
11951
|
+
metadata: null
|
11952
|
+
name: Add Cost Center Tag
|
11953
|
+
query:
|
11954
|
+
addition:
|
11955
|
+
key: cost_center
|
11956
|
+
value: engineering
|
11957
|
+
case_insensitivity: false
|
11958
|
+
if_not_exists: true
|
11959
|
+
query: account_id:"123456789" AND service:"web-api"
|
11960
|
+
reference_table: null
|
11961
|
+
id: New Ruleset
|
11962
|
+
type: create_ruleset
|
11963
|
+
properties:
|
11964
|
+
data:
|
11965
|
+
$ref: '#/components/schemas/CreateRulesetRequestData'
|
11966
|
+
type: object
|
11967
|
+
CreateRulesetRequestData:
|
11968
|
+
description: The definition of `CreateRulesetRequestData` object.
|
11969
|
+
properties:
|
11970
|
+
attributes:
|
11971
|
+
$ref: '#/components/schemas/CreateRulesetRequestDataAttributes'
|
11972
|
+
id:
|
11973
|
+
description: The `CreateRulesetRequestData` `id`.
|
11974
|
+
type: string
|
11975
|
+
type:
|
11976
|
+
$ref: '#/components/schemas/CreateRulesetRequestDataType'
|
11977
|
+
required:
|
11978
|
+
- type
|
11979
|
+
type: object
|
11980
|
+
CreateRulesetRequestDataAttributes:
|
11981
|
+
description: The definition of `CreateRulesetRequestDataAttributes` object.
|
11982
|
+
properties:
|
11983
|
+
enabled:
|
11984
|
+
description: The `attributes` `enabled`.
|
11985
|
+
type: boolean
|
11986
|
+
rules:
|
11987
|
+
description: The `attributes` `rules`.
|
11988
|
+
items:
|
11989
|
+
$ref: '#/components/schemas/CreateRulesetRequestDataAttributesRulesItems'
|
11990
|
+
type: array
|
11991
|
+
required:
|
11992
|
+
- rules
|
11993
|
+
type: object
|
11994
|
+
CreateRulesetRequestDataAttributesRulesItems:
|
11995
|
+
description: The definition of `CreateRulesetRequestDataAttributesRulesItems`
|
11996
|
+
object.
|
11997
|
+
properties:
|
11998
|
+
enabled:
|
11999
|
+
description: The `items` `enabled`.
|
12000
|
+
example: false
|
12001
|
+
type: boolean
|
12002
|
+
mapping:
|
12003
|
+
$ref: '#/components/schemas/CreateRulesetRequestDataAttributesRulesItemsMapping'
|
12004
|
+
metadata:
|
12005
|
+
$ref: '#/components/schemas/RulesetItemMetadata'
|
12006
|
+
name:
|
12007
|
+
description: The `items` `name`.
|
12008
|
+
example: ''
|
12009
|
+
type: string
|
12010
|
+
query:
|
12011
|
+
$ref: '#/components/schemas/CreateRulesetRequestDataAttributesRulesItemsQuery'
|
12012
|
+
reference_table:
|
12013
|
+
$ref: '#/components/schemas/CreateRulesetRequestDataAttributesRulesItemsReferenceTable'
|
12014
|
+
required:
|
12015
|
+
- enabled
|
12016
|
+
- name
|
12017
|
+
type: object
|
12018
|
+
CreateRulesetRequestDataAttributesRulesItemsMapping:
|
12019
|
+
description: The definition of `CreateRulesetRequestDataAttributesRulesItemsMapping`
|
12020
|
+
object.
|
12021
|
+
nullable: true
|
12022
|
+
properties:
|
12023
|
+
destination_key:
|
12024
|
+
description: The `mapping` `destination_key`.
|
12025
|
+
example: ''
|
12026
|
+
type: string
|
12027
|
+
if_not_exists:
|
12028
|
+
description: The `mapping` `if_not_exists`.
|
12029
|
+
example: false
|
12030
|
+
type: boolean
|
12031
|
+
source_keys:
|
12032
|
+
description: The `mapping` `source_keys`.
|
12033
|
+
example:
|
12034
|
+
- ''
|
12035
|
+
items:
|
12036
|
+
type: string
|
12037
|
+
type: array
|
12038
|
+
required:
|
12039
|
+
- destination_key
|
12040
|
+
- if_not_exists
|
12041
|
+
- source_keys
|
12042
|
+
type: object
|
12043
|
+
CreateRulesetRequestDataAttributesRulesItemsQuery:
|
12044
|
+
description: The definition of `CreateRulesetRequestDataAttributesRulesItemsQuery`
|
12045
|
+
object.
|
12046
|
+
nullable: true
|
12047
|
+
properties:
|
12048
|
+
addition:
|
12049
|
+
$ref: '#/components/schemas/CreateRulesetRequestDataAttributesRulesItemsQueryAddition'
|
12050
|
+
case_insensitivity:
|
12051
|
+
description: The `query` `case_insensitivity`.
|
12052
|
+
type: boolean
|
12053
|
+
if_not_exists:
|
12054
|
+
description: The `query` `if_not_exists`.
|
12055
|
+
example: false
|
12056
|
+
type: boolean
|
12057
|
+
query:
|
12058
|
+
description: The `query` `query`.
|
12059
|
+
example: ''
|
12060
|
+
type: string
|
12061
|
+
required:
|
12062
|
+
- addition
|
12063
|
+
- if_not_exists
|
12064
|
+
- query
|
12065
|
+
type: object
|
12066
|
+
CreateRulesetRequestDataAttributesRulesItemsQueryAddition:
|
12067
|
+
description: The definition of `CreateRulesetRequestDataAttributesRulesItemsQueryAddition`
|
12068
|
+
object.
|
12069
|
+
nullable: true
|
12070
|
+
properties:
|
12071
|
+
key:
|
12072
|
+
description: The `addition` `key`.
|
12073
|
+
example: ''
|
12074
|
+
type: string
|
12075
|
+
value:
|
12076
|
+
description: The `addition` `value`.
|
12077
|
+
example: ''
|
12078
|
+
type: string
|
12079
|
+
required:
|
12080
|
+
- key
|
12081
|
+
- value
|
12082
|
+
type: object
|
12083
|
+
CreateRulesetRequestDataAttributesRulesItemsReferenceTable:
|
12084
|
+
description: The definition of `CreateRulesetRequestDataAttributesRulesItemsReferenceTable`
|
12085
|
+
object.
|
12086
|
+
nullable: true
|
12087
|
+
properties:
|
12088
|
+
case_insensitivity:
|
12089
|
+
description: The `reference_table` `case_insensitivity`.
|
12090
|
+
type: boolean
|
12091
|
+
field_pairs:
|
12092
|
+
description: The `reference_table` `field_pairs`.
|
12093
|
+
items:
|
12094
|
+
$ref: '#/components/schemas/CreateRulesetRequestDataAttributesRulesItemsReferenceTableFieldPairsItems'
|
12095
|
+
type: array
|
12096
|
+
if_not_exists:
|
12097
|
+
description: The `reference_table` `if_not_exists`.
|
12098
|
+
type: boolean
|
12099
|
+
source_keys:
|
12100
|
+
description: The `reference_table` `source_keys`.
|
12101
|
+
example:
|
12102
|
+
- ''
|
12103
|
+
items:
|
12104
|
+
type: string
|
12105
|
+
type: array
|
12106
|
+
table_name:
|
12107
|
+
description: The `reference_table` `table_name`.
|
12108
|
+
example: ''
|
12109
|
+
type: string
|
12110
|
+
required:
|
12111
|
+
- field_pairs
|
12112
|
+
- source_keys
|
12113
|
+
- table_name
|
12114
|
+
type: object
|
12115
|
+
CreateRulesetRequestDataAttributesRulesItemsReferenceTableFieldPairsItems:
|
12116
|
+
description: The definition of `CreateRulesetRequestDataAttributesRulesItemsReferenceTableFieldPairsItems`
|
12117
|
+
object.
|
12118
|
+
properties:
|
12119
|
+
input_column:
|
12120
|
+
description: The `items` `input_column`.
|
12121
|
+
example: ''
|
12122
|
+
type: string
|
12123
|
+
output_key:
|
12124
|
+
description: The `items` `output_key`.
|
12125
|
+
example: ''
|
12126
|
+
type: string
|
12127
|
+
required:
|
12128
|
+
- input_column
|
12129
|
+
- output_key
|
12130
|
+
type: object
|
12131
|
+
CreateRulesetRequestDataType:
|
12132
|
+
default: create_ruleset
|
12133
|
+
description: Create ruleset resource type.
|
12134
|
+
enum:
|
12135
|
+
- create_ruleset
|
12136
|
+
example: create_ruleset
|
12137
|
+
type: string
|
12138
|
+
x-enum-varnames:
|
12139
|
+
- CREATE_RULESET
|
11191
12140
|
CreateWorkflowRequest:
|
11192
12141
|
description: A request object for creating a new workflow.
|
11193
12142
|
example:
|
@@ -13748,6 +14697,23 @@ components:
|
|
13748
14697
|
x-enum-varnames:
|
13749
14698
|
- NONE
|
13750
14699
|
- UUID
|
14700
|
+
DatastoreTrigger:
|
14701
|
+
description: Trigger a workflow from a Datastore. For automatic triggering a
|
14702
|
+
handle must be configured and the workflow must be published.
|
14703
|
+
properties:
|
14704
|
+
rateLimit:
|
14705
|
+
$ref: '#/components/schemas/TriggerRateLimit'
|
14706
|
+
type: object
|
14707
|
+
DatastoreTriggerWrapper:
|
14708
|
+
description: Schema for a Datastore-based trigger.
|
14709
|
+
properties:
|
14710
|
+
datastoreTrigger:
|
14711
|
+
$ref: '#/components/schemas/DatastoreTrigger'
|
14712
|
+
startStepNames:
|
14713
|
+
$ref: '#/components/schemas/StartStepNames'
|
14714
|
+
required:
|
14715
|
+
- datastoreTrigger
|
14716
|
+
type: object
|
13751
14717
|
Date:
|
13752
14718
|
description: Date as Unix timestamp in milliseconds.
|
13753
14719
|
example: 1722439510282
|
@@ -17812,6 +18778,13 @@ components:
|
|
17812
18778
|
format: date-time
|
17813
18779
|
readOnly: true
|
17814
18780
|
type: string
|
18781
|
+
date_last_used:
|
18782
|
+
description: Date the API Key was last used
|
18783
|
+
example: '2020-11-27T10:00:00.000Z'
|
18784
|
+
format: date-time
|
18785
|
+
nullable: true
|
18786
|
+
readOnly: true
|
18787
|
+
type: string
|
17815
18788
|
key:
|
17816
18789
|
description: The API key.
|
17817
18790
|
readOnly: true
|
@@ -17870,6 +18843,13 @@ components:
|
|
17870
18843
|
minLength: 4
|
17871
18844
|
readOnly: true
|
17872
18845
|
type: string
|
18846
|
+
last_used_at:
|
18847
|
+
description: Last usage timestamp of the application key.
|
18848
|
+
example: '2020-12-20T10:00:00.000Z'
|
18849
|
+
format: date-time
|
18850
|
+
nullable: true
|
18851
|
+
readOnly: true
|
18852
|
+
type: string
|
17873
18853
|
name:
|
17874
18854
|
description: Name of the application key.
|
17875
18855
|
example: Application Key for managing dashboards
|
@@ -18265,12 +19245,12 @@ components:
|
|
18265
19245
|
- type
|
18266
19246
|
type: object
|
18267
19247
|
GCPUsageCostConfig:
|
18268
|
-
description:
|
19248
|
+
description: Google Cloud Usage Cost config.
|
18269
19249
|
properties:
|
18270
19250
|
attributes:
|
18271
19251
|
$ref: '#/components/schemas/GCPUsageCostConfigAttributes'
|
18272
19252
|
id:
|
18273
|
-
description: The ID of the
|
19253
|
+
description: The ID of the Google Cloud Usage Cost config.
|
18274
19254
|
type: string
|
18275
19255
|
type:
|
18276
19256
|
$ref: '#/components/schemas/GCPUsageCostConfigType'
|
@@ -18279,36 +19259,37 @@ components:
|
|
18279
19259
|
- type
|
18280
19260
|
type: object
|
18281
19261
|
GCPUsageCostConfigAttributes:
|
18282
|
-
description: Attributes for a
|
19262
|
+
description: Attributes for a Google Cloud Usage Cost config.
|
18283
19263
|
properties:
|
18284
19264
|
account_id:
|
18285
|
-
description: The
|
19265
|
+
description: The Google Cloud account ID.
|
18286
19266
|
example: 123456_A123BC_12AB34
|
18287
19267
|
type: string
|
18288
19268
|
bucket_name:
|
18289
|
-
description: The
|
19269
|
+
description: The Google Cloud bucket name used to store the Usage Cost export.
|
18290
19270
|
example: dd-cost-bucket
|
18291
19271
|
type: string
|
18292
19272
|
created_at:
|
18293
|
-
description: The timestamp when the
|
19273
|
+
description: The timestamp when the Google Cloud Usage Cost config was created.
|
18294
19274
|
pattern: ^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}.\d{6}$
|
18295
19275
|
type: string
|
18296
19276
|
dataset:
|
18297
|
-
description: The export dataset name used for the
|
19277
|
+
description: The export dataset name used for the Google Cloud Usage Cost
|
19278
|
+
Report.
|
18298
19279
|
example: billing
|
18299
19280
|
type: string
|
18300
19281
|
error_messages:
|
18301
|
-
description: The error messages for the
|
19282
|
+
description: The error messages for the Google Cloud Usage Cost config.
|
18302
19283
|
items:
|
18303
19284
|
type: string
|
18304
19285
|
nullable: true
|
18305
19286
|
type: array
|
18306
19287
|
export_prefix:
|
18307
|
-
description: The export prefix used for the
|
19288
|
+
description: The export prefix used for the Google Cloud Usage Cost Report.
|
18308
19289
|
example: datadog_cloud_cost_usage_export
|
18309
19290
|
type: string
|
18310
19291
|
export_project_name:
|
18311
|
-
description: The name of the
|
19292
|
+
description: The name of the Google Cloud Usage Cost Report.
|
18312
19293
|
example: dd-cloud-cost-report
|
18313
19294
|
type: string
|
18314
19295
|
months:
|
@@ -18318,23 +19299,25 @@ components:
|
|
18318
19299
|
maximum: 36
|
18319
19300
|
type: integer
|
18320
19301
|
project_id:
|
18321
|
-
description: The `project_id` of the
|
19302
|
+
description: The `project_id` of the Google Cloud Usage Cost report.
|
18322
19303
|
example: my-project-123
|
18323
19304
|
type: string
|
18324
19305
|
service_account:
|
18325
|
-
description: The unique
|
19306
|
+
description: The unique Google Cloud service account email.
|
18326
19307
|
example: dd-ccm-gcp-integration@my-environment.iam.gserviceaccount.com
|
18327
19308
|
type: string
|
18328
19309
|
status:
|
18329
|
-
description: The status of the
|
19310
|
+
description: The status of the Google Cloud Usage Cost config.
|
18330
19311
|
example: active
|
18331
19312
|
type: string
|
18332
19313
|
status_updated_at:
|
18333
|
-
description: The timestamp when the
|
19314
|
+
description: The timestamp when the Google Cloud Usage Cost config status
|
19315
|
+
was updated.
|
18334
19316
|
pattern: ^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}.\d{6}$
|
18335
19317
|
type: string
|
18336
19318
|
updated_at:
|
18337
|
-
description: The timestamp when the
|
19319
|
+
description: The timestamp when the Google Cloud Usage Cost config status
|
19320
|
+
was updated.
|
18338
19321
|
pattern: ^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}.\d{6}$
|
18339
19322
|
type: string
|
18340
19323
|
required:
|
@@ -18347,7 +19330,7 @@ components:
|
|
18347
19330
|
- status
|
18348
19331
|
type: object
|
18349
19332
|
GCPUsageCostConfigPatchData:
|
18350
|
-
description:
|
19333
|
+
description: Google Cloud Usage Cost config patch data.
|
18351
19334
|
properties:
|
18352
19335
|
attributes:
|
18353
19336
|
$ref: '#/components/schemas/GCPUsageCostConfigPatchRequestAttributes'
|
@@ -18358,7 +19341,7 @@ components:
|
|
18358
19341
|
- type
|
18359
19342
|
type: object
|
18360
19343
|
GCPUsageCostConfigPatchRequest:
|
18361
|
-
description:
|
19344
|
+
description: Google Cloud Usage Cost config patch request.
|
18362
19345
|
properties:
|
18363
19346
|
data:
|
18364
19347
|
$ref: '#/components/schemas/GCPUsageCostConfigPatchData'
|
@@ -18366,7 +19349,7 @@ components:
|
|
18366
19349
|
- data
|
18367
19350
|
type: object
|
18368
19351
|
GCPUsageCostConfigPatchRequestAttributes:
|
18369
|
-
description: Attributes for
|
19352
|
+
description: Attributes for Google Cloud Usage Cost config patch request.
|
18370
19353
|
properties:
|
18371
19354
|
is_enabled:
|
18372
19355
|
description: Whether or not the Cloud Cost Management account is enabled.
|
@@ -18377,7 +19360,7 @@ components:
|
|
18377
19360
|
type: object
|
18378
19361
|
GCPUsageCostConfigPatchRequestType:
|
18379
19362
|
default: gcp_uc_config_patch_request
|
18380
|
-
description: Type of
|
19363
|
+
description: Type of Google Cloud Usage Cost config patch request.
|
18381
19364
|
enum:
|
18382
19365
|
- gcp_uc_config_patch_request
|
18383
19366
|
example: gcp_uc_config_patch_request
|
@@ -18385,18 +19368,17 @@ components:
|
|
18385
19368
|
x-enum-varnames:
|
18386
19369
|
- GCP_USAGE_COST_CONFIG_PATCH_REQUEST
|
18387
19370
|
GCPUsageCostConfigPostData:
|
18388
|
-
description:
|
19371
|
+
description: Google Cloud Usage Cost config post data.
|
18389
19372
|
properties:
|
18390
19373
|
attributes:
|
18391
19374
|
$ref: '#/components/schemas/GCPUsageCostConfigPostRequestAttributes'
|
18392
19375
|
type:
|
18393
19376
|
$ref: '#/components/schemas/GCPUsageCostConfigPostRequestType'
|
18394
19377
|
required:
|
18395
|
-
- attributes
|
18396
19378
|
- type
|
18397
19379
|
type: object
|
18398
19380
|
GCPUsageCostConfigPostRequest:
|
18399
|
-
description:
|
19381
|
+
description: Google Cloud Usage Cost config post request.
|
18400
19382
|
properties:
|
18401
19383
|
data:
|
18402
19384
|
$ref: '#/components/schemas/GCPUsageCostConfigPostData'
|
@@ -18404,30 +19386,31 @@ components:
|
|
18404
19386
|
- data
|
18405
19387
|
type: object
|
18406
19388
|
GCPUsageCostConfigPostRequestAttributes:
|
18407
|
-
description: Attributes for
|
19389
|
+
description: Attributes for Google Cloud Usage Cost config post request.
|
18408
19390
|
properties:
|
18409
19391
|
billing_account_id:
|
18410
|
-
description: The
|
19392
|
+
description: The Google Cloud account ID.
|
18411
19393
|
example: 123456_A123BC_12AB34
|
18412
19394
|
type: string
|
18413
19395
|
bucket_name:
|
18414
|
-
description: The
|
19396
|
+
description: The Google Cloud bucket name used to store the Usage Cost export.
|
18415
19397
|
example: dd-cost-bucket
|
18416
19398
|
type: string
|
18417
19399
|
export_dataset_name:
|
18418
|
-
description: The export dataset name used for the
|
19400
|
+
description: The export dataset name used for the Google Cloud Usage Cost
|
19401
|
+
report.
|
18419
19402
|
example: billing
|
18420
19403
|
type: string
|
18421
19404
|
export_prefix:
|
18422
|
-
description: The export prefix used for the
|
19405
|
+
description: The export prefix used for the Google Cloud Usage Cost report.
|
18423
19406
|
example: datadog_cloud_cost_usage_export
|
18424
19407
|
type: string
|
18425
19408
|
export_project_name:
|
18426
|
-
description: The name of the
|
19409
|
+
description: The name of the Google Cloud Usage Cost report.
|
18427
19410
|
example: dd-cloud-cost-report
|
18428
19411
|
type: string
|
18429
19412
|
service_account:
|
18430
|
-
description: The unique
|
19413
|
+
description: The unique Google Cloud service account email.
|
18431
19414
|
example: dd-ccm-gcp-integration@my-environment.iam.gserviceaccount.com
|
18432
19415
|
type: string
|
18433
19416
|
required:
|
@@ -18439,7 +19422,7 @@ components:
|
|
18439
19422
|
type: object
|
18440
19423
|
GCPUsageCostConfigPostRequestType:
|
18441
19424
|
default: gcp_uc_config_post_request
|
18442
|
-
description: Type of
|
19425
|
+
description: Type of Google Cloud Usage Cost config post request.
|
18443
19426
|
enum:
|
18444
19427
|
- gcp_uc_config_post_request
|
18445
19428
|
example: gcp_usage_cost_config_post_request
|
@@ -18447,14 +19430,14 @@ components:
|
|
18447
19430
|
x-enum-varnames:
|
18448
19431
|
- GCP_USAGE_COST_CONFIG_POST_REQUEST
|
18449
19432
|
GCPUsageCostConfigResponse:
|
18450
|
-
description: Response of
|
19433
|
+
description: Response of Google Cloud Usage Cost config.
|
18451
19434
|
properties:
|
18452
19435
|
data:
|
18453
19436
|
$ref: '#/components/schemas/GCPUsageCostConfig'
|
18454
19437
|
type: object
|
18455
19438
|
GCPUsageCostConfigType:
|
18456
19439
|
default: gcp_uc_config
|
18457
|
-
description: Type of
|
19440
|
+
description: Type of Google Cloud Usage Cost config.
|
18458
19441
|
enum:
|
18459
19442
|
- gcp_uc_config
|
18460
19443
|
example: gcp_uc_config
|
@@ -18462,14 +19445,109 @@ components:
|
|
18462
19445
|
x-enum-varnames:
|
18463
19446
|
- GCP_UC_CONFIG
|
18464
19447
|
GCPUsageCostConfigsResponse:
|
18465
|
-
description: List of
|
19448
|
+
description: List of Google Cloud Usage Cost configs.
|
18466
19449
|
properties:
|
18467
19450
|
data:
|
18468
|
-
description: A
|
19451
|
+
description: A Google Cloud Usage Cost config.
|
18469
19452
|
items:
|
18470
19453
|
$ref: '#/components/schemas/GCPUsageCostConfig'
|
18471
19454
|
type: array
|
19455
|
+
required:
|
19456
|
+
- data
|
19457
|
+
type: object
|
19458
|
+
GcpUcConfigResponse:
|
19459
|
+
description: The definition of `GcpUcConfigResponse` object.
|
19460
|
+
example:
|
19461
|
+
data:
|
19462
|
+
attributes:
|
19463
|
+
account_id: 123456_A123BC_12AB34
|
19464
|
+
bucket_name: dd-cost-bucket
|
19465
|
+
created_at: 2023-01-01 12:00:00
|
19466
|
+
dataset: billing
|
19467
|
+
error_messages: []
|
19468
|
+
export_prefix: datadog_cloud_cost_usage_export
|
19469
|
+
export_project_name: dd-cloud-cost-report
|
19470
|
+
months: 36
|
19471
|
+
project_id: my-project-123
|
19472
|
+
service_account: dd-ccm-gcp-integration@my-environment.iam.gserviceaccount.com
|
19473
|
+
status: active
|
19474
|
+
status_updated_at: 2023-01-01 12:00:00
|
19475
|
+
updated_at: 2023-01-01 12:00:00
|
19476
|
+
id: '123456789123'
|
19477
|
+
type: gcp_uc_config
|
19478
|
+
properties:
|
19479
|
+
data:
|
19480
|
+
$ref: '#/components/schemas/GcpUcConfigResponseData'
|
19481
|
+
type: object
|
19482
|
+
GcpUcConfigResponseData:
|
19483
|
+
description: The definition of `GcpUcConfigResponseData` object.
|
19484
|
+
properties:
|
19485
|
+
attributes:
|
19486
|
+
$ref: '#/components/schemas/GcpUcConfigResponseDataAttributes'
|
19487
|
+
id:
|
19488
|
+
description: The `GcpUcConfigResponseData` `id`.
|
19489
|
+
type: string
|
19490
|
+
type:
|
19491
|
+
$ref: '#/components/schemas/GcpUcConfigResponseDataType'
|
19492
|
+
required:
|
19493
|
+
- type
|
19494
|
+
type: object
|
19495
|
+
GcpUcConfigResponseDataAttributes:
|
19496
|
+
description: The definition of `GcpUcConfigResponseDataAttributes` object.
|
19497
|
+
properties:
|
19498
|
+
account_id:
|
19499
|
+
description: The `attributes` `account_id`.
|
19500
|
+
type: string
|
19501
|
+
bucket_name:
|
19502
|
+
description: The `attributes` `bucket_name`.
|
19503
|
+
type: string
|
19504
|
+
created_at:
|
19505
|
+
description: The `attributes` `created_at`.
|
19506
|
+
type: string
|
19507
|
+
dataset:
|
19508
|
+
description: The `attributes` `dataset`.
|
19509
|
+
type: string
|
19510
|
+
error_messages:
|
19511
|
+
description: The `attributes` `error_messages`.
|
19512
|
+
items:
|
19513
|
+
type: string
|
19514
|
+
nullable: true
|
19515
|
+
type: array
|
19516
|
+
export_prefix:
|
19517
|
+
description: The `attributes` `export_prefix`.
|
19518
|
+
type: string
|
19519
|
+
export_project_name:
|
19520
|
+
description: The `attributes` `export_project_name`.
|
19521
|
+
type: string
|
19522
|
+
months:
|
19523
|
+
description: The `attributes` `months`.
|
19524
|
+
format: int64
|
19525
|
+
type: integer
|
19526
|
+
project_id:
|
19527
|
+
description: The `attributes` `project_id`.
|
19528
|
+
type: string
|
19529
|
+
service_account:
|
19530
|
+
description: The `attributes` `service_account`.
|
19531
|
+
type: string
|
19532
|
+
status:
|
19533
|
+
description: The `attributes` `status`.
|
19534
|
+
type: string
|
19535
|
+
status_updated_at:
|
19536
|
+
description: The `attributes` `status_updated_at`.
|
19537
|
+
type: string
|
19538
|
+
updated_at:
|
19539
|
+
description: The `attributes` `updated_at`.
|
19540
|
+
type: string
|
18472
19541
|
type: object
|
19542
|
+
GcpUcConfigResponseDataType:
|
19543
|
+
default: gcp_uc_config
|
19544
|
+
description: Google Cloud Usage Cost config resource type.
|
19545
|
+
enum:
|
19546
|
+
- gcp_uc_config
|
19547
|
+
example: gcp_uc_config
|
19548
|
+
type: string
|
19549
|
+
x-enum-varnames:
|
19550
|
+
- GCP_UC_CONFIG
|
18473
19551
|
GeminiAPIKey:
|
18474
19552
|
description: The definition of the `GeminiAPIKey` object.
|
18475
19553
|
properties:
|
@@ -19409,6 +20487,8 @@ components:
|
|
19409
20487
|
$ref: '#/components/schemas/SecurityMonitoringRuleMaxSignalDuration'
|
19410
20488
|
newValueOptions:
|
19411
20489
|
$ref: '#/components/schemas/SecurityMonitoringRuleNewValueOptions'
|
20490
|
+
sequenceDetectionOptions:
|
20491
|
+
$ref: '#/components/schemas/SecurityMonitoringRuleSequenceDetectionOptions'
|
19412
20492
|
thirdPartyRuleOptions:
|
19413
20493
|
$ref: '#/components/schemas/SecurityMonitoringRuleThirdPartyOptions'
|
19414
20494
|
type: object
|
@@ -20120,6 +21200,177 @@ components:
|
|
20120
21200
|
- TEXTARRAY
|
20121
21201
|
- METRICTAG
|
20122
21202
|
- AUTOCOMPLETE
|
21203
|
+
IncidentImpactAttributes:
|
21204
|
+
description: The incident impact's attributes.
|
21205
|
+
properties:
|
21206
|
+
created:
|
21207
|
+
description: Timestamp when the impact was created.
|
21208
|
+
example: '2025-08-29T13:17:00Z'
|
21209
|
+
format: date-time
|
21210
|
+
readOnly: true
|
21211
|
+
type: string
|
21212
|
+
description:
|
21213
|
+
description: Description of the impact.
|
21214
|
+
example: Service was unavailable for external users
|
21215
|
+
type: string
|
21216
|
+
end_at:
|
21217
|
+
description: Timestamp when the impact ended.
|
21218
|
+
example: '2025-08-29T13:17:00Z'
|
21219
|
+
format: date-time
|
21220
|
+
nullable: true
|
21221
|
+
type: string
|
21222
|
+
fields:
|
21223
|
+
$ref: '#/components/schemas/IncidentImpactFieldsObject'
|
21224
|
+
impact_type:
|
21225
|
+
description: The type of impact.
|
21226
|
+
example: customer
|
21227
|
+
type: string
|
21228
|
+
modified:
|
21229
|
+
description: Timestamp when the impact was last modified.
|
21230
|
+
example: '2025-08-29T13:17:00Z'
|
21231
|
+
format: date-time
|
21232
|
+
readOnly: true
|
21233
|
+
type: string
|
21234
|
+
start_at:
|
21235
|
+
description: Timestamp representing when the impact started.
|
21236
|
+
example: '2025-08-28T13:17:00Z'
|
21237
|
+
format: date-time
|
21238
|
+
type: string
|
21239
|
+
required:
|
21240
|
+
- description
|
21241
|
+
- start_at
|
21242
|
+
type: object
|
21243
|
+
IncidentImpactCreateAttributes:
|
21244
|
+
description: The incident impact's attributes for a create request.
|
21245
|
+
properties:
|
21246
|
+
description:
|
21247
|
+
description: Description of the impact.
|
21248
|
+
example: Service was unavailable for external users
|
21249
|
+
type: string
|
21250
|
+
end_at:
|
21251
|
+
description: Timestamp when the impact ended.
|
21252
|
+
example: '2025-08-29T13:17:00Z'
|
21253
|
+
format: date-time
|
21254
|
+
nullable: true
|
21255
|
+
type: string
|
21256
|
+
fields:
|
21257
|
+
$ref: '#/components/schemas/IncidentImpactFieldsObject'
|
21258
|
+
start_at:
|
21259
|
+
description: Timestamp when the impact started.
|
21260
|
+
example: '2025-08-28T13:17:00Z'
|
21261
|
+
format: date-time
|
21262
|
+
type: string
|
21263
|
+
required:
|
21264
|
+
- description
|
21265
|
+
- start_at
|
21266
|
+
type: object
|
21267
|
+
IncidentImpactCreateData:
|
21268
|
+
description: Incident impact data for a create request.
|
21269
|
+
properties:
|
21270
|
+
attributes:
|
21271
|
+
$ref: '#/components/schemas/IncidentImpactCreateAttributes'
|
21272
|
+
type:
|
21273
|
+
$ref: '#/components/schemas/IncidentImpactType'
|
21274
|
+
required:
|
21275
|
+
- type
|
21276
|
+
- attributes
|
21277
|
+
type: object
|
21278
|
+
IncidentImpactCreateRequest:
|
21279
|
+
description: Create request for an incident impact.
|
21280
|
+
properties:
|
21281
|
+
data:
|
21282
|
+
$ref: '#/components/schemas/IncidentImpactCreateData'
|
21283
|
+
required:
|
21284
|
+
- data
|
21285
|
+
type: object
|
21286
|
+
IncidentImpactFieldsObject:
|
21287
|
+
additionalProperties: {}
|
21288
|
+
description: An object mapping impact field names to field values.
|
21289
|
+
example:
|
21290
|
+
customers_impacted: all
|
21291
|
+
products_impacted:
|
21292
|
+
- shopping
|
21293
|
+
- marketing
|
21294
|
+
nullable: true
|
21295
|
+
type: object
|
21296
|
+
IncidentImpactRelatedObject:
|
21297
|
+
description: A reference to a resource related to an incident impact.
|
21298
|
+
enum:
|
21299
|
+
- incident
|
21300
|
+
- created_by_user
|
21301
|
+
- last_modified_by_user
|
21302
|
+
type: string
|
21303
|
+
x-enum-varnames:
|
21304
|
+
- INCIDENT
|
21305
|
+
- CREATED_BY_USER
|
21306
|
+
- LAST_MODIFIED_BY_USER
|
21307
|
+
IncidentImpactRelationships:
|
21308
|
+
description: The incident impact's resource relationships.
|
21309
|
+
properties:
|
21310
|
+
created_by_user:
|
21311
|
+
$ref: '#/components/schemas/RelationshipToUser'
|
21312
|
+
incident:
|
21313
|
+
$ref: '#/components/schemas/RelationshipToIncident'
|
21314
|
+
last_modified_by_user:
|
21315
|
+
$ref: '#/components/schemas/RelationshipToUser'
|
21316
|
+
type: object
|
21317
|
+
IncidentImpactResponse:
|
21318
|
+
description: Response with an incident impact.
|
21319
|
+
properties:
|
21320
|
+
data:
|
21321
|
+
$ref: '#/components/schemas/IncidentImpactResponseData'
|
21322
|
+
included:
|
21323
|
+
description: Included related resources that the user requested.
|
21324
|
+
items:
|
21325
|
+
$ref: '#/components/schemas/IncidentUserData'
|
21326
|
+
readOnly: true
|
21327
|
+
type: array
|
21328
|
+
required:
|
21329
|
+
- data
|
21330
|
+
type: object
|
21331
|
+
IncidentImpactResponseData:
|
21332
|
+
description: Incident impact data from a response.
|
21333
|
+
properties:
|
21334
|
+
attributes:
|
21335
|
+
$ref: '#/components/schemas/IncidentImpactAttributes'
|
21336
|
+
id:
|
21337
|
+
description: The incident impact's ID.
|
21338
|
+
example: 00000000-0000-0000-1234-000000000000
|
21339
|
+
type: string
|
21340
|
+
relationships:
|
21341
|
+
$ref: '#/components/schemas/IncidentImpactRelationships'
|
21342
|
+
type:
|
21343
|
+
$ref: '#/components/schemas/IncidentImpactType'
|
21344
|
+
required:
|
21345
|
+
- id
|
21346
|
+
- type
|
21347
|
+
type: object
|
21348
|
+
IncidentImpactType:
|
21349
|
+
default: incident_impacts
|
21350
|
+
description: Incident impact resource type.
|
21351
|
+
enum:
|
21352
|
+
- incident_impacts
|
21353
|
+
example: incident_impacts
|
21354
|
+
type: string
|
21355
|
+
x-enum-varnames:
|
21356
|
+
- INCIDENT_IMPACTS
|
21357
|
+
IncidentImpactsResponse:
|
21358
|
+
description: Response with a list of incident impacts.
|
21359
|
+
properties:
|
21360
|
+
data:
|
21361
|
+
description: An array of incident impacts.
|
21362
|
+
items:
|
21363
|
+
$ref: '#/components/schemas/IncidentImpactResponseData'
|
21364
|
+
type: array
|
21365
|
+
included:
|
21366
|
+
description: Included related resources that the user requested.
|
21367
|
+
items:
|
21368
|
+
$ref: '#/components/schemas/IncidentUserData'
|
21369
|
+
readOnly: true
|
21370
|
+
type: array
|
21371
|
+
required:
|
21372
|
+
- data
|
21373
|
+
type: object
|
20123
21374
|
IncidentImpactsType:
|
20124
21375
|
description: The incident impacts type.
|
20125
21376
|
enum:
|
@@ -20897,6 +22148,7 @@ components:
|
|
20897
22148
|
- data
|
20898
22149
|
type: object
|
20899
22150
|
IncidentResponseAttributes:
|
22151
|
+
additionalProperties: {}
|
20900
22152
|
description: The incident's attributes from a response.
|
20901
22153
|
properties:
|
20902
22154
|
archived:
|
@@ -20941,6 +22193,17 @@ components:
|
|
20941
22193
|
description: A flag indicating whether the incident caused customer impact.
|
20942
22194
|
example: false
|
20943
22195
|
type: boolean
|
22196
|
+
declared:
|
22197
|
+
description: Timestamp when the incident was declared.
|
22198
|
+
format: date-time
|
22199
|
+
readOnly: true
|
22200
|
+
type: string
|
22201
|
+
declared_by:
|
22202
|
+
$ref: '#/components/schemas/IncidentNonDatadogCreator'
|
22203
|
+
declared_by_uuid:
|
22204
|
+
description: UUID of the user who declared the incident.
|
22205
|
+
nullable: true
|
22206
|
+
type: string
|
20944
22207
|
detected:
|
20945
22208
|
description: Timestamp when the incident was detected.
|
20946
22209
|
format: date-time
|
@@ -21096,6 +22359,8 @@ components:
|
|
21096
22359
|
$ref: '#/components/schemas/NullableRelationshipToUser'
|
21097
22360
|
created_by_user:
|
21098
22361
|
$ref: '#/components/schemas/RelationshipToUser'
|
22362
|
+
declared_by_user:
|
22363
|
+
$ref: '#/components/schemas/RelationshipToUser'
|
21099
22364
|
impacts:
|
21100
22365
|
$ref: '#/components/schemas/RelationshipToIncidentImpacts'
|
21101
22366
|
integrations:
|
@@ -29059,6 +30324,7 @@ components:
|
|
29059
30324
|
- $ref: '#/components/schemas/ObservabilityPipelineSocketDestination'
|
29060
30325
|
- $ref: '#/components/schemas/ObservabilityPipelineAmazonSecurityLakeDestination'
|
29061
30326
|
- $ref: '#/components/schemas/ObservabilityPipelineCrowdStrikeNextGenSiemDestination'
|
30327
|
+
- $ref: '#/components/schemas/ObservabilityPipelineGooglePubSubDestination'
|
29062
30328
|
ObservabilityPipelineConfigProcessorItem:
|
29063
30329
|
description: A processor for the pipeline.
|
29064
30330
|
oneOf:
|
@@ -30120,6 +31386,65 @@ components:
|
|
30120
31386
|
type: string
|
30121
31387
|
x-enum-varnames:
|
30122
31388
|
- GOOGLE_CLOUD_STORAGE
|
31389
|
+
ObservabilityPipelineGooglePubSubDestination:
|
31390
|
+
description: The `google_pubsub` destination publishes logs to a Google Cloud
|
31391
|
+
Pub/Sub topic.
|
31392
|
+
properties:
|
31393
|
+
auth:
|
31394
|
+
$ref: '#/components/schemas/ObservabilityPipelineGcpAuth'
|
31395
|
+
encoding:
|
31396
|
+
$ref: '#/components/schemas/ObservabilityPipelineGooglePubSubDestinationEncoding'
|
31397
|
+
id:
|
31398
|
+
description: The unique identifier for this component.
|
31399
|
+
example: google-pubsub-destination
|
31400
|
+
type: string
|
31401
|
+
inputs:
|
31402
|
+
description: A list of component IDs whose output is used as the `input`
|
31403
|
+
for this component.
|
31404
|
+
example:
|
31405
|
+
- filter-processor
|
31406
|
+
items:
|
31407
|
+
type: string
|
31408
|
+
type: array
|
31409
|
+
project:
|
31410
|
+
description: The GCP project ID that owns the Pub/Sub topic.
|
31411
|
+
example: my-gcp-project
|
31412
|
+
type: string
|
31413
|
+
tls:
|
31414
|
+
$ref: '#/components/schemas/ObservabilityPipelineTls'
|
31415
|
+
topic:
|
31416
|
+
description: The Pub/Sub topic name to publish logs to.
|
31417
|
+
example: logs-subscription
|
31418
|
+
type: string
|
31419
|
+
type:
|
31420
|
+
$ref: '#/components/schemas/ObservabilityPipelineGooglePubSubDestinationType'
|
31421
|
+
required:
|
31422
|
+
- id
|
31423
|
+
- type
|
31424
|
+
- inputs
|
31425
|
+
- encoding
|
31426
|
+
- project
|
31427
|
+
- topic
|
31428
|
+
type: object
|
31429
|
+
ObservabilityPipelineGooglePubSubDestinationEncoding:
|
31430
|
+
description: Encoding format for log events.
|
31431
|
+
enum:
|
31432
|
+
- json
|
31433
|
+
- raw_message
|
31434
|
+
example: json
|
31435
|
+
type: string
|
31436
|
+
x-enum-varnames:
|
31437
|
+
- JSON
|
31438
|
+
- RAW_MESSAGE
|
31439
|
+
ObservabilityPipelineGooglePubSubDestinationType:
|
31440
|
+
default: google_pubsub
|
31441
|
+
description: The destination type. The value should always be `google_pubsub`.
|
31442
|
+
enum:
|
31443
|
+
- google_pubsub
|
31444
|
+
example: google_pubsub
|
31445
|
+
type: string
|
31446
|
+
x-enum-varnames:
|
31447
|
+
- GOOGLE_PUBSUB
|
30123
31448
|
ObservabilityPipelineGooglePubSubSource:
|
30124
31449
|
description: The `google_pubsub` source ingests logs from a Google Cloud Pub/Sub
|
30125
31450
|
subscription.
|
@@ -33522,6 +34847,13 @@ components:
|
|
33522
34847
|
example: '2020-11-23T10:00:00.000Z'
|
33523
34848
|
readOnly: true
|
33524
34849
|
type: string
|
34850
|
+
date_last_used:
|
34851
|
+
description: Date the API Key was last used.
|
34852
|
+
example: '2020-11-27T10:00:00.000Z'
|
34853
|
+
format: date-time
|
34854
|
+
nullable: true
|
34855
|
+
readOnly: true
|
34856
|
+
type: string
|
33525
34857
|
last4:
|
33526
34858
|
description: The last four characters of the API key.
|
33527
34859
|
example: abcd
|
@@ -33570,6 +34902,12 @@ components:
|
|
33570
34902
|
minLength: 4
|
33571
34903
|
readOnly: true
|
33572
34904
|
type: string
|
34905
|
+
last_used_at:
|
34906
|
+
description: Last usage timestamp of the application key.
|
34907
|
+
example: '2020-12-20T10:00:00.000Z'
|
34908
|
+
nullable: true
|
34909
|
+
readOnly: true
|
34910
|
+
type: string
|
33573
34911
|
name:
|
33574
34912
|
description: Name of the application key.
|
33575
34913
|
example: Application Key for managing dashboards
|
@@ -34499,6 +35837,12 @@ components:
|
|
34499
35837
|
RUMApplicationAttributes:
|
34500
35838
|
description: RUM application attributes.
|
34501
35839
|
properties:
|
35840
|
+
api_key_id:
|
35841
|
+
description: ID of the API key associated with the application.
|
35842
|
+
example: 123456789
|
35843
|
+
format: int32
|
35844
|
+
maximum: 2147483647
|
35845
|
+
type: integer
|
34502
35846
|
application_id:
|
34503
35847
|
description: ID of the RUM application.
|
34504
35848
|
example: abcd1234-0000-0000-abcd-1234abcd5678
|
@@ -35408,6 +36752,14 @@ components:
|
|
35408
36752
|
description: Relationship type.
|
35409
36753
|
type: string
|
35410
36754
|
type: object
|
36755
|
+
RelationshipToIncident:
|
36756
|
+
description: Relationship to incident.
|
36757
|
+
properties:
|
36758
|
+
data:
|
36759
|
+
$ref: '#/components/schemas/RelationshipToIncidentData'
|
36760
|
+
required:
|
36761
|
+
- data
|
36762
|
+
type: object
|
35411
36763
|
RelationshipToIncidentAttachment:
|
35412
36764
|
description: A relationship reference for attachments.
|
35413
36765
|
properties:
|
@@ -35432,6 +36784,19 @@ components:
|
|
35432
36784
|
- id
|
35433
36785
|
- type
|
35434
36786
|
type: object
|
36787
|
+
RelationshipToIncidentData:
|
36788
|
+
description: Relationship to incident object.
|
36789
|
+
properties:
|
36790
|
+
id:
|
36791
|
+
description: A unique identifier that represents the incident.
|
36792
|
+
example: 00000000-0000-0000-1234-000000000000
|
36793
|
+
type: string
|
36794
|
+
type:
|
36795
|
+
$ref: '#/components/schemas/IncidentType'
|
36796
|
+
required:
|
36797
|
+
- id
|
36798
|
+
- type
|
36799
|
+
type: object
|
35435
36800
|
RelationshipToIncidentImpactData:
|
35436
36801
|
description: Relationship to impact object.
|
35437
36802
|
properties:
|
@@ -35950,6 +37315,76 @@ components:
|
|
35950
37315
|
required:
|
35951
37316
|
- data
|
35952
37317
|
type: object
|
37318
|
+
ReorderRuleResourceArray:
|
37319
|
+
description: The definition of `ReorderRuleResourceArray` object.
|
37320
|
+
example:
|
37321
|
+
data:
|
37322
|
+
- id: '456'
|
37323
|
+
type: arbitrary_rule
|
37324
|
+
- id: '123'
|
37325
|
+
type: arbitrary_rule
|
37326
|
+
- id: '789'
|
37327
|
+
type: arbitrary_rule
|
37328
|
+
properties:
|
37329
|
+
data:
|
37330
|
+
description: The `ReorderRuleResourceArray` `data`.
|
37331
|
+
items:
|
37332
|
+
$ref: '#/components/schemas/ReorderRuleResourceData'
|
37333
|
+
type: array
|
37334
|
+
required:
|
37335
|
+
- data
|
37336
|
+
type: object
|
37337
|
+
ReorderRuleResourceData:
|
37338
|
+
description: The definition of `ReorderRuleResourceData` object.
|
37339
|
+
properties:
|
37340
|
+
id:
|
37341
|
+
description: The `ReorderRuleResourceData` `id`.
|
37342
|
+
type: string
|
37343
|
+
type:
|
37344
|
+
$ref: '#/components/schemas/ReorderRuleResourceDataType'
|
37345
|
+
required:
|
37346
|
+
- type
|
37347
|
+
type: object
|
37348
|
+
ReorderRuleResourceDataType:
|
37349
|
+
default: arbitrary_rule
|
37350
|
+
description: Arbitrary rule resource type.
|
37351
|
+
enum:
|
37352
|
+
- arbitrary_rule
|
37353
|
+
example: arbitrary_rule
|
37354
|
+
type: string
|
37355
|
+
x-enum-varnames:
|
37356
|
+
- ARBITRARY_RULE
|
37357
|
+
ReorderRulesetResourceArray:
|
37358
|
+
description: The definition of `ReorderRulesetResourceArray` object.
|
37359
|
+
properties:
|
37360
|
+
data:
|
37361
|
+
description: The `ReorderRulesetResourceArray` `data`.
|
37362
|
+
items:
|
37363
|
+
$ref: '#/components/schemas/ReorderRulesetResourceData'
|
37364
|
+
type: array
|
37365
|
+
required:
|
37366
|
+
- data
|
37367
|
+
type: object
|
37368
|
+
ReorderRulesetResourceData:
|
37369
|
+
description: The definition of `ReorderRulesetResourceData` object.
|
37370
|
+
properties:
|
37371
|
+
id:
|
37372
|
+
description: The `ReorderRulesetResourceData` `id`.
|
37373
|
+
type: string
|
37374
|
+
type:
|
37375
|
+
$ref: '#/components/schemas/ReorderRulesetResourceDataType'
|
37376
|
+
required:
|
37377
|
+
- type
|
37378
|
+
type: object
|
37379
|
+
ReorderRulesetResourceDataType:
|
37380
|
+
default: ruleset
|
37381
|
+
description: Ruleset resource type.
|
37382
|
+
enum:
|
37383
|
+
- ruleset
|
37384
|
+
example: ruleset
|
37385
|
+
type: string
|
37386
|
+
x-enum-varnames:
|
37387
|
+
- RULESET
|
35953
37388
|
ResourceFilterAttributes:
|
35954
37389
|
description: Attributes of a resource filter.
|
35955
37390
|
example:
|
@@ -36455,6 +37890,7 @@ components:
|
|
36455
37890
|
- type
|
36456
37891
|
type: object
|
36457
37892
|
RoleAttributes:
|
37893
|
+
additionalProperties: {}
|
36458
37894
|
description: Attributes of the role.
|
36459
37895
|
properties:
|
36460
37896
|
created_at:
|
@@ -36984,6 +38420,396 @@ components:
|
|
36984
38420
|
rule:
|
36985
38421
|
$ref: '#/components/schemas/SecurityMonitoringRuleResponse'
|
36986
38422
|
type: object
|
38423
|
+
RulesValidateQueryRequest:
|
38424
|
+
description: The definition of `RulesValidateQueryRequest` object.
|
38425
|
+
example:
|
38426
|
+
data:
|
38427
|
+
attributes:
|
38428
|
+
Query: example:query AND test:true
|
38429
|
+
type: validate_query
|
38430
|
+
properties:
|
38431
|
+
data:
|
38432
|
+
$ref: '#/components/schemas/RulesValidateQueryRequestData'
|
38433
|
+
type: object
|
38434
|
+
RulesValidateQueryRequestData:
|
38435
|
+
description: The definition of `RulesValidateQueryRequestData` object.
|
38436
|
+
properties:
|
38437
|
+
attributes:
|
38438
|
+
$ref: '#/components/schemas/RulesValidateQueryRequestDataAttributes'
|
38439
|
+
id:
|
38440
|
+
description: The `RulesValidateQueryRequestData` `id`.
|
38441
|
+
type: string
|
38442
|
+
type:
|
38443
|
+
$ref: '#/components/schemas/RulesValidateQueryRequestDataType'
|
38444
|
+
required:
|
38445
|
+
- type
|
38446
|
+
type: object
|
38447
|
+
RulesValidateQueryRequestDataAttributes:
|
38448
|
+
description: The definition of `RulesValidateQueryRequestDataAttributes` object.
|
38449
|
+
properties:
|
38450
|
+
Query:
|
38451
|
+
description: The `attributes` `Query`.
|
38452
|
+
example: ''
|
38453
|
+
type: string
|
38454
|
+
required:
|
38455
|
+
- Query
|
38456
|
+
type: object
|
38457
|
+
RulesValidateQueryRequestDataType:
|
38458
|
+
default: validate_query
|
38459
|
+
description: Validate query resource type.
|
38460
|
+
enum:
|
38461
|
+
- validate_query
|
38462
|
+
example: validate_query
|
38463
|
+
type: string
|
38464
|
+
x-enum-varnames:
|
38465
|
+
- VALIDATE_QUERY
|
38466
|
+
RulesValidateQueryResponse:
|
38467
|
+
description: The definition of `RulesValidateQueryResponse` object.
|
38468
|
+
example:
|
38469
|
+
data:
|
38470
|
+
attributes:
|
38471
|
+
Canonical: canonical query representation
|
38472
|
+
type: validate_response
|
38473
|
+
properties:
|
38474
|
+
data:
|
38475
|
+
$ref: '#/components/schemas/RulesValidateQueryResponseData'
|
38476
|
+
type: object
|
38477
|
+
RulesValidateQueryResponseData:
|
38478
|
+
description: The definition of `RulesValidateQueryResponseData` object.
|
38479
|
+
properties:
|
38480
|
+
attributes:
|
38481
|
+
$ref: '#/components/schemas/RulesValidateQueryResponseDataAttributes'
|
38482
|
+
id:
|
38483
|
+
description: The `RulesValidateQueryResponseData` `id`.
|
38484
|
+
type: string
|
38485
|
+
type:
|
38486
|
+
$ref: '#/components/schemas/RulesValidateQueryResponseDataType'
|
38487
|
+
required:
|
38488
|
+
- type
|
38489
|
+
type: object
|
38490
|
+
RulesValidateQueryResponseDataAttributes:
|
38491
|
+
description: The definition of `RulesValidateQueryResponseDataAttributes` object.
|
38492
|
+
properties:
|
38493
|
+
Canonical:
|
38494
|
+
description: The `attributes` `Canonical`.
|
38495
|
+
example: ''
|
38496
|
+
type: string
|
38497
|
+
required:
|
38498
|
+
- Canonical
|
38499
|
+
type: object
|
38500
|
+
RulesValidateQueryResponseDataType:
|
38501
|
+
default: validate_response
|
38502
|
+
description: Validate response resource type.
|
38503
|
+
enum:
|
38504
|
+
- validate_response
|
38505
|
+
example: validate_response
|
38506
|
+
type: string
|
38507
|
+
x-enum-varnames:
|
38508
|
+
- VALIDATE_RESPONSE
|
38509
|
+
RulesetItemMetadata:
|
38510
|
+
additionalProperties:
|
38511
|
+
type: string
|
38512
|
+
description: The `items` `metadata`.
|
38513
|
+
nullable: true
|
38514
|
+
type: object
|
38515
|
+
RulesetResp:
|
38516
|
+
description: The definition of `RulesetResp` object.
|
38517
|
+
example:
|
38518
|
+
data:
|
38519
|
+
attributes:
|
38520
|
+
created: null
|
38521
|
+
enabled: true
|
38522
|
+
last_modified_user_uuid: ''
|
38523
|
+
modified: null
|
38524
|
+
name: Example Ruleset
|
38525
|
+
position: 0
|
38526
|
+
rules:
|
38527
|
+
- enabled: false
|
38528
|
+
mapping: null
|
38529
|
+
metadata: null
|
38530
|
+
name: RC test rule edited1
|
38531
|
+
query:
|
38532
|
+
addition:
|
38533
|
+
key: abc
|
38534
|
+
value: ww
|
38535
|
+
case_insensitivity: false
|
38536
|
+
if_not_exists: true
|
38537
|
+
query: billingcurrency:"USD" AND account_name:"SZA96462" AND billingcurrency:"USD"
|
38538
|
+
reference_table: null
|
38539
|
+
- enabled: true
|
38540
|
+
mapping:
|
38541
|
+
destination_key: h
|
38542
|
+
if_not_exists: true
|
38543
|
+
source_keys:
|
38544
|
+
- accountname
|
38545
|
+
- accountownerid
|
38546
|
+
metadata: null
|
38547
|
+
name: rule with empty source key
|
38548
|
+
query: null
|
38549
|
+
reference_table: null
|
38550
|
+
- enabled: true
|
38551
|
+
mapping: null
|
38552
|
+
metadata: null
|
38553
|
+
name: New table rule with new UI
|
38554
|
+
query: null
|
38555
|
+
reference_table:
|
38556
|
+
case_insensitivity: true
|
38557
|
+
field_pairs:
|
38558
|
+
- input_column: status_type
|
38559
|
+
output_key: status
|
38560
|
+
- input_column: status_description
|
38561
|
+
output_key: dess
|
38562
|
+
if_not_exists: false
|
38563
|
+
source_keys:
|
38564
|
+
- http_status
|
38565
|
+
- status_description
|
38566
|
+
table_name: http_status_codes
|
38567
|
+
version: 1
|
38568
|
+
id: '12345'
|
38569
|
+
type: ruleset
|
38570
|
+
properties:
|
38571
|
+
data:
|
38572
|
+
$ref: '#/components/schemas/RulesetRespData'
|
38573
|
+
type: object
|
38574
|
+
RulesetRespArray:
|
38575
|
+
description: The definition of `RulesetRespArray` object.
|
38576
|
+
properties:
|
38577
|
+
data:
|
38578
|
+
description: The `RulesetRespArray` `data`.
|
38579
|
+
items:
|
38580
|
+
$ref: '#/components/schemas/RulesetRespData'
|
38581
|
+
type: array
|
38582
|
+
required:
|
38583
|
+
- data
|
38584
|
+
type: object
|
38585
|
+
RulesetRespData:
|
38586
|
+
description: The definition of `RulesetRespData` object.
|
38587
|
+
properties:
|
38588
|
+
attributes:
|
38589
|
+
$ref: '#/components/schemas/RulesetRespDataAttributes'
|
38590
|
+
id:
|
38591
|
+
description: The `RulesetRespData` `id`.
|
38592
|
+
type: string
|
38593
|
+
type:
|
38594
|
+
$ref: '#/components/schemas/RulesetRespDataType'
|
38595
|
+
required:
|
38596
|
+
- type
|
38597
|
+
type: object
|
38598
|
+
RulesetRespDataAttributes:
|
38599
|
+
description: The definition of `RulesetRespDataAttributes` object.
|
38600
|
+
properties:
|
38601
|
+
created:
|
38602
|
+
$ref: '#/components/schemas/RulesetRespDataAttributesCreated'
|
38603
|
+
enabled:
|
38604
|
+
description: The `attributes` `enabled`.
|
38605
|
+
example: false
|
38606
|
+
type: boolean
|
38607
|
+
last_modified_user_uuid:
|
38608
|
+
description: The `attributes` `last_modified_user_uuid`.
|
38609
|
+
example: ''
|
38610
|
+
type: string
|
38611
|
+
modified:
|
38612
|
+
$ref: '#/components/schemas/RulesetRespDataAttributesModified'
|
38613
|
+
name:
|
38614
|
+
description: The `attributes` `name`.
|
38615
|
+
example: ''
|
38616
|
+
type: string
|
38617
|
+
position:
|
38618
|
+
description: The `attributes` `position`.
|
38619
|
+
example: 0
|
38620
|
+
format: int32
|
38621
|
+
maximum: 2147483647
|
38622
|
+
type: integer
|
38623
|
+
rules:
|
38624
|
+
description: The `attributes` `rules`.
|
38625
|
+
items:
|
38626
|
+
$ref: '#/components/schemas/RulesetRespDataAttributesRulesItems'
|
38627
|
+
type: array
|
38628
|
+
version:
|
38629
|
+
description: The `attributes` `version`.
|
38630
|
+
example: 0
|
38631
|
+
format: int64
|
38632
|
+
type: integer
|
38633
|
+
required:
|
38634
|
+
- created
|
38635
|
+
- enabled
|
38636
|
+
- last_modified_user_uuid
|
38637
|
+
- modified
|
38638
|
+
- name
|
38639
|
+
- position
|
38640
|
+
- rules
|
38641
|
+
- version
|
38642
|
+
type: object
|
38643
|
+
RulesetRespDataAttributesCreated:
|
38644
|
+
description: The definition of `RulesetRespDataAttributesCreated` object.
|
38645
|
+
properties:
|
38646
|
+
nanos:
|
38647
|
+
description: The `created` `nanos`.
|
38648
|
+
format: int32
|
38649
|
+
maximum: 2147483647
|
38650
|
+
type: integer
|
38651
|
+
seconds:
|
38652
|
+
description: The `created` `seconds`.
|
38653
|
+
format: int64
|
38654
|
+
type: integer
|
38655
|
+
type: object
|
38656
|
+
RulesetRespDataAttributesModified:
|
38657
|
+
description: The definition of `RulesetRespDataAttributesModified` object.
|
38658
|
+
properties:
|
38659
|
+
nanos:
|
38660
|
+
description: The `modified` `nanos`.
|
38661
|
+
format: int32
|
38662
|
+
maximum: 2147483647
|
38663
|
+
type: integer
|
38664
|
+
seconds:
|
38665
|
+
description: The `modified` `seconds`.
|
38666
|
+
format: int64
|
38667
|
+
type: integer
|
38668
|
+
type: object
|
38669
|
+
RulesetRespDataAttributesRulesItems:
|
38670
|
+
description: The definition of `RulesetRespDataAttributesRulesItems` object.
|
38671
|
+
properties:
|
38672
|
+
enabled:
|
38673
|
+
description: The `items` `enabled`.
|
38674
|
+
example: false
|
38675
|
+
type: boolean
|
38676
|
+
mapping:
|
38677
|
+
$ref: '#/components/schemas/RulesetRespDataAttributesRulesItemsMapping'
|
38678
|
+
metadata:
|
38679
|
+
$ref: '#/components/schemas/RulesetItemMetadata'
|
38680
|
+
name:
|
38681
|
+
description: The `items` `name`.
|
38682
|
+
example: ''
|
38683
|
+
type: string
|
38684
|
+
query:
|
38685
|
+
$ref: '#/components/schemas/RulesetRespDataAttributesRulesItemsQuery'
|
38686
|
+
reference_table:
|
38687
|
+
$ref: '#/components/schemas/RulesetRespDataAttributesRulesItemsReferenceTable'
|
38688
|
+
required:
|
38689
|
+
- enabled
|
38690
|
+
- name
|
38691
|
+
type: object
|
38692
|
+
RulesetRespDataAttributesRulesItemsMapping:
|
38693
|
+
description: The definition of `RulesetRespDataAttributesRulesItemsMapping`
|
38694
|
+
object.
|
38695
|
+
nullable: true
|
38696
|
+
properties:
|
38697
|
+
destination_key:
|
38698
|
+
description: The `mapping` `destination_key`.
|
38699
|
+
example: ''
|
38700
|
+
type: string
|
38701
|
+
if_not_exists:
|
38702
|
+
description: The `mapping` `if_not_exists`.
|
38703
|
+
example: false
|
38704
|
+
type: boolean
|
38705
|
+
source_keys:
|
38706
|
+
description: The `mapping` `source_keys`.
|
38707
|
+
example:
|
38708
|
+
- ''
|
38709
|
+
items:
|
38710
|
+
type: string
|
38711
|
+
type: array
|
38712
|
+
required:
|
38713
|
+
- destination_key
|
38714
|
+
- if_not_exists
|
38715
|
+
- source_keys
|
38716
|
+
type: object
|
38717
|
+
RulesetRespDataAttributesRulesItemsQuery:
|
38718
|
+
description: The definition of `RulesetRespDataAttributesRulesItemsQuery` object.
|
38719
|
+
nullable: true
|
38720
|
+
properties:
|
38721
|
+
addition:
|
38722
|
+
$ref: '#/components/schemas/RulesetRespDataAttributesRulesItemsQueryAddition'
|
38723
|
+
case_insensitivity:
|
38724
|
+
description: The `query` `case_insensitivity`.
|
38725
|
+
type: boolean
|
38726
|
+
if_not_exists:
|
38727
|
+
description: The `query` `if_not_exists`.
|
38728
|
+
example: false
|
38729
|
+
type: boolean
|
38730
|
+
query:
|
38731
|
+
description: The `query` `query`.
|
38732
|
+
example: ''
|
38733
|
+
type: string
|
38734
|
+
required:
|
38735
|
+
- addition
|
38736
|
+
- if_not_exists
|
38737
|
+
- query
|
38738
|
+
type: object
|
38739
|
+
RulesetRespDataAttributesRulesItemsQueryAddition:
|
38740
|
+
description: The definition of `RulesetRespDataAttributesRulesItemsQueryAddition`
|
38741
|
+
object.
|
38742
|
+
nullable: true
|
38743
|
+
properties:
|
38744
|
+
key:
|
38745
|
+
description: The `addition` `key`.
|
38746
|
+
example: ''
|
38747
|
+
type: string
|
38748
|
+
value:
|
38749
|
+
description: The `addition` `value`.
|
38750
|
+
example: ''
|
38751
|
+
type: string
|
38752
|
+
required:
|
38753
|
+
- key
|
38754
|
+
- value
|
38755
|
+
type: object
|
38756
|
+
RulesetRespDataAttributesRulesItemsReferenceTable:
|
38757
|
+
description: The definition of `RulesetRespDataAttributesRulesItemsReferenceTable`
|
38758
|
+
object.
|
38759
|
+
nullable: true
|
38760
|
+
properties:
|
38761
|
+
case_insensitivity:
|
38762
|
+
description: The `reference_table` `case_insensitivity`.
|
38763
|
+
type: boolean
|
38764
|
+
field_pairs:
|
38765
|
+
description: The `reference_table` `field_pairs`.
|
38766
|
+
items:
|
38767
|
+
$ref: '#/components/schemas/RulesetRespDataAttributesRulesItemsReferenceTableFieldPairsItems'
|
38768
|
+
type: array
|
38769
|
+
if_not_exists:
|
38770
|
+
description: The `reference_table` `if_not_exists`.
|
38771
|
+
type: boolean
|
38772
|
+
source_keys:
|
38773
|
+
description: The `reference_table` `source_keys`.
|
38774
|
+
example:
|
38775
|
+
- ''
|
38776
|
+
items:
|
38777
|
+
type: string
|
38778
|
+
type: array
|
38779
|
+
table_name:
|
38780
|
+
description: The `reference_table` `table_name`.
|
38781
|
+
example: ''
|
38782
|
+
type: string
|
38783
|
+
required:
|
38784
|
+
- field_pairs
|
38785
|
+
- source_keys
|
38786
|
+
- table_name
|
38787
|
+
type: object
|
38788
|
+
RulesetRespDataAttributesRulesItemsReferenceTableFieldPairsItems:
|
38789
|
+
description: The definition of `RulesetRespDataAttributesRulesItemsReferenceTableFieldPairsItems`
|
38790
|
+
object.
|
38791
|
+
properties:
|
38792
|
+
input_column:
|
38793
|
+
description: The `items` `input_column`.
|
38794
|
+
example: ''
|
38795
|
+
type: string
|
38796
|
+
output_key:
|
38797
|
+
description: The `items` `output_key`.
|
38798
|
+
example: ''
|
38799
|
+
type: string
|
38800
|
+
required:
|
38801
|
+
- input_column
|
38802
|
+
- output_key
|
38803
|
+
type: object
|
38804
|
+
RulesetRespDataType:
|
38805
|
+
default: ruleset
|
38806
|
+
description: Ruleset resource type.
|
38807
|
+
enum:
|
38808
|
+
- ruleset
|
38809
|
+
example: ruleset
|
38810
|
+
type: string
|
38811
|
+
x-enum-varnames:
|
38812
|
+
- RULESET
|
36987
38813
|
RumMetricCompute:
|
36988
38814
|
description: The compute rule to compute the rum-based metric.
|
36989
38815
|
properties:
|
@@ -39045,6 +40871,7 @@ components:
|
|
39045
40871
|
- hardcoded
|
39046
40872
|
- third_party
|
39047
40873
|
- anomaly_threshold
|
40874
|
+
- sequence_detection
|
39048
40875
|
type: string
|
39049
40876
|
x-enum-varnames:
|
39050
40877
|
- THRESHOLD
|
@@ -39054,6 +40881,7 @@ components:
|
|
39054
40881
|
- HARDCODED
|
39055
40882
|
- THIRD_PARTY
|
39056
40883
|
- ANOMALY_THRESHOLD
|
40884
|
+
- SEQUENCE_DETECTION
|
39057
40885
|
SecurityMonitoringRuleEvaluationWindow:
|
39058
40886
|
description: 'A time window is specified to match when at least one of the cases
|
39059
40887
|
matches true. This is a sliding window
|
@@ -39267,6 +41095,8 @@ components:
|
|
39267
41095
|
$ref: '#/components/schemas/SecurityMonitoringRuleMaxSignalDuration'
|
39268
41096
|
newValueOptions:
|
39269
41097
|
$ref: '#/components/schemas/SecurityMonitoringRuleNewValueOptions'
|
41098
|
+
sequenceDetectionOptions:
|
41099
|
+
$ref: '#/components/schemas/SecurityMonitoringRuleSequenceDetectionOptions'
|
39270
41100
|
thirdPartyRuleOptions:
|
39271
41101
|
$ref: '#/components/schemas/SecurityMonitoringRuleThirdPartyOptions'
|
39272
41102
|
type: object
|
@@ -39342,6 +41172,47 @@ components:
|
|
39342
41172
|
oneOf:
|
39343
41173
|
- $ref: '#/components/schemas/SecurityMonitoringStandardRuleResponse'
|
39344
41174
|
- $ref: '#/components/schemas/SecurityMonitoringSignalRuleResponse'
|
41175
|
+
SecurityMonitoringRuleSequenceDetectionOptions:
|
41176
|
+
description: Options on sequence detection method.
|
41177
|
+
properties:
|
41178
|
+
stepTransitions:
|
41179
|
+
description: Transitions defining the allowed order of steps and their evaluation
|
41180
|
+
windows.
|
41181
|
+
items:
|
41182
|
+
$ref: '#/components/schemas/SecurityMonitoringRuleSequenceDetectionStepTransition'
|
41183
|
+
type: array
|
41184
|
+
steps:
|
41185
|
+
description: Steps that define the conditions to be matched in sequence.
|
41186
|
+
items:
|
41187
|
+
$ref: '#/components/schemas/SecurityMonitoringRuleSequenceDetectionStep'
|
41188
|
+
type: array
|
41189
|
+
type: object
|
41190
|
+
SecurityMonitoringRuleSequenceDetectionStep:
|
41191
|
+
description: Step definition for sequence detection containing the step name,
|
41192
|
+
condition, and evaluation window.
|
41193
|
+
properties:
|
41194
|
+
condition:
|
41195
|
+
description: Condition referencing rule queries (e.g., `a > 0`).
|
41196
|
+
type: string
|
41197
|
+
evaluationWindow:
|
41198
|
+
$ref: '#/components/schemas/SecurityMonitoringRuleEvaluationWindow'
|
41199
|
+
name:
|
41200
|
+
description: Unique name identifying the step.
|
41201
|
+
type: string
|
41202
|
+
type: object
|
41203
|
+
SecurityMonitoringRuleSequenceDetectionStepTransition:
|
41204
|
+
description: Transition from a parent step to a child step within a sequence
|
41205
|
+
detection rule.
|
41206
|
+
properties:
|
41207
|
+
child:
|
41208
|
+
description: Name of the child step.
|
41209
|
+
type: string
|
41210
|
+
evaluationWindow:
|
41211
|
+
$ref: '#/components/schemas/SecurityMonitoringRuleEvaluationWindow'
|
41212
|
+
parent:
|
41213
|
+
description: Name of the parent step.
|
41214
|
+
type: string
|
41215
|
+
type: object
|
39345
41216
|
SecurityMonitoringRuleSeverity:
|
39346
41217
|
description: Severity of the Security Signal.
|
39347
41218
|
enum:
|
@@ -45922,6 +47793,7 @@ components:
|
|
45922
47793
|
- $ref: '#/components/schemas/CaseTriggerWrapper'
|
45923
47794
|
- $ref: '#/components/schemas/ChangeEventTriggerWrapper'
|
45924
47795
|
- $ref: '#/components/schemas/DatabaseMonitoringTriggerWrapper'
|
47796
|
+
- $ref: '#/components/schemas/DatastoreTriggerWrapper'
|
45925
47797
|
- $ref: '#/components/schemas/DashboardTriggerWrapper'
|
45926
47798
|
- $ref: '#/components/schemas/GithubWebhookTriggerWrapper'
|
45927
47799
|
- $ref: '#/components/schemas/IncidentTriggerWrapper'
|
@@ -45959,6 +47831,117 @@ components:
|
|
45959
47831
|
x-enum-varnames:
|
45960
47832
|
- SECURITY_FINDINGS
|
45961
47833
|
- SECURITY_SIGNALS
|
47834
|
+
UCConfigPair:
|
47835
|
+
description: The definition of `UCConfigPair` object.
|
47836
|
+
example:
|
47837
|
+
data:
|
47838
|
+
attributes:
|
47839
|
+
configs:
|
47840
|
+
- account_id: 1234abcd-1234-abcd-1234-1234abcd1234
|
47841
|
+
client_id: 1234abcd-1234-abcd-1234-1234abcd1234
|
47842
|
+
created_at: 2023-01-01 12:00:00
|
47843
|
+
dataset_type: actual
|
47844
|
+
error_messages: []
|
47845
|
+
export_name: dd-actual-export
|
47846
|
+
export_path: dd-export-path
|
47847
|
+
id: '123456789123'
|
47848
|
+
months: 36
|
47849
|
+
scope: /subscriptions/1234abcd-1234-abcd-1234-1234abcd1234
|
47850
|
+
status: active
|
47851
|
+
status_updated_at: 2023-01-01 12:00:00
|
47852
|
+
storage_account: dd-storage-account
|
47853
|
+
storage_container: dd-storage-container
|
47854
|
+
updated_at: 2023-01-01 12:00:00
|
47855
|
+
id: '123456789123'
|
47856
|
+
type: azure_uc_configs
|
47857
|
+
properties:
|
47858
|
+
data:
|
47859
|
+
$ref: '#/components/schemas/UCConfigPairData'
|
47860
|
+
type: object
|
47861
|
+
UCConfigPairData:
|
47862
|
+
description: The definition of `UCConfigPairData` object.
|
47863
|
+
properties:
|
47864
|
+
attributes:
|
47865
|
+
$ref: '#/components/schemas/UCConfigPairDataAttributes'
|
47866
|
+
id:
|
47867
|
+
description: The `UCConfigPairData` `id`.
|
47868
|
+
type: string
|
47869
|
+
type:
|
47870
|
+
$ref: '#/components/schemas/UCConfigPairDataType'
|
47871
|
+
required:
|
47872
|
+
- type
|
47873
|
+
type: object
|
47874
|
+
UCConfigPairDataAttributes:
|
47875
|
+
description: The definition of `UCConfigPairDataAttributes` object.
|
47876
|
+
properties:
|
47877
|
+
configs:
|
47878
|
+
description: The `attributes` `configs`.
|
47879
|
+
items:
|
47880
|
+
$ref: '#/components/schemas/UCConfigPairDataAttributesConfigsItems'
|
47881
|
+
type: array
|
47882
|
+
type: object
|
47883
|
+
UCConfigPairDataAttributesConfigsItems:
|
47884
|
+
description: The definition of `UCConfigPairDataAttributesConfigsItems` object.
|
47885
|
+
properties:
|
47886
|
+
account_id:
|
47887
|
+
description: The `items` `account_id`.
|
47888
|
+
type: string
|
47889
|
+
client_id:
|
47890
|
+
description: The `items` `client_id`.
|
47891
|
+
type: string
|
47892
|
+
created_at:
|
47893
|
+
description: The `items` `created_at`.
|
47894
|
+
type: string
|
47895
|
+
dataset_type:
|
47896
|
+
description: The `items` `dataset_type`.
|
47897
|
+
type: string
|
47898
|
+
error_messages:
|
47899
|
+
description: The `items` `error_messages`.
|
47900
|
+
items:
|
47901
|
+
type: string
|
47902
|
+
nullable: true
|
47903
|
+
type: array
|
47904
|
+
export_name:
|
47905
|
+
description: The `items` `export_name`.
|
47906
|
+
type: string
|
47907
|
+
export_path:
|
47908
|
+
description: The `items` `export_path`.
|
47909
|
+
type: string
|
47910
|
+
id:
|
47911
|
+
description: The `items` `id`.
|
47912
|
+
type: string
|
47913
|
+
months:
|
47914
|
+
description: The `items` `months`.
|
47915
|
+
format: int64
|
47916
|
+
type: integer
|
47917
|
+
scope:
|
47918
|
+
description: The `items` `scope`.
|
47919
|
+
type: string
|
47920
|
+
status:
|
47921
|
+
description: The `items` `status`.
|
47922
|
+
type: string
|
47923
|
+
status_updated_at:
|
47924
|
+
description: The `items` `status_updated_at`.
|
47925
|
+
type: string
|
47926
|
+
storage_account:
|
47927
|
+
description: The `items` `storage_account`.
|
47928
|
+
type: string
|
47929
|
+
storage_container:
|
47930
|
+
description: The `items` `storage_container`.
|
47931
|
+
type: string
|
47932
|
+
updated_at:
|
47933
|
+
description: The `items` `updated_at`.
|
47934
|
+
type: string
|
47935
|
+
type: object
|
47936
|
+
UCConfigPairDataType:
|
47937
|
+
default: azure_uc_configs
|
47938
|
+
description: Azure UC configs resource type.
|
47939
|
+
enum:
|
47940
|
+
- azure_uc_configs
|
47941
|
+
example: azure_uc_configs
|
47942
|
+
type: string
|
47943
|
+
x-enum-varnames:
|
47944
|
+
- AZURE_UC_CONFIGS
|
45962
47945
|
Unit:
|
45963
47946
|
description: Object containing the metric unit family, scale factor, name, and
|
45964
47947
|
short name.
|
@@ -46435,6 +48418,209 @@ components:
|
|
46435
48418
|
type:
|
46436
48419
|
$ref: '#/components/schemas/RuleType'
|
46437
48420
|
type: object
|
48421
|
+
UpdateRulesetRequest:
|
48422
|
+
description: The definition of `UpdateRulesetRequest` object.
|
48423
|
+
example:
|
48424
|
+
data:
|
48425
|
+
attributes:
|
48426
|
+
enabled: true
|
48427
|
+
last_version: 1
|
48428
|
+
rules:
|
48429
|
+
- enabled: true
|
48430
|
+
mapping:
|
48431
|
+
destination_key: team_owner
|
48432
|
+
if_not_exists: true
|
48433
|
+
source_keys:
|
48434
|
+
- account_name
|
48435
|
+
- account_id
|
48436
|
+
metadata: null
|
48437
|
+
name: Account Name Mapping
|
48438
|
+
query: null
|
48439
|
+
reference_table: null
|
48440
|
+
type: update_ruleset
|
48441
|
+
properties:
|
48442
|
+
data:
|
48443
|
+
$ref: '#/components/schemas/UpdateRulesetRequestData'
|
48444
|
+
type: object
|
48445
|
+
UpdateRulesetRequestData:
|
48446
|
+
description: The definition of `UpdateRulesetRequestData` object.
|
48447
|
+
properties:
|
48448
|
+
attributes:
|
48449
|
+
$ref: '#/components/schemas/UpdateRulesetRequestDataAttributes'
|
48450
|
+
id:
|
48451
|
+
description: The `UpdateRulesetRequestData` `id`.
|
48452
|
+
type: string
|
48453
|
+
type:
|
48454
|
+
$ref: '#/components/schemas/UpdateRulesetRequestDataType'
|
48455
|
+
required:
|
48456
|
+
- type
|
48457
|
+
type: object
|
48458
|
+
UpdateRulesetRequestDataAttributes:
|
48459
|
+
description: The definition of `UpdateRulesetRequestDataAttributes` object.
|
48460
|
+
properties:
|
48461
|
+
enabled:
|
48462
|
+
description: The `attributes` `enabled`.
|
48463
|
+
example: false
|
48464
|
+
type: boolean
|
48465
|
+
last_version:
|
48466
|
+
description: The `attributes` `last_version`.
|
48467
|
+
format: int64
|
48468
|
+
type: integer
|
48469
|
+
rules:
|
48470
|
+
description: The `attributes` `rules`.
|
48471
|
+
items:
|
48472
|
+
$ref: '#/components/schemas/UpdateRulesetRequestDataAttributesRulesItems'
|
48473
|
+
type: array
|
48474
|
+
required:
|
48475
|
+
- enabled
|
48476
|
+
- rules
|
48477
|
+
type: object
|
48478
|
+
UpdateRulesetRequestDataAttributesRulesItems:
|
48479
|
+
description: The definition of `UpdateRulesetRequestDataAttributesRulesItems`
|
48480
|
+
object.
|
48481
|
+
properties:
|
48482
|
+
enabled:
|
48483
|
+
description: The `items` `enabled`.
|
48484
|
+
example: false
|
48485
|
+
type: boolean
|
48486
|
+
mapping:
|
48487
|
+
$ref: '#/components/schemas/UpdateRulesetRequestDataAttributesRulesItemsMapping'
|
48488
|
+
metadata:
|
48489
|
+
$ref: '#/components/schemas/RulesetItemMetadata'
|
48490
|
+
name:
|
48491
|
+
description: The `items` `name`.
|
48492
|
+
example: ''
|
48493
|
+
type: string
|
48494
|
+
query:
|
48495
|
+
$ref: '#/components/schemas/UpdateRulesetRequestDataAttributesRulesItemsQuery'
|
48496
|
+
reference_table:
|
48497
|
+
$ref: '#/components/schemas/UpdateRulesetRequestDataAttributesRulesItemsReferenceTable'
|
48498
|
+
required:
|
48499
|
+
- enabled
|
48500
|
+
- name
|
48501
|
+
type: object
|
48502
|
+
UpdateRulesetRequestDataAttributesRulesItemsMapping:
|
48503
|
+
description: The definition of `UpdateRulesetRequestDataAttributesRulesItemsMapping`
|
48504
|
+
object.
|
48505
|
+
nullable: true
|
48506
|
+
properties:
|
48507
|
+
destination_key:
|
48508
|
+
description: The `mapping` `destination_key`.
|
48509
|
+
example: ''
|
48510
|
+
type: string
|
48511
|
+
if_not_exists:
|
48512
|
+
description: The `mapping` `if_not_exists`.
|
48513
|
+
example: false
|
48514
|
+
type: boolean
|
48515
|
+
source_keys:
|
48516
|
+
description: The `mapping` `source_keys`.
|
48517
|
+
example:
|
48518
|
+
- ''
|
48519
|
+
items:
|
48520
|
+
type: string
|
48521
|
+
type: array
|
48522
|
+
required:
|
48523
|
+
- destination_key
|
48524
|
+
- if_not_exists
|
48525
|
+
- source_keys
|
48526
|
+
type: object
|
48527
|
+
UpdateRulesetRequestDataAttributesRulesItemsQuery:
|
48528
|
+
description: The definition of `UpdateRulesetRequestDataAttributesRulesItemsQuery`
|
48529
|
+
object.
|
48530
|
+
nullable: true
|
48531
|
+
properties:
|
48532
|
+
addition:
|
48533
|
+
$ref: '#/components/schemas/UpdateRulesetRequestDataAttributesRulesItemsQueryAddition'
|
48534
|
+
case_insensitivity:
|
48535
|
+
description: The `query` `case_insensitivity`.
|
48536
|
+
type: boolean
|
48537
|
+
if_not_exists:
|
48538
|
+
description: The `query` `if_not_exists`.
|
48539
|
+
example: false
|
48540
|
+
type: boolean
|
48541
|
+
query:
|
48542
|
+
description: The `query` `query`.
|
48543
|
+
example: ''
|
48544
|
+
type: string
|
48545
|
+
required:
|
48546
|
+
- addition
|
48547
|
+
- if_not_exists
|
48548
|
+
- query
|
48549
|
+
type: object
|
48550
|
+
UpdateRulesetRequestDataAttributesRulesItemsQueryAddition:
|
48551
|
+
description: The definition of `UpdateRulesetRequestDataAttributesRulesItemsQueryAddition`
|
48552
|
+
object.
|
48553
|
+
nullable: true
|
48554
|
+
properties:
|
48555
|
+
key:
|
48556
|
+
description: The `addition` `key`.
|
48557
|
+
example: ''
|
48558
|
+
type: string
|
48559
|
+
value:
|
48560
|
+
description: The `addition` `value`.
|
48561
|
+
example: ''
|
48562
|
+
type: string
|
48563
|
+
required:
|
48564
|
+
- key
|
48565
|
+
- value
|
48566
|
+
type: object
|
48567
|
+
UpdateRulesetRequestDataAttributesRulesItemsReferenceTable:
|
48568
|
+
description: The definition of `UpdateRulesetRequestDataAttributesRulesItemsReferenceTable`
|
48569
|
+
object.
|
48570
|
+
nullable: true
|
48571
|
+
properties:
|
48572
|
+
case_insensitivity:
|
48573
|
+
description: The `reference_table` `case_insensitivity`.
|
48574
|
+
type: boolean
|
48575
|
+
field_pairs:
|
48576
|
+
description: The `reference_table` `field_pairs`.
|
48577
|
+
items:
|
48578
|
+
$ref: '#/components/schemas/UpdateRulesetRequestDataAttributesRulesItemsReferenceTableFieldPairsItems'
|
48579
|
+
type: array
|
48580
|
+
if_not_exists:
|
48581
|
+
description: The `reference_table` `if_not_exists`.
|
48582
|
+
type: boolean
|
48583
|
+
source_keys:
|
48584
|
+
description: The `reference_table` `source_keys`.
|
48585
|
+
example:
|
48586
|
+
- ''
|
48587
|
+
items:
|
48588
|
+
type: string
|
48589
|
+
type: array
|
48590
|
+
table_name:
|
48591
|
+
description: The `reference_table` `table_name`.
|
48592
|
+
example: ''
|
48593
|
+
type: string
|
48594
|
+
required:
|
48595
|
+
- field_pairs
|
48596
|
+
- source_keys
|
48597
|
+
- table_name
|
48598
|
+
type: object
|
48599
|
+
UpdateRulesetRequestDataAttributesRulesItemsReferenceTableFieldPairsItems:
|
48600
|
+
description: The definition of `UpdateRulesetRequestDataAttributesRulesItemsReferenceTableFieldPairsItems`
|
48601
|
+
object.
|
48602
|
+
properties:
|
48603
|
+
input_column:
|
48604
|
+
description: The `items` `input_column`.
|
48605
|
+
example: ''
|
48606
|
+
type: string
|
48607
|
+
output_key:
|
48608
|
+
description: The `items` `output_key`.
|
48609
|
+
example: ''
|
48610
|
+
type: string
|
48611
|
+
required:
|
48612
|
+
- input_column
|
48613
|
+
- output_key
|
48614
|
+
type: object
|
48615
|
+
UpdateRulesetRequestDataType:
|
48616
|
+
default: update_ruleset
|
48617
|
+
description: Update ruleset resource type.
|
48618
|
+
enum:
|
48619
|
+
- update_ruleset
|
48620
|
+
example: update_ruleset
|
48621
|
+
type: string
|
48622
|
+
x-enum-varnames:
|
48623
|
+
- UPDATE_RULESET
|
46438
48624
|
UpdateWorkflowRequest:
|
46439
48625
|
description: A request object for updating an existing workflow.
|
46440
48626
|
example:
|
@@ -52532,6 +54718,231 @@ paths:
|
|
52532
54718
|
x-permission:
|
52533
54719
|
operator: OPEN
|
52534
54720
|
permissions: []
|
54721
|
+
/api/v2/cost/arbitrary_rule:
|
54722
|
+
get:
|
54723
|
+
description: List all arbitrary cost rules - Retrieve a list of all arbitrary
|
54724
|
+
cost rules for the organization
|
54725
|
+
operationId: ListArbitraryCostRules
|
54726
|
+
responses:
|
54727
|
+
'200':
|
54728
|
+
content:
|
54729
|
+
application/json:
|
54730
|
+
schema:
|
54731
|
+
$ref: '#/components/schemas/ArbitraryRuleResponseArray'
|
54732
|
+
description: OK
|
54733
|
+
'429':
|
54734
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
54735
|
+
security:
|
54736
|
+
- apiKeyAuth: []
|
54737
|
+
appKeyAuth: []
|
54738
|
+
- AuthZ:
|
54739
|
+
- cloud_cost_management_read
|
54740
|
+
summary: List arbitrary cost rules
|
54741
|
+
tags:
|
54742
|
+
- Cloud Cost Management
|
54743
|
+
post:
|
54744
|
+
description: 'Create a new arbitrary cost rule with the specified filters and
|
54745
|
+
allocation strategy.
|
54746
|
+
|
54747
|
+
|
54748
|
+
**Strategy Methods:**
|
54749
|
+
|
54750
|
+
- **PROPORTIONAL/EVEN**: Allocates costs proportionally/evenly based on existing
|
54751
|
+
costs. Requires: granularity, allocated_by_tag_keys. Optional: based_on_costs,
|
54752
|
+
allocated_by_filters, evaluate_grouped_by_tag_keys, evaluate_grouped_by_filters.
|
54753
|
+
|
54754
|
+
- **PROPORTIONAL_TIMESERIES/EVEN_TIMESERIES**: Allocates based on timeseries
|
54755
|
+
data. Requires: granularity, based_on_timeseries. Optional: evaluate_grouped_by_tag_keys.
|
54756
|
+
|
54757
|
+
- **PERCENT**: Allocates fixed percentages to specific tags. Requires: allocated_by
|
54758
|
+
(array of percentage allocations).
|
54759
|
+
|
54760
|
+
|
54761
|
+
**Filter Conditions:**
|
54762
|
+
|
54763
|
+
- Use **value** for single-value conditions: "is", "is not", "contains", "does
|
54764
|
+
not contain", "=", "!=", "like", "not like", "is all values", "is untagged"
|
54765
|
+
|
54766
|
+
- Use **values** for multi-value conditions: "in", "not in"
|
54767
|
+
|
54768
|
+
- Cannot use both value and values simultaneously.
|
54769
|
+
|
54770
|
+
|
54771
|
+
**Supported operators**: is, is not, is all values, is untagged, contains,
|
54772
|
+
does not contain, in, not in, =, !=, like, not like'
|
54773
|
+
operationId: CreateArbitraryCostRule
|
54774
|
+
requestBody:
|
54775
|
+
content:
|
54776
|
+
application/json:
|
54777
|
+
schema:
|
54778
|
+
$ref: '#/components/schemas/ArbitraryCostUpsertRequest'
|
54779
|
+
required: true
|
54780
|
+
responses:
|
54781
|
+
'200':
|
54782
|
+
content:
|
54783
|
+
application/json:
|
54784
|
+
schema:
|
54785
|
+
$ref: '#/components/schemas/ArbitraryRuleResponse'
|
54786
|
+
description: OK
|
54787
|
+
'429':
|
54788
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
54789
|
+
security:
|
54790
|
+
- apiKeyAuth: []
|
54791
|
+
appKeyAuth: []
|
54792
|
+
- AuthZ:
|
54793
|
+
- cloud_cost_management_write
|
54794
|
+
summary: Create arbitrary cost rule
|
54795
|
+
tags:
|
54796
|
+
- Cloud Cost Management
|
54797
|
+
/api/v2/cost/arbitrary_rule/reorder:
|
54798
|
+
post:
|
54799
|
+
description: "Reorder arbitrary cost rules - Change the execution order of arbitrary
|
54800
|
+
cost rules.\n\n**Important**: You must provide the **complete list** of all
|
54801
|
+
rule IDs in the desired execution order. The API will reorder ALL rules according
|
54802
|
+
to the provided sequence.\n\nRules are executed in the order specified, with
|
54803
|
+
lower indices (earlier in the array) having higher priority.\n\n**Example**:
|
54804
|
+
If you have rules with IDs [123, 456, 789] and want to change order from 123\u2192456\u2192789
|
54805
|
+
to 456\u2192123\u2192789, send: [{\"id\": \"456\"}, {\"id\": \"123\"}, {\"id\":
|
54806
|
+
\"789\"}]"
|
54807
|
+
operationId: ReorderArbitraryCostRules
|
54808
|
+
requestBody:
|
54809
|
+
content:
|
54810
|
+
application/json:
|
54811
|
+
schema:
|
54812
|
+
$ref: '#/components/schemas/ReorderRuleResourceArray'
|
54813
|
+
required: true
|
54814
|
+
responses:
|
54815
|
+
'204':
|
54816
|
+
description: Successfully reordered rules
|
54817
|
+
'429':
|
54818
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
54819
|
+
security:
|
54820
|
+
- apiKeyAuth: []
|
54821
|
+
appKeyAuth: []
|
54822
|
+
- AuthZ:
|
54823
|
+
- cloud_cost_management_write
|
54824
|
+
summary: Reorder arbitrary cost rules
|
54825
|
+
tags:
|
54826
|
+
- Cloud Cost Management
|
54827
|
+
/api/v2/cost/arbitrary_rule/{rule_id}:
|
54828
|
+
delete:
|
54829
|
+
description: Delete an arbitrary cost rule - Delete an existing arbitrary cost
|
54830
|
+
rule by its ID
|
54831
|
+
operationId: DeleteArbitraryCostRule
|
54832
|
+
parameters:
|
54833
|
+
- description: The unique identifier of the arbitrary cost rule
|
54834
|
+
in: path
|
54835
|
+
name: rule_id
|
54836
|
+
required: true
|
54837
|
+
schema:
|
54838
|
+
format: int64
|
54839
|
+
type: integer
|
54840
|
+
responses:
|
54841
|
+
'204':
|
54842
|
+
description: No Content
|
54843
|
+
'429':
|
54844
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
54845
|
+
security:
|
54846
|
+
- apiKeyAuth: []
|
54847
|
+
appKeyAuth: []
|
54848
|
+
- AuthZ:
|
54849
|
+
- cloud_cost_management_write
|
54850
|
+
summary: Delete arbitrary cost rule
|
54851
|
+
tags:
|
54852
|
+
- Cloud Cost Management
|
54853
|
+
get:
|
54854
|
+
description: Get a specific arbitrary cost rule - Retrieve a specific arbitrary
|
54855
|
+
cost rule by its ID
|
54856
|
+
operationId: GetArbitraryCostRule
|
54857
|
+
parameters:
|
54858
|
+
- description: The unique identifier of the arbitrary cost rule
|
54859
|
+
in: path
|
54860
|
+
name: rule_id
|
54861
|
+
required: true
|
54862
|
+
schema:
|
54863
|
+
format: int64
|
54864
|
+
type: integer
|
54865
|
+
responses:
|
54866
|
+
'200':
|
54867
|
+
content:
|
54868
|
+
application/json:
|
54869
|
+
schema:
|
54870
|
+
$ref: '#/components/schemas/ArbitraryRuleResponse'
|
54871
|
+
description: OK
|
54872
|
+
'429':
|
54873
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
54874
|
+
security:
|
54875
|
+
- apiKeyAuth: []
|
54876
|
+
appKeyAuth: []
|
54877
|
+
- AuthZ:
|
54878
|
+
- cloud_cost_management_read
|
54879
|
+
summary: Get arbitrary cost rule
|
54880
|
+
tags:
|
54881
|
+
- Cloud Cost Management
|
54882
|
+
patch:
|
54883
|
+
description: 'Update an existing arbitrary cost rule with new filters and allocation
|
54884
|
+
strategy.
|
54885
|
+
|
54886
|
+
|
54887
|
+
**Strategy Methods:**
|
54888
|
+
|
54889
|
+
- **PROPORTIONAL/EVEN**: Allocates costs proportionally/evenly based on existing
|
54890
|
+
costs. Requires: granularity, allocated_by_tag_keys. Optional: based_on_costs,
|
54891
|
+
allocated_by_filters, evaluate_grouped_by_tag_keys, evaluate_grouped_by_filters.
|
54892
|
+
|
54893
|
+
- **PROPORTIONAL_TIMESERIES/EVEN_TIMESERIES**: Allocates based on timeseries
|
54894
|
+
data. Requires: granularity, based_on_timeseries. Optional: evaluate_grouped_by_tag_keys.
|
54895
|
+
|
54896
|
+
- **PERCENT**: Allocates fixed percentages to specific tags. Requires: allocated_by
|
54897
|
+
(array of percentage allocations).
|
54898
|
+
|
54899
|
+
- **USAGE_METRIC**: Allocates based on usage metrics (implementation varies).
|
54900
|
+
|
54901
|
+
|
54902
|
+
**Filter Conditions:**
|
54903
|
+
|
54904
|
+
- Use **value** for single-value conditions: "is", "is not", "contains", "does
|
54905
|
+
not contain", "=", "!=", "like", "not like", "is all values", "is untagged"
|
54906
|
+
|
54907
|
+
- Use **values** for multi-value conditions: "in", "not in"
|
54908
|
+
|
54909
|
+
- Cannot use both value and values simultaneously.
|
54910
|
+
|
54911
|
+
|
54912
|
+
**Supported operators**: is, is not, is all values, is untagged, contains,
|
54913
|
+
does not contain, in, not in, =, !=, like, not like'
|
54914
|
+
operationId: UpdateArbitraryCostRule
|
54915
|
+
parameters:
|
54916
|
+
- description: The unique identifier of the arbitrary cost rule
|
54917
|
+
in: path
|
54918
|
+
name: rule_id
|
54919
|
+
required: true
|
54920
|
+
schema:
|
54921
|
+
format: int64
|
54922
|
+
type: integer
|
54923
|
+
requestBody:
|
54924
|
+
content:
|
54925
|
+
application/json:
|
54926
|
+
schema:
|
54927
|
+
$ref: '#/components/schemas/ArbitraryCostUpsertRequest'
|
54928
|
+
required: true
|
54929
|
+
responses:
|
54930
|
+
'200':
|
54931
|
+
content:
|
54932
|
+
application/json:
|
54933
|
+
schema:
|
54934
|
+
$ref: '#/components/schemas/ArbitraryRuleResponse'
|
54935
|
+
description: OK
|
54936
|
+
'429':
|
54937
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
54938
|
+
security:
|
54939
|
+
- apiKeyAuth: []
|
54940
|
+
appKeyAuth: []
|
54941
|
+
- AuthZ:
|
54942
|
+
- cloud_cost_management_write
|
54943
|
+
summary: Update arbitrary cost rule
|
54944
|
+
tags:
|
54945
|
+
- Cloud Cost Management
|
52535
54946
|
/api/v2/cost/aws_cur_config:
|
52536
54947
|
get:
|
52537
54948
|
description: List the AWS CUR configs.
|
@@ -52577,7 +54988,7 @@ paths:
|
|
52577
54988
|
content:
|
52578
54989
|
application/json:
|
52579
54990
|
schema:
|
52580
|
-
$ref: '#/components/schemas/
|
54991
|
+
$ref: '#/components/schemas/AwsCurConfigResponse'
|
52581
54992
|
description: OK
|
52582
54993
|
'400':
|
52583
54994
|
content:
|
@@ -52640,6 +55051,34 @@ paths:
|
|
52640
55051
|
operator: OR
|
52641
55052
|
permissions:
|
52642
55053
|
- cloud_cost_management_write
|
55054
|
+
get:
|
55055
|
+
description: Get a specific AWS CUR config.
|
55056
|
+
operationId: GetCostAWSCURConfig
|
55057
|
+
parameters:
|
55058
|
+
- description: The unique identifier of the cloud account
|
55059
|
+
in: path
|
55060
|
+
name: cloud_account_id
|
55061
|
+
required: true
|
55062
|
+
schema:
|
55063
|
+
format: int64
|
55064
|
+
type: integer
|
55065
|
+
responses:
|
55066
|
+
'200':
|
55067
|
+
content:
|
55068
|
+
application/json:
|
55069
|
+
schema:
|
55070
|
+
$ref: '#/components/schemas/AwsCurConfigResponse'
|
55071
|
+
description: OK
|
55072
|
+
'429':
|
55073
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
55074
|
+
security:
|
55075
|
+
- apiKeyAuth: []
|
55076
|
+
appKeyAuth: []
|
55077
|
+
- AuthZ:
|
55078
|
+
- cloud_cost_management_read
|
55079
|
+
summary: Get cost AWS CUR config
|
55080
|
+
tags:
|
55081
|
+
- Cloud Cost Management
|
52643
55082
|
patch:
|
52644
55083
|
description: Update the status (active/archived) and/or account filtering configuration
|
52645
55084
|
of an AWS CUR config.
|
@@ -52793,6 +55232,34 @@ paths:
|
|
52793
55232
|
operator: OR
|
52794
55233
|
permissions:
|
52795
55234
|
- cloud_cost_management_write
|
55235
|
+
get:
|
55236
|
+
description: Get a specific Azure config.
|
55237
|
+
operationId: GetCostAzureUCConfig
|
55238
|
+
parameters:
|
55239
|
+
- description: The unique identifier of the cloud account
|
55240
|
+
in: path
|
55241
|
+
name: cloud_account_id
|
55242
|
+
required: true
|
55243
|
+
schema:
|
55244
|
+
format: int64
|
55245
|
+
type: integer
|
55246
|
+
responses:
|
55247
|
+
'200':
|
55248
|
+
content:
|
55249
|
+
application/json:
|
55250
|
+
schema:
|
55251
|
+
$ref: '#/components/schemas/UCConfigPair'
|
55252
|
+
description: OK
|
55253
|
+
'429':
|
55254
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
55255
|
+
security:
|
55256
|
+
- apiKeyAuth: []
|
55257
|
+
appKeyAuth: []
|
55258
|
+
- AuthZ:
|
55259
|
+
- cloud_cost_management_read
|
55260
|
+
summary: Get cost Azure UC config
|
55261
|
+
tags:
|
55262
|
+
- Cloud Cost Management
|
52796
55263
|
patch:
|
52797
55264
|
description: Update the status of an Azure config (active/archived).
|
52798
55265
|
operationId: UpdateCostAzureUCConfigs
|
@@ -53000,6 +55467,10 @@ paths:
|
|
53000
55467
|
summary: List Custom Costs files
|
53001
55468
|
tags:
|
53002
55469
|
- Cloud Cost Management
|
55470
|
+
x-permission:
|
55471
|
+
operator: OR
|
55472
|
+
permissions:
|
55473
|
+
- cloud_cost_management_read
|
53003
55474
|
put:
|
53004
55475
|
description: Upload a Custom Costs file.
|
53005
55476
|
operationId: UploadCustomCostsFile
|
@@ -53038,6 +55509,10 @@ paths:
|
|
53038
55509
|
summary: Upload Custom Costs file
|
53039
55510
|
tags:
|
53040
55511
|
- Cloud Cost Management
|
55512
|
+
x-permission:
|
55513
|
+
operator: OR
|
55514
|
+
permissions:
|
55515
|
+
- cloud_cost_management_write
|
53041
55516
|
/api/v2/cost/custom_costs/{file_id}:
|
53042
55517
|
delete:
|
53043
55518
|
description: Delete the specified Custom Costs file.
|
@@ -53105,7 +55580,7 @@ paths:
|
|
53105
55580
|
- Cloud Cost Management
|
53106
55581
|
/api/v2/cost/gcp_uc_config:
|
53107
55582
|
get:
|
53108
|
-
description: List the
|
55583
|
+
description: List the Google Cloud Usage Cost configs.
|
53109
55584
|
operationId: ListCostGCPUsageCostConfigs
|
53110
55585
|
responses:
|
53111
55586
|
'200':
|
@@ -53127,7 +55602,7 @@ paths:
|
|
53127
55602
|
appKeyAuth: []
|
53128
55603
|
- AuthZ:
|
53129
55604
|
- cloud_cost_management_read
|
53130
|
-
summary: List Cloud
|
55605
|
+
summary: List Google Cloud Usage Cost configs
|
53131
55606
|
tags:
|
53132
55607
|
- Cloud Cost Management
|
53133
55608
|
x-permission:
|
@@ -53135,7 +55610,8 @@ paths:
|
|
53135
55610
|
permissions:
|
53136
55611
|
- cloud_cost_management_read
|
53137
55612
|
post:
|
53138
|
-
description: Create a Cloud Cost Management account for an
|
55613
|
+
description: Create a Cloud Cost Management account for an Google Cloud Usage
|
55614
|
+
Cost config.
|
53139
55615
|
operationId: CreateCostGCPUsageCostConfig
|
53140
55616
|
requestBody:
|
53141
55617
|
content:
|
@@ -53169,7 +55645,7 @@ paths:
|
|
53169
55645
|
appKeyAuth: []
|
53170
55646
|
- AuthZ:
|
53171
55647
|
- cloud_cost_management_write
|
53172
|
-
summary: Create Cloud
|
55648
|
+
summary: Create Google Cloud Usage Cost config
|
53173
55649
|
tags:
|
53174
55650
|
- Cloud Cost Management
|
53175
55651
|
x-permission:
|
@@ -53204,15 +55680,43 @@ paths:
|
|
53204
55680
|
appKeyAuth: []
|
53205
55681
|
- AuthZ:
|
53206
55682
|
- cloud_cost_management_write
|
53207
|
-
summary: Delete Cloud
|
55683
|
+
summary: Delete Google Cloud Usage Cost config
|
53208
55684
|
tags:
|
53209
55685
|
- Cloud Cost Management
|
53210
55686
|
x-permission:
|
53211
55687
|
operator: OR
|
53212
55688
|
permissions:
|
53213
55689
|
- cloud_cost_management_write
|
55690
|
+
get:
|
55691
|
+
description: Get a specific Google Cloud Usage Cost config.
|
55692
|
+
operationId: GetCostGCPUsageCostConfig
|
55693
|
+
parameters:
|
55694
|
+
- description: The unique identifier of the cloud account
|
55695
|
+
in: path
|
55696
|
+
name: cloud_account_id
|
55697
|
+
required: true
|
55698
|
+
schema:
|
55699
|
+
format: int64
|
55700
|
+
type: integer
|
55701
|
+
responses:
|
55702
|
+
'200':
|
55703
|
+
content:
|
55704
|
+
application/json:
|
55705
|
+
schema:
|
55706
|
+
$ref: '#/components/schemas/GcpUcConfigResponse'
|
55707
|
+
description: OK
|
55708
|
+
'429':
|
55709
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
55710
|
+
security:
|
55711
|
+
- apiKeyAuth: []
|
55712
|
+
appKeyAuth: []
|
55713
|
+
- AuthZ:
|
55714
|
+
- cloud_cost_management_read
|
55715
|
+
summary: Get Google Cloud Usage Cost config
|
55716
|
+
tags:
|
55717
|
+
- Cloud Cost Management
|
53214
55718
|
patch:
|
53215
|
-
description: Update the status of an
|
55719
|
+
description: Update the status of an Google Cloud Usage Cost config (active/archived).
|
53216
55720
|
operationId: UpdateCostGCPUsageCostConfig
|
53217
55721
|
parameters:
|
53218
55722
|
- $ref: '#/components/parameters/CloudAccountID'
|
@@ -53254,7 +55758,7 @@ paths:
|
|
53254
55758
|
appKeyAuth: []
|
53255
55759
|
- AuthZ:
|
53256
55760
|
- cloud_cost_management_write
|
53257
|
-
summary: Update Cloud
|
55761
|
+
summary: Update Google Cloud Usage Cost config
|
53258
55762
|
tags:
|
53259
55763
|
- Cloud Cost Management
|
53260
55764
|
x-permission:
|
@@ -54470,6 +56974,40 @@ paths:
|
|
54470
56974
|
tags:
|
54471
56975
|
- DORA Metrics
|
54472
56976
|
x-codegen-request-body-name: body
|
56977
|
+
/api/v2/dora/deployment/{deployment_id}:
|
56978
|
+
delete:
|
56979
|
+
description: Use this API endpoint to delete a deployment event.
|
56980
|
+
operationId: DeleteDORADeployment
|
56981
|
+
parameters:
|
56982
|
+
- description: The ID of the deployment event to delete.
|
56983
|
+
in: path
|
56984
|
+
name: deployment_id
|
56985
|
+
required: true
|
56986
|
+
schema:
|
56987
|
+
type: string
|
56988
|
+
responses:
|
56989
|
+
'202':
|
56990
|
+
description: Accepted
|
56991
|
+
'400':
|
56992
|
+
content:
|
56993
|
+
application/json:
|
56994
|
+
schema:
|
56995
|
+
$ref: '#/components/schemas/JSONAPIErrorResponse'
|
56996
|
+
description: Bad Request
|
56997
|
+
'403':
|
56998
|
+
$ref: '#/components/responses/NotAuthorizedResponse'
|
56999
|
+
'429':
|
57000
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
57001
|
+
security:
|
57002
|
+
- apiKeyAuth: []
|
57003
|
+
appKeyAuth: []
|
57004
|
+
summary: Delete a deployment event
|
57005
|
+
tags:
|
57006
|
+
- DORA Metrics
|
57007
|
+
x-permission:
|
57008
|
+
operator: OR
|
57009
|
+
permissions:
|
57010
|
+
- dora_metrics_write
|
54473
57011
|
/api/v2/dora/deployments:
|
54474
57012
|
post:
|
54475
57013
|
description: Use this API endpoint to get a list of deployment events.
|
@@ -54538,7 +57076,7 @@ paths:
|
|
54538
57076
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
54539
57077
|
security:
|
54540
57078
|
- apiKeyAuth: []
|
54541
|
-
|
57079
|
+
appKeyAuth: []
|
54542
57080
|
summary: Get a deployment event
|
54543
57081
|
tags:
|
54544
57082
|
- DORA Metrics
|
@@ -54593,6 +57131,40 @@ paths:
|
|
54593
57131
|
tags:
|
54594
57132
|
- DORA Metrics
|
54595
57133
|
x-codegen-request-body-name: body
|
57134
|
+
/api/v2/dora/failure/{failure_id}:
|
57135
|
+
delete:
|
57136
|
+
description: Use this API endpoint to delete a failure event.
|
57137
|
+
operationId: DeleteDORAFailure
|
57138
|
+
parameters:
|
57139
|
+
- description: The ID of the failure event to delete.
|
57140
|
+
in: path
|
57141
|
+
name: failure_id
|
57142
|
+
required: true
|
57143
|
+
schema:
|
57144
|
+
type: string
|
57145
|
+
responses:
|
57146
|
+
'202':
|
57147
|
+
description: Accepted
|
57148
|
+
'400':
|
57149
|
+
content:
|
57150
|
+
application/json:
|
57151
|
+
schema:
|
57152
|
+
$ref: '#/components/schemas/JSONAPIErrorResponse'
|
57153
|
+
description: Bad Request
|
57154
|
+
'403':
|
57155
|
+
$ref: '#/components/responses/NotAuthorizedResponse'
|
57156
|
+
'429':
|
57157
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
57158
|
+
security:
|
57159
|
+
- apiKeyAuth: []
|
57160
|
+
appKeyAuth: []
|
57161
|
+
summary: Delete a failure event
|
57162
|
+
tags:
|
57163
|
+
- DORA Metrics
|
57164
|
+
x-permission:
|
57165
|
+
operator: OR
|
57166
|
+
permissions:
|
57167
|
+
- dora_metrics_write
|
54596
57168
|
/api/v2/dora/failures:
|
54597
57169
|
post:
|
54598
57170
|
description: Use this API endpoint to get a list of failure events.
|
@@ -54661,7 +57233,7 @@ paths:
|
|
54661
57233
|
$ref: '#/components/responses/TooManyRequestsResponse'
|
54662
57234
|
security:
|
54663
57235
|
- apiKeyAuth: []
|
54664
|
-
|
57236
|
+
appKeyAuth: []
|
54665
57237
|
summary: Get a failure event
|
54666
57238
|
tags:
|
54667
57239
|
- DORA Metrics
|
@@ -56351,6 +58923,124 @@ paths:
|
|
56351
58923
|
- incident_write
|
56352
58924
|
x-unstable: '**Note**: This endpoint is in public beta.
|
56353
58925
|
|
58926
|
+
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
|
58927
|
+
/api/v2/incidents/{incident_id}/impacts:
|
58928
|
+
get:
|
58929
|
+
description: Get all impacts for an incident.
|
58930
|
+
operationId: ListIncidentImpacts
|
58931
|
+
parameters:
|
58932
|
+
- $ref: '#/components/parameters/IncidentIDPathParameter'
|
58933
|
+
- $ref: '#/components/parameters/IncidentImpactIncludeQueryParameter'
|
58934
|
+
responses:
|
58935
|
+
'200':
|
58936
|
+
content:
|
58937
|
+
application/json:
|
58938
|
+
schema:
|
58939
|
+
$ref: '#/components/schemas/IncidentImpactsResponse'
|
58940
|
+
description: OK
|
58941
|
+
'400':
|
58942
|
+
$ref: '#/components/responses/BadRequestResponse'
|
58943
|
+
'401':
|
58944
|
+
$ref: '#/components/responses/UnauthorizedResponse'
|
58945
|
+
'403':
|
58946
|
+
$ref: '#/components/responses/ForbiddenResponse'
|
58947
|
+
'404':
|
58948
|
+
$ref: '#/components/responses/NotFoundResponse'
|
58949
|
+
'429':
|
58950
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
58951
|
+
security:
|
58952
|
+
- apiKeyAuth: []
|
58953
|
+
appKeyAuth: []
|
58954
|
+
- AuthZ:
|
58955
|
+
- incident_read
|
58956
|
+
summary: List an incident's impacts
|
58957
|
+
tags:
|
58958
|
+
- Incidents
|
58959
|
+
x-permission:
|
58960
|
+
operator: OR
|
58961
|
+
permissions:
|
58962
|
+
- incident_read
|
58963
|
+
x-unstable: '**Note**: This endpoint is in Preview.
|
58964
|
+
|
58965
|
+
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
|
58966
|
+
post:
|
58967
|
+
description: Create an impact for an incident.
|
58968
|
+
operationId: CreateIncidentImpact
|
58969
|
+
parameters:
|
58970
|
+
- $ref: '#/components/parameters/IncidentIDPathParameter'
|
58971
|
+
- $ref: '#/components/parameters/IncidentImpactIncludeQueryParameter'
|
58972
|
+
requestBody:
|
58973
|
+
content:
|
58974
|
+
application/json:
|
58975
|
+
schema:
|
58976
|
+
$ref: '#/components/schemas/IncidentImpactCreateRequest'
|
58977
|
+
description: Incident impact payload.
|
58978
|
+
required: true
|
58979
|
+
responses:
|
58980
|
+
'201':
|
58981
|
+
content:
|
58982
|
+
application/json:
|
58983
|
+
schema:
|
58984
|
+
$ref: '#/components/schemas/IncidentImpactResponse'
|
58985
|
+
description: CREATED
|
58986
|
+
'400':
|
58987
|
+
$ref: '#/components/responses/BadRequestResponse'
|
58988
|
+
'401':
|
58989
|
+
$ref: '#/components/responses/UnauthorizedResponse'
|
58990
|
+
'403':
|
58991
|
+
$ref: '#/components/responses/ForbiddenResponse'
|
58992
|
+
'404':
|
58993
|
+
$ref: '#/components/responses/NotFoundResponse'
|
58994
|
+
'429':
|
58995
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
58996
|
+
security:
|
58997
|
+
- apiKeyAuth: []
|
58998
|
+
appKeyAuth: []
|
58999
|
+
- AuthZ:
|
59000
|
+
- incident_write
|
59001
|
+
summary: Create an incident impact
|
59002
|
+
tags:
|
59003
|
+
- Incidents
|
59004
|
+
x-codegen-request-body-name: body
|
59005
|
+
x-permission:
|
59006
|
+
operator: OR
|
59007
|
+
permissions:
|
59008
|
+
- incident_write
|
59009
|
+
x-unstable: '**Note**: This endpoint is in Preview.
|
59010
|
+
|
59011
|
+
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
|
59012
|
+
/api/v2/incidents/{incident_id}/impacts/{impact_id}:
|
59013
|
+
delete:
|
59014
|
+
description: Delete an incident impact.
|
59015
|
+
operationId: DeleteIncidentImpact
|
59016
|
+
parameters:
|
59017
|
+
- $ref: '#/components/parameters/IncidentIDPathParameter'
|
59018
|
+
- $ref: '#/components/parameters/IncidentImpactIDPathParameter'
|
59019
|
+
responses:
|
59020
|
+
'204':
|
59021
|
+
description: No Content
|
59022
|
+
'401':
|
59023
|
+
$ref: '#/components/responses/UnauthorizedResponse'
|
59024
|
+
'403':
|
59025
|
+
$ref: '#/components/responses/ForbiddenResponse'
|
59026
|
+
'404':
|
59027
|
+
$ref: '#/components/responses/NotFoundResponse'
|
59028
|
+
'429':
|
59029
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
59030
|
+
security:
|
59031
|
+
- apiKeyAuth: []
|
59032
|
+
appKeyAuth: []
|
59033
|
+
- AuthZ:
|
59034
|
+
- incident_write
|
59035
|
+
summary: Delete an incident impact
|
59036
|
+
tags:
|
59037
|
+
- Incidents
|
59038
|
+
x-permission:
|
59039
|
+
operator: OR
|
59040
|
+
permissions:
|
59041
|
+
- incident_write
|
59042
|
+
x-unstable: '**Note**: This endpoint is in Preview.
|
59043
|
+
|
56354
59044
|
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
|
56355
59045
|
/api/v2/incidents/{incident_id}/relationships/integrations:
|
56356
59046
|
get:
|
@@ -56954,6 +59644,39 @@ paths:
|
|
56954
59644
|
summary: Get AWS integration IAM permissions
|
56955
59645
|
tags:
|
56956
59646
|
- AWS Integration
|
59647
|
+
/api/v2/integration/aws/iam_permissions/resource_collection:
|
59648
|
+
get:
|
59649
|
+
description: Get all resource collection AWS IAM permissions required for the
|
59650
|
+
AWS integration.
|
59651
|
+
operationId: GetAWSIntegrationIAMPermissionsResourceCollection
|
59652
|
+
responses:
|
59653
|
+
'200':
|
59654
|
+
content:
|
59655
|
+
application/json:
|
59656
|
+
schema:
|
59657
|
+
$ref: '#/components/schemas/AWSIntegrationIamPermissionsResponse'
|
59658
|
+
description: AWS integration resource collection IAM permissions.
|
59659
|
+
'429':
|
59660
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
59661
|
+
summary: Get resource collection IAM permissions
|
59662
|
+
tags:
|
59663
|
+
- AWS Integration
|
59664
|
+
/api/v2/integration/aws/iam_permissions/standard:
|
59665
|
+
get:
|
59666
|
+
description: Get all standard AWS IAM permissions required for the AWS integration.
|
59667
|
+
operationId: GetAWSIntegrationIAMPermissionsStandard
|
59668
|
+
responses:
|
59669
|
+
'200':
|
59670
|
+
content:
|
59671
|
+
application/json:
|
59672
|
+
schema:
|
59673
|
+
$ref: '#/components/schemas/AWSIntegrationIamPermissionsResponse'
|
59674
|
+
description: AWS integration standard IAM permissions.
|
59675
|
+
'429':
|
59676
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
59677
|
+
summary: Get AWS integration standard IAM permissions
|
59678
|
+
tags:
|
59679
|
+
- AWS Integration
|
56957
59680
|
/api/v2/integration/aws/logs/services:
|
56958
59681
|
get:
|
56959
59682
|
description: Get a list of AWS services that can send logs to Datadog.
|
@@ -67341,6 +70064,13 @@ paths:
|
|
67341
70064
|
get:
|
67342
70065
|
description: Get the list of all suppression rules.
|
67343
70066
|
operationId: ListSecurityMonitoringSuppressions
|
70067
|
+
parameters:
|
70068
|
+
- description: Query string.
|
70069
|
+
in: query
|
70070
|
+
name: query
|
70071
|
+
required: false
|
70072
|
+
schema:
|
70073
|
+
type: string
|
67344
70074
|
responses:
|
67345
70075
|
'200':
|
67346
70076
|
content:
|
@@ -70077,6 +72807,194 @@ paths:
|
|
70077
72807
|
operator: OR
|
70078
72808
|
permissions:
|
70079
72809
|
- billing_edit
|
72810
|
+
/api/v2/tags/enrichment:
|
72811
|
+
get:
|
72812
|
+
description: List all tag pipeline rulesets - Retrieve a list of all tag pipeline
|
72813
|
+
rulesets for the organization
|
72814
|
+
operationId: ListRulesets
|
72815
|
+
responses:
|
72816
|
+
'200':
|
72817
|
+
content:
|
72818
|
+
application/json:
|
72819
|
+
schema:
|
72820
|
+
$ref: '#/components/schemas/RulesetRespArray'
|
72821
|
+
description: OK
|
72822
|
+
'429':
|
72823
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
72824
|
+
security:
|
72825
|
+
- apiKeyAuth: []
|
72826
|
+
appKeyAuth: []
|
72827
|
+
- AuthZ:
|
72828
|
+
- cloud_cost_management_read
|
72829
|
+
summary: List rulesets
|
72830
|
+
tags:
|
72831
|
+
- Cloud Cost Management
|
72832
|
+
post:
|
72833
|
+
description: Create a new tag pipeline ruleset with the specified rules and
|
72834
|
+
configuration
|
72835
|
+
operationId: CreateRuleset
|
72836
|
+
requestBody:
|
72837
|
+
content:
|
72838
|
+
application/json:
|
72839
|
+
schema:
|
72840
|
+
$ref: '#/components/schemas/CreateRulesetRequest'
|
72841
|
+
required: true
|
72842
|
+
responses:
|
72843
|
+
'200':
|
72844
|
+
content:
|
72845
|
+
application/json:
|
72846
|
+
schema:
|
72847
|
+
$ref: '#/components/schemas/RulesetResp'
|
72848
|
+
description: OK
|
72849
|
+
'429':
|
72850
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
72851
|
+
security:
|
72852
|
+
- apiKeyAuth: []
|
72853
|
+
appKeyAuth: []
|
72854
|
+
- AuthZ:
|
72855
|
+
- cloud_cost_management_write
|
72856
|
+
summary: Create ruleset
|
72857
|
+
tags:
|
72858
|
+
- Cloud Cost Management
|
72859
|
+
/api/v2/tags/enrichment/reorder:
|
72860
|
+
post:
|
72861
|
+
description: Reorder tag pipeline rulesets - Change the execution order of tag
|
72862
|
+
pipeline rulesets
|
72863
|
+
operationId: ReorderRulesets
|
72864
|
+
requestBody:
|
72865
|
+
content:
|
72866
|
+
application/json:
|
72867
|
+
schema:
|
72868
|
+
$ref: '#/components/schemas/ReorderRulesetResourceArray'
|
72869
|
+
required: true
|
72870
|
+
responses:
|
72871
|
+
'204':
|
72872
|
+
description: Successfully reordered rulesets
|
72873
|
+
'429':
|
72874
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
72875
|
+
security:
|
72876
|
+
- apiKeyAuth: []
|
72877
|
+
appKeyAuth: []
|
72878
|
+
- AuthZ:
|
72879
|
+
- cloud_cost_management_write
|
72880
|
+
summary: Reorder rulesets
|
72881
|
+
tags:
|
72882
|
+
- Cloud Cost Management
|
72883
|
+
/api/v2/tags/enrichment/validate-query:
|
72884
|
+
post:
|
72885
|
+
description: Validate a tag pipeline query - Validate the syntax and structure
|
72886
|
+
of a tag pipeline query
|
72887
|
+
operationId: ValidateQuery
|
72888
|
+
requestBody:
|
72889
|
+
content:
|
72890
|
+
application/json:
|
72891
|
+
schema:
|
72892
|
+
$ref: '#/components/schemas/RulesValidateQueryRequest'
|
72893
|
+
required: true
|
72894
|
+
responses:
|
72895
|
+
'200':
|
72896
|
+
content:
|
72897
|
+
application/json:
|
72898
|
+
schema:
|
72899
|
+
$ref: '#/components/schemas/RulesValidateQueryResponse'
|
72900
|
+
description: OK
|
72901
|
+
'429':
|
72902
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
72903
|
+
security:
|
72904
|
+
- apiKeyAuth: []
|
72905
|
+
appKeyAuth: []
|
72906
|
+
- AuthZ:
|
72907
|
+
- cloud_cost_management_read
|
72908
|
+
summary: Validate query
|
72909
|
+
tags:
|
72910
|
+
- Cloud Cost Management
|
72911
|
+
/api/v2/tags/enrichment/{ruleset_id}:
|
72912
|
+
delete:
|
72913
|
+
description: Delete a tag pipeline ruleset - Delete an existing tag pipeline
|
72914
|
+
ruleset by its ID
|
72915
|
+
operationId: DeleteRuleset
|
72916
|
+
parameters:
|
72917
|
+
- description: The unique identifier of the ruleset
|
72918
|
+
in: path
|
72919
|
+
name: ruleset_id
|
72920
|
+
required: true
|
72921
|
+
schema:
|
72922
|
+
type: string
|
72923
|
+
responses:
|
72924
|
+
'204':
|
72925
|
+
description: No Content
|
72926
|
+
'429':
|
72927
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
72928
|
+
security:
|
72929
|
+
- apiKeyAuth: []
|
72930
|
+
appKeyAuth: []
|
72931
|
+
- AuthZ:
|
72932
|
+
- cloud_cost_management_write
|
72933
|
+
summary: Delete ruleset
|
72934
|
+
tags:
|
72935
|
+
- Cloud Cost Management
|
72936
|
+
get:
|
72937
|
+
description: Get a specific tag pipeline ruleset - Retrieve a specific tag pipeline
|
72938
|
+
ruleset by its ID
|
72939
|
+
operationId: GetRuleset
|
72940
|
+
parameters:
|
72941
|
+
- description: The unique identifier of the ruleset
|
72942
|
+
in: path
|
72943
|
+
name: ruleset_id
|
72944
|
+
required: true
|
72945
|
+
schema:
|
72946
|
+
type: string
|
72947
|
+
responses:
|
72948
|
+
'200':
|
72949
|
+
content:
|
72950
|
+
application/json:
|
72951
|
+
schema:
|
72952
|
+
$ref: '#/components/schemas/RulesetResp'
|
72953
|
+
description: OK
|
72954
|
+
'429':
|
72955
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
72956
|
+
security:
|
72957
|
+
- apiKeyAuth: []
|
72958
|
+
appKeyAuth: []
|
72959
|
+
- AuthZ:
|
72960
|
+
- cloud_cost_management_read
|
72961
|
+
summary: Get ruleset
|
72962
|
+
tags:
|
72963
|
+
- Cloud Cost Management
|
72964
|
+
patch:
|
72965
|
+
description: Update a tag pipeline ruleset - Update an existing tag pipeline
|
72966
|
+
ruleset with new rules and configuration
|
72967
|
+
operationId: UpdateRuleset
|
72968
|
+
parameters:
|
72969
|
+
- description: The unique identifier of the ruleset
|
72970
|
+
in: path
|
72971
|
+
name: ruleset_id
|
72972
|
+
required: true
|
72973
|
+
schema:
|
72974
|
+
type: string
|
72975
|
+
requestBody:
|
72976
|
+
content:
|
72977
|
+
application/json:
|
72978
|
+
schema:
|
72979
|
+
$ref: '#/components/schemas/UpdateRulesetRequest'
|
72980
|
+
required: true
|
72981
|
+
responses:
|
72982
|
+
'200':
|
72983
|
+
content:
|
72984
|
+
application/json:
|
72985
|
+
schema:
|
72986
|
+
$ref: '#/components/schemas/RulesetResp'
|
72987
|
+
description: OK
|
72988
|
+
'429':
|
72989
|
+
$ref: '#/components/responses/TooManyRequestsResponse'
|
72990
|
+
security:
|
72991
|
+
- apiKeyAuth: []
|
72992
|
+
appKeyAuth: []
|
72993
|
+
- AuthZ:
|
72994
|
+
- cloud_cost_management_write
|
72995
|
+
summary: Update ruleset
|
72996
|
+
tags:
|
72997
|
+
- Cloud Cost Management
|
70080
72998
|
/api/v2/team:
|
70081
72999
|
get:
|
70082
73000
|
description: 'Get all teams.
|
@@ -72950,8 +75868,8 @@ tags:
|
|
72950
75868
|
for more information.
|
72951
75869
|
name: Case Management
|
72952
75870
|
- description: The Cloud Cost Management API allows you to set up, edit, and delete
|
72953
|
-
Cloud Cost Management accounts for AWS, Azure, and
|
72954
|
-
data by using the [Metrics endpoint](https://docs.datadoghq.com/api/latest/metrics/#query-timeseries-data-across-multiple-products)
|
75871
|
+
Cloud Cost Management accounts for AWS, Azure, and Google Cloud. You can query
|
75872
|
+
your cost data by using the [Metrics endpoint](https://docs.datadoghq.com/api/latest/metrics/#query-timeseries-data-across-multiple-products)
|
72955
75873
|
and the `cloud_cost` data source. For more information, see the [Cloud Cost Management
|
72956
75874
|
documentation](https://docs.datadoghq.com/cloud_cost_management/).
|
72957
75875
|
name: Cloud Cost Management
|
@@ -72976,8 +75894,8 @@ tags:
|
|
72976
75894
|
See the [Container Monitoring page](https://docs.datadoghq.com/containers/) for
|
72977
75895
|
more information.
|
72978
75896
|
name: Containers
|
72979
|
-
- description: 'Search or
|
72980
|
-
software delivery performance. See the [DORA Metrics page](https://docs.datadoghq.com/dora_metrics/)
|
75897
|
+
- description: 'Search, send, or delete events for DORA Metrics to measure and improve
|
75898
|
+
your software delivery performance. See the [DORA Metrics page](https://docs.datadoghq.com/dora_metrics/)
|
72981
75899
|
for more information.
|
72982
75900
|
|
72983
75901
|
|