You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
override_lambda: Optional[str] =field(default=None, metadata={"description": "The ARN of the Lambda function to use when parsing the raw foundation model output in parts of the agent sequence. If you specify this field, at least one of the promptConfigurations must contain a parserMode value that is set to OVERRIDDEN. For more information, see Parser Lambda function in Agents for Amazon Bedrock."}) # fmt: skip
@@ -928,7 +929,6 @@ class AwsBedrockAgent(BedrockTaggable, AwsResource):
_kind_description: ClassVar[str] ="AWS Bedrock Agent Version is a feature that tracks changes in Bedrock agents over time. It maintains a record of agent configurations, including knowledge bases, prompts, and action groups. Users can view, compare, and revert to previous versions, ensuring version control and facilitating collaboration across teams working on AI agent development."# fmt: skip
agent_arn: Optional[str] =field(default=None, metadata={"description": "The Amazon Resource Name (ARN) of the agent that the version belongs to."}) # fmt: skip
1102
-
agent_id: Optional[str] =field(default=None, metadata={"description": "The unique identifier of the agent that the version belongs to."}) # fmt: skip
1103
-
agent_name: Optional[str] =field(default=None, metadata={"description": "The name of the agent that the version belongs to."}) # fmt: skip
1104
-
agent_resource_role_arn: Optional[str] =field(default=None, metadata={"description": "The Amazon Resource Name (ARN) of the IAM role with permissions to invoke API operations on the agent."}) # fmt: skip
1105
-
agent_status: Optional[str] =field(default=None, metadata={"description": "The status of the agent that the version belongs to."}) # fmt: skip
1106
-
created_at: Optional[datetime] =field(default=None, metadata={"description": "The time at which the version was created."}) # fmt: skip
1107
-
customer_encryption_key_arn: Optional[str] =field(default=None, metadata={"description": "The Amazon Resource Name (ARN) of the KMS key that encrypts the agent."}) # fmt: skip
1108
-
description: Optional[str] =field(default=None, metadata={"description": "The description of the version."}) # fmt: skip
1109
-
failure_reasons: Optional[List[str]] =field(factory=list, metadata={"description": "A list of reasons that the API operation on the version failed."}) # fmt: skip
1110
-
foundation_model: Optional[str] =field(default=None, metadata={"description": "The foundation model that the version invokes."}) # fmt: skip
1111
-
guardrail_configuration: Optional[AwsBedrockGuardrailConfiguration] =field(default=None, metadata={"description": "Details about the guardrail associated with the agent."}) # fmt: skip
1112
-
idle_session_ttl_in_seconds: Optional[int] =field(default=None, metadata={"description": "The number of seconds for which Amazon Bedrock keeps information about a user's conversation with the agent. A user interaction remains active for the amount of time specified. If no conversation occurs during this time, the session expires and Amazon Bedrock deletes any data provided before the timeout."}) # fmt: skip
1113
-
instruction: Optional[str] =field(default=None, metadata={"description": "The instructions provided to the agent."}) # fmt: skip
1114
-
memory_configuration: Optional[AwsBedrockMemoryConfiguration] =field(default=None, metadata={"description": "Contains details of the memory configuration on the version of the agent."}) # fmt: skip
1115
-
prompt_override_configuration: Optional[AwsBedrockPromptOverrideConfiguration] =field(default=None, metadata={"description": "Contains configurations to override prompt templates in different parts of an agent sequence. For more information, see Advanced prompts."}) # fmt: skip
1116
-
agent_recommended_actions: Optional[List[str]] =field(factory=list, metadata={"description": "A list of recommended actions to take for the failed API operation on the version to succeed."}) # fmt: skip
1117
-
updated_at: Optional[datetime] =field(default=None, metadata={"description": "The time at which the version was last updated."}) # fmt: skip
1118
-
version: Optional[str] =field(default=None, metadata={"description": "The version number."}) # fmt: skip
Copy file name to clipboardExpand all lines: plugins/azure/fix_plugin_azure/resource/machinelearning.py
+2-4Lines changed: 2 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -692,10 +692,8 @@ class AzureMachineLearningDataContainerBase(AzureProxyResource):
692
692
}
693
693
description: Optional[str] =field(default=None, metadata={"description": "The asset description text."})
694
694
is_archived: Optional[bool] =field(default=False, metadata={"description": "Is the asset archived?"})
695
-
latest_version: Optional[str] =field(
696
-
default=None, metadata={"description": "The latest version inside this container."}
697
-
)
698
-
next_version: Optional[str] =field(default=None, metadata={"description": "The next auto incremental version."})
695
+
latest_version: Optional[str] =field(default=None, metadata={"ignore_history": True, "description": "The latest version inside this container."}) # fmt: skip
696
+
next_version: Optional[str] =field(default=None, metadata={"ignore_history": True, "description": "The next auto incremental version."}) # fmt: skip
0 commit comments