Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add CSPM to usage attribution #518

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.4.1.dev11",
"regenerated": "2021-07-16 07:35:29.024585",
"spec_repo_commit": "3333df2"
"regenerated": "2021-07-16 09:09:54.190870",
"spec_repo_commit": "a499a64"
},
"v2": {
"apigentools_version": "1.4.1.dev11",
"regenerated": "2021-07-16 07:35:56.451726",
"spec_repo_commit": "3333df2"
"regenerated": "2021-07-16 09:10:19.594082",
"spec_repo_commit": "a499a64"
}
}
}
4 changes: 4 additions & 0 deletions docs/v1/UsageAttributionValues.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ Name | Type | Description | Notes
**browser_usage** | **float** | The synthetic browser test usage by tag(s). | [optional]
**container_percentage** | **float** | The percentage of container usage by tag(s). | [optional]
**container_usage** | **float** | The container usage by tag(s). | [optional]
**cspm_container_percentage** | **float** | The percentage of Cloud Security Posture Management container usage by tag(s) | [optional]
**cspm_container_usage** | **float** | The Cloud Security Posture Management container usage by tag(s) | [optional]
**cspm_host_percentage** | **float** | The percentage of Cloud Security Posture Management host usage by tag(s) | [optional]
**cspm_host_usage** | **float** | The Cloud Security Posture Management host usage by tag(s) | [optional]
**custom_timeseries_percentage** | **float** | The percentage of custom metrics usage by tag(s). | [optional]
**custom_timeseries_usage** | **float** | The custom metrics usage by tag(s). | [optional]
**cws_container_percentage** | **float** | The percentage of Cloud Workload Security container usage by tag(s) | [optional]
Expand Down
12 changes: 12 additions & 0 deletions src/datadog_api_client/v1/model/usage_attribution_values.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,10 @@ def openapi_types():
"browser_usage": (float,), # noqa: E501
"container_percentage": (float,), # noqa: E501
"container_usage": (float,), # noqa: E501
"cspm_container_percentage": (float,), # noqa: E501
"cspm_container_usage": (float,), # noqa: E501
"cspm_host_percentage": (float,), # noqa: E501
"cspm_host_usage": (float,), # noqa: E501
"custom_timeseries_percentage": (float,), # noqa: E501
"custom_timeseries_usage": (float,), # noqa: E501
"cws_container_percentage": (float,), # noqa: E501
Expand Down Expand Up @@ -110,6 +114,10 @@ def discriminator():
"browser_usage": "browser_usage", # noqa: E501
"container_percentage": "container_percentage", # noqa: E501
"container_usage": "container_usage", # noqa: E501
"cspm_container_percentage": "cspm_container_percentage", # noqa: E501
"cspm_container_usage": "cspm_container_usage", # noqa: E501
"cspm_host_percentage": "cspm_host_percentage", # noqa: E501
"cspm_host_usage": "cspm_host_usage", # noqa: E501
"custom_timeseries_percentage": "custom_timeseries_percentage", # noqa: E501
"custom_timeseries_usage": "custom_timeseries_usage", # noqa: E501
"cws_container_percentage": "cws_container_percentage", # noqa: E501
Expand Down Expand Up @@ -190,6 +198,10 @@ def __init__(self, *args, **kwargs): # noqa: E501
browser_usage (float): The synthetic browser test usage by tag(s).. [optional] # noqa: E501
container_percentage (float): The percentage of container usage by tag(s).. [optional] # noqa: E501
container_usage (float): The container usage by tag(s).. [optional] # noqa: E501
cspm_container_percentage (float): The percentage of Cloud Security Posture Management container usage by tag(s). [optional] # noqa: E501
cspm_container_usage (float): The Cloud Security Posture Management container usage by tag(s). [optional] # noqa: E501
cspm_host_percentage (float): The percentage of Cloud Security Posture Management host usage by tag(s). [optional] # noqa: E501
cspm_host_usage (float): The Cloud Security Posture Management host usage by tag(s). [optional] # noqa: E501
custom_timeseries_percentage (float): The percentage of custom metrics usage by tag(s).. [optional] # noqa: E501
custom_timeseries_usage (float): The custom metrics usage by tag(s).. [optional] # noqa: E501
cws_container_percentage (float): The percentage of Cloud Workload Security container usage by tag(s). [optional] # noqa: E501
Expand Down
18 changes: 18 additions & 0 deletions src/datadog_api_client/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10926,6 +10926,24 @@ components:
description: The container usage by tag(s).
format: double
type: number
cspm_container_percentage:
description: The percentage of Cloud Security Posture Management container
usage by tag(s)
format: double
type: number
cspm_container_usage:
description: The Cloud Security Posture Management container usage by tag(s)
format: double
type: number
cspm_host_percentage:
description: The percentage of Cloud Security Posture Management host usage
by tag(s)
format: double
type: number
cspm_host_usage:
description: The Cloud Security Posture Management host usage by tag(s)
format: double
type: number
custom_timeseries_percentage:
description: The percentage of custom metrics usage by tag(s).
format: double
Expand Down