@@ -27,6 +27,19 @@ def openapi_types(_):
2727 from datadog_api_client .v2 .model .input_schema_parameters_type import InputSchemaParametersType
2828
2929 return {
30+ "allow_extra_values" : (bool ,),
31+ "allowed_values" : (
32+ bool ,
33+ date ,
34+ datetime ,
35+ dict ,
36+ float ,
37+ int ,
38+ list ,
39+ str ,
40+ UUID ,
41+ none_type ,
42+ ),
3043 "default_value" : (
3144 bool ,
3245 date ,
@@ -46,6 +59,8 @@ def openapi_types(_):
4659 }
4760
4861 attribute_map = {
62+ "allow_extra_values" : "allowExtraValues" ,
63+ "allowed_values" : "allowedValues" ,
4964 "default_value" : "defaultValue" ,
5065 "description" : "description" ,
5166 "label" : "label" ,
@@ -57,6 +72,8 @@ def __init__(
5772 self_ ,
5873 name : str ,
5974 type : InputSchemaParametersType ,
75+ allow_extra_values : Union [bool , UnsetType ] = unset ,
76+ allowed_values : Union [Any , UnsetType ] = unset ,
6077 default_value : Union [Any , UnsetType ] = unset ,
6178 description : Union [str , UnsetType ] = unset ,
6279 label : Union [str , UnsetType ] = unset ,
@@ -65,6 +82,12 @@ def __init__(
6582 """
6683 The definition of ``InputSchemaParameters`` object.
6784
85+ :param allow_extra_values: The ``InputSchemaParameters`` ``allowExtraValues``.
86+ :type allow_extra_values: bool, optional
87+
88+ :param allowed_values: The ``InputSchemaParameters`` ``allowedValues``.
89+ :type allowed_values: bool, date, datetime, dict, float, int, list, str, UUID, none_type, optional
90+
6891 :param default_value: The ``InputSchemaParameters`` ``defaultValue``.
6992 :type default_value: bool, date, datetime, dict, float, int, list, str, UUID, none_type, optional
7093
@@ -80,6 +103,10 @@ def __init__(
80103 :param type: The definition of ``InputSchemaParametersType`` object.
81104 :type type: InputSchemaParametersType
82105 """
106+ if allow_extra_values is not unset :
107+ kwargs ["allow_extra_values" ] = allow_extra_values
108+ if allowed_values is not unset :
109+ kwargs ["allowed_values" ] = allowed_values
83110 if default_value is not unset :
84111 kwargs ["default_value" ] = default_value
85112 if description is not unset :
0 commit comments