Skip to content

Commit

Permalink
Regenerate client from commit 7e3beef8 of spec repo
Browse files Browse the repository at this point in the history
  • Loading branch information
ci.datadog-api-spec committed Jan 31, 2025
1 parent a4bc820 commit 840f162
Show file tree
Hide file tree
Showing 39 changed files with 147 additions and 145 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": "2025-01-29 14:55:52.778358",
"spec_repo_commit": "14f5d952"
"regenerated": "2025-01-31 03:37:27.101778",
"spec_repo_commit": "7e3beef8"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2025-01-29 14:55:52.793962",
"spec_repo_commit": "14f5d952"
"regenerated": "2025-01-31 03:37:27.116040",
"spec_repo_commit": "7e3beef8"
}
}
}
44 changes: 22 additions & 22 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7307,8 +7307,8 @@ components:
type: gridCell
type: grid
description: This is a simple example app
embeddedQueries: []
name: Example App
queries: []
rootInstanceName: grid0
type: appDefinitions
properties:
Expand Down Expand Up @@ -7336,15 +7336,15 @@ components:
description:
description: A human-readable description for the app.
type: string
embeddedQueries:
name:
description: The name of the app.
type: string
queries:
description: An array of queries, such as external actions and state variables,
that the app uses.
items:
$ref: '#/components/schemas/Query'
type: array
name:
description: The name of the app.
type: string
rootInstanceName:
description: The name of the root component of the app. This must be a `grid`
component that contains all other components.
Expand Down Expand Up @@ -12411,18 +12411,18 @@ components:
description:
description: A human-readable description for the app.
type: string
embeddedQueries:
description: An array of queries, such as external actions and state variables,
that the app uses.
items:
$ref: '#/components/schemas/Query'
type: array
favorite:
description: Whether the app is marked as a favorite by the current user.
type: boolean
name:
description: The name of the app.
type: string
queries:
description: An array of queries, such as external actions and state variables,
that the app uses.
items:
$ref: '#/components/schemas/Query'
type: array
rootInstanceName:
description: The name of the root component of the app. This must be a `grid`
component that contains all other components.
Expand Down Expand Up @@ -29505,8 +29505,8 @@ components:
type: gridCell
type: grid
description: This is a simple example app
embeddedQueries: []
name: Example App
queries: []
rootInstanceName: grid0
id: 9e20cbaf-68da-45a6-9ccf-54193ac29fa5
type: appDefinitions
Expand Down Expand Up @@ -29545,16 +29545,16 @@ components:
description:
description: The new human-readable description for the app.
type: string
embeddedQueries:
name:
description: The new name of the app.
type: string
queries:
description: The new array of queries, such as external actions and state
variables, that the app uses. If this field is set, all existing queries
are replaced with the new queries under this field.
items:
$ref: '#/components/schemas/Query'
type: array
name:
description: The new name of the app.
type: string
rootInstanceName:
description: The new name of the root component of the app. This must be
a `grid` component that contains all other components.
Expand Down Expand Up @@ -29615,18 +29615,18 @@ components:
description:
description: The human-readable description for the app.
type: string
embeddedQueries:
description: An array of queries, such as external actions and state variables,
that the app uses.
items:
$ref: '#/components/schemas/Query'
type: array
favorite:
description: Whether the app is marked as a favorite by the current user.
type: boolean
name:
description: The name of the app.
type: string
queries:
description: An array of queries, such as external actions and state variables,
that the app uses.
items:
$ref: '#/components/schemas/Query'
type: array
rootInstanceName:
description: The name of the root component of the app. This must be a `grid`
component that contains all other components.
Expand Down
2 changes: 1 addition & 1 deletion examples/v2/app-builder/CreateApp.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
),
],
description="This is a simple example app",
embedded_queries=[],
queries=[],
name="Example App",
root_instance_name="grid0",
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,17 @@ def openapi_types(_):
return {
"components": ([ComponentGrid],),
"description": (str,),
"embedded_queries": ([Query],),
"name": (str,),
"queries": ([Query],),
"root_instance_name": (str,),
"tags": ([str],),
}

attribute_map = {
"components": "components",
"description": "description",
"embedded_queries": "embeddedQueries",
"name": "name",
"queries": "queries",
"root_instance_name": "rootInstanceName",
"tags": "tags",
}
Expand All @@ -46,8 +46,8 @@ def __init__(
self_,
components: Union[List[ComponentGrid], UnsetType] = unset,
description: Union[str, UnsetType] = unset,
embedded_queries: Union[List[Query], UnsetType] = unset,
name: Union[str, UnsetType] = unset,
queries: Union[List[Query], UnsetType] = unset,
root_instance_name: Union[str, UnsetType] = unset,
tags: Union[List[str], UnsetType] = unset,
**kwargs,
Expand All @@ -61,12 +61,12 @@ def __init__(
:param description: A human-readable description for the app.
:type description: str, optional
:param embedded_queries: An array of queries, such as external actions and state variables, that the app uses.
:type embedded_queries: [Query], optional
:param name: The name of the app.
:type name: str, optional
:param queries: An array of queries, such as external actions and state variables, that the app uses.
:type queries: [Query], optional
:param root_instance_name: The name of the root component of the app. This must be a ``grid`` component that contains all other components.
:type root_instance_name: str, optional
Expand All @@ -77,10 +77,10 @@ def __init__(
kwargs["components"] = components
if description is not unset:
kwargs["description"] = description
if embedded_queries is not unset:
kwargs["embedded_queries"] = embedded_queries
if name is not unset:
kwargs["name"] = name
if queries is not unset:
kwargs["queries"] = queries
if root_instance_name is not unset:
kwargs["root_instance_name"] = root_instance_name
if tags is not unset:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,19 @@ def openapi_types(_):
return {
"components": ([ComponentGrid],),
"description": (str,),
"embedded_queries": ([Query],),
"favorite": (bool,),
"name": (str,),
"queries": ([Query],),
"root_instance_name": (str,),
"tags": ([str],),
}

attribute_map = {
"components": "components",
"description": "description",
"embedded_queries": "embeddedQueries",
"favorite": "favorite",
"name": "name",
"queries": "queries",
"root_instance_name": "rootInstanceName",
"tags": "tags",
}
Expand All @@ -48,9 +48,9 @@ def __init__(
self_,
components: Union[List[ComponentGrid], UnsetType] = unset,
description: Union[str, UnsetType] = unset,
embedded_queries: Union[List[Query], UnsetType] = unset,
favorite: Union[bool, UnsetType] = unset,
name: Union[str, UnsetType] = unset,
queries: Union[List[Query], UnsetType] = unset,
root_instance_name: Union[str, UnsetType] = unset,
tags: Union[List[str], UnsetType] = unset,
**kwargs,
Expand All @@ -64,15 +64,15 @@ def __init__(
:param description: A human-readable description for the app.
:type description: str, optional
:param embedded_queries: An array of queries, such as external actions and state variables, that the app uses.
:type embedded_queries: [Query], optional
:param favorite: Whether the app is marked as a favorite by the current user.
:type favorite: bool, optional
:param name: The name of the app.
:type name: str, optional
:param queries: An array of queries, such as external actions and state variables, that the app uses.
:type queries: [Query], optional
:param root_instance_name: The name of the root component of the app. This must be a ``grid`` component that contains all other components.
:type root_instance_name: str, optional
Expand All @@ -83,12 +83,12 @@ def __init__(
kwargs["components"] = components
if description is not unset:
kwargs["description"] = description
if embedded_queries is not unset:
kwargs["embedded_queries"] = embedded_queries
if favorite is not unset:
kwargs["favorite"] = favorite
if name is not unset:
kwargs["name"] = name
if queries is not unset:
kwargs["queries"] = queries
if root_instance_name is not unset:
kwargs["root_instance_name"] = root_instance_name
if tags is not unset:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,17 @@ def openapi_types(_):
return {
"components": ([ComponentGrid],),
"description": (str,),
"embedded_queries": ([Query],),
"name": (str,),
"queries": ([Query],),
"root_instance_name": (str,),
"tags": ([str],),
}

attribute_map = {
"components": "components",
"description": "description",
"embedded_queries": "embeddedQueries",
"name": "name",
"queries": "queries",
"root_instance_name": "rootInstanceName",
"tags": "tags",
}
Expand All @@ -46,8 +46,8 @@ def __init__(
self_,
components: Union[List[ComponentGrid], UnsetType] = unset,
description: Union[str, UnsetType] = unset,
embedded_queries: Union[List[Query], UnsetType] = unset,
name: Union[str, UnsetType] = unset,
queries: Union[List[Query], UnsetType] = unset,
root_instance_name: Union[str, UnsetType] = unset,
tags: Union[List[str], UnsetType] = unset,
**kwargs,
Expand All @@ -61,12 +61,12 @@ def __init__(
:param description: The new human-readable description for the app.
:type description: str, optional
:param embedded_queries: The new array of queries, such as external actions and state variables, that the app uses. If this field is set, all existing queries are replaced with the new queries under this field.
:type embedded_queries: [Query], optional
:param name: The new name of the app.
:type name: str, optional
:param queries: The new array of queries, such as external actions and state variables, that the app uses. If this field is set, all existing queries are replaced with the new queries under this field.
:type queries: [Query], optional
:param root_instance_name: The new name of the root component of the app. This must be a ``grid`` component that contains all other components.
:type root_instance_name: str, optional
Expand All @@ -77,10 +77,10 @@ def __init__(
kwargs["components"] = components
if description is not unset:
kwargs["description"] = description
if embedded_queries is not unset:
kwargs["embedded_queries"] = embedded_queries
if name is not unset:
kwargs["name"] = name
if queries is not unset:
kwargs["queries"] = queries
if root_instance_name is not unset:
kwargs["root_instance_name"] = root_instance_name
if tags is not unset:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,19 @@ def openapi_types(_):
return {
"components": ([ComponentGrid],),
"description": (str,),
"embedded_queries": ([Query],),
"favorite": (bool,),
"name": (str,),
"queries": ([Query],),
"root_instance_name": (str,),
"tags": ([str],),
}

attribute_map = {
"components": "components",
"description": "description",
"embedded_queries": "embeddedQueries",
"favorite": "favorite",
"name": "name",
"queries": "queries",
"root_instance_name": "rootInstanceName",
"tags": "tags",
}
Expand All @@ -48,9 +48,9 @@ def __init__(
self_,
components: Union[List[ComponentGrid], UnsetType] = unset,
description: Union[str, UnsetType] = unset,
embedded_queries: Union[List[Query], UnsetType] = unset,
favorite: Union[bool, UnsetType] = unset,
name: Union[str, UnsetType] = unset,
queries: Union[List[Query], UnsetType] = unset,
root_instance_name: Union[str, UnsetType] = unset,
tags: Union[List[str], UnsetType] = unset,
**kwargs,
Expand All @@ -64,15 +64,15 @@ def __init__(
:param description: The human-readable description for the app.
:type description: str, optional
:param embedded_queries: An array of queries, such as external actions and state variables, that the app uses.
:type embedded_queries: [Query], optional
:param favorite: Whether the app is marked as a favorite by the current user.
:type favorite: bool, optional
:param name: The name of the app.
:type name: str, optional
:param queries: An array of queries, such as external actions and state variables, that the app uses.
:type queries: [Query], optional
:param root_instance_name: The name of the root component of the app. This must be a ``grid`` component that contains all other components.
:type root_instance_name: str, optional
Expand All @@ -83,12 +83,12 @@ def __init__(
kwargs["components"] = components
if description is not unset:
kwargs["description"] = description
if embedded_queries is not unset:
kwargs["embedded_queries"] = embedded_queries
if favorite is not unset:
kwargs["favorite"] = favorite
if name is not unset:
kwargs["name"] = name
if queries is not unset:
kwargs["queries"] = queries
if root_instance_name is not unset:
kwargs["root_instance_name"] = root_instance_name
if tags is not unset:
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2025-01-09T20:40:37.253Z
2025-01-30T22:30:41.653Z
Loading

0 comments on commit 840f162

Please sign in to comment.