Skip to content

Commit

Permalink
Regenerate client from commit 83154a77 of spec repo
Browse files Browse the repository at this point in the history
  • Loading branch information
ci.datadog-api-spec committed Nov 21, 2023
1 parent a6dfeb3 commit a4f5375
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
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.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"
}
}
}
5 changes: 5 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,15 @@ class SensitiveDataScannerStandardPatternAttributes(ModelNormal):
def openapi_types(_):
return {
"description": (str,),
"included_keywords": ([str],),
"name": (str,),
"pattern": (str,),
"tags": ([str],),
}

attribute_map = {
"description": "description",
"included_keywords": "included_keywords",
"name": "name",
"pattern": "pattern",
"tags": "tags",
Expand All @@ -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,
Expand All @@ -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
Expand All @@ -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:
Expand Down

0 comments on commit a4f5375

Please sign in to comment.