From a4f537507bd2bb656e97c1573305da34d6b21fc5 Mon Sep 17 00:00:00 2001 From: "ci.datadog-api-spec" Date: Tue, 21 Nov 2023 19:37:10 +0000 Subject: [PATCH] Regenerate client from commit 83154a77 of spec repo --- .apigentools-info | 8 ++++---- .generator/schemas/v2/openapi.yaml | 5 +++++ .../sensitive_data_scanner_standard_pattern_attributes.py | 8 ++++++++ 3 files changed, 17 insertions(+), 4 deletions(-) diff --git a/.apigentools-info b/.apigentools-info index 329482e24e..38662d2264 100644 --- a/.apigentools-info +++ b/.apigentools-info @@ -4,13 +4,13 @@ "spec_versions": { "v1": { "apigentools_version": "1.6.6", - "regenerated": "2023-11-21 17:52:58.710741", - "spec_repo_commit": "d902bcbc" + "regenerated": "2023-11-21 19:36:29.340936", + "spec_repo_commit": "83154a77" }, "v2": { "apigentools_version": "1.6.6", - "regenerated": "2023-11-21 17:52:58.725388", - "spec_repo_commit": "d902bcbc" + "regenerated": "2023-11-21 19:36:29.357035", + "spec_repo_commit": "83154a77" } } } \ No newline at end of file diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index 8266f8d0d2..e5fcc05eec 100644 --- a/.generator/schemas/v2/openapi.yaml +++ b/.generator/schemas/v2/openapi.yaml @@ -16315,6 +16315,11 @@ components: description: description: Description of the standard pattern. type: string + included_keywords: + description: List of included keywords. + items: + type: string + type: array name: description: Name of the standard pattern. type: string diff --git a/src/datadog_api_client/v2/model/sensitive_data_scanner_standard_pattern_attributes.py b/src/datadog_api_client/v2/model/sensitive_data_scanner_standard_pattern_attributes.py index 6d0b8bd0c3..2295c39895 100644 --- a/src/datadog_api_client/v2/model/sensitive_data_scanner_standard_pattern_attributes.py +++ b/src/datadog_api_client/v2/model/sensitive_data_scanner_standard_pattern_attributes.py @@ -18,6 +18,7 @@ class SensitiveDataScannerStandardPatternAttributes(ModelNormal): def openapi_types(_): return { "description": (str,), + "included_keywords": ([str],), "name": (str,), "pattern": (str,), "tags": ([str],), @@ -25,6 +26,7 @@ def openapi_types(_): attribute_map = { "description": "description", + "included_keywords": "included_keywords", "name": "name", "pattern": "pattern", "tags": "tags", @@ -33,6 +35,7 @@ def openapi_types(_): def __init__( self_, description: Union[str, UnsetType] = unset, + included_keywords: Union[List[str], UnsetType] = unset, name: Union[str, UnsetType] = unset, pattern: Union[str, UnsetType] = unset, tags: Union[List[str], UnsetType] = unset, @@ -44,6 +47,9 @@ def __init__( :param description: Description of the standard pattern. :type description: str, optional + :param included_keywords: List of included keywords. + :type included_keywords: [str], optional + :param name: Name of the standard pattern. :type name: str, optional @@ -55,6 +61,8 @@ def __init__( """ if description is not unset: kwargs["description"] = description + if included_keywords is not unset: + kwargs["included_keywords"] = included_keywords if name is not unset: kwargs["name"] = name if pattern is not unset: