update_model¶
Operation¶
update_model
async
¶
update_model(input: UpdateModelInput, plugins: list[Plugin] | None = None) -> UpdateModelOutput
Changes information about a model. The maximum size of the model is 400 KB.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
input
|
UpdateModelInput
|
An instance of |
required |
plugins
|
list[Plugin] | None
|
A list of callables that modify the configuration dynamically. Changes made by these plugins only apply for the duration of the operation execution and will not affect any other operation invocations. |
None
|
Returns:
| Type | Description |
|---|---|
UpdateModelOutput
|
An instance of |
Input¶
UpdateModelInput
dataclass
¶
Request to update an existing model in an existing RestApi resource.
Attributes¶
model_name
class-attribute
instance-attribute
¶
model_name: str | None = None
The name of the model to update.
patch_operations
class-attribute
instance-attribute
¶
patch_operations: list[PatchOperation] | None = None
For more information about supported patch operations, see Patch Operations.
rest_api_id
class-attribute
instance-attribute
¶
rest_api_id: str | None = None
The string identifier of the associated RestApi.
Output¶
UpdateModelOutput
dataclass
¶
Represents the data structure of a method's request or response payload.
Attributes¶
content_type
class-attribute
instance-attribute
¶
content_type: str | None = None
The content-type for the model.
description
class-attribute
instance-attribute
¶
description: str | None = None
The description of the model.
id
class-attribute
instance-attribute
¶
id: str | None = None
The identifier for the model resource.
name
class-attribute
instance-attribute
¶
name: str | None = None
The name of the model. Must be an alphanumeric string.
schema
class-attribute
instance-attribute
¶
schema: str | None = None
The schema for the model. For application/json models, this should be
JSON schema draft 4 model. Do not include "*/" characters in the
description of any properties because such "*/" characters may be
interpreted as the closing marker for comments in some languages, such
as Java or JavaScript, causing the installation of your API's SDK
generated by API Gateway to fail.