Function Related Messages
Error codes related to function lifecycle operations, including creation, lookup, deletion, and file validation.
Overview
| Code | Message | Description |
|---|---|---|
FN0001 | 名前 {0} のファンクションは既に存在します。別の名前を使用してください。 | Function name already exists, violates unique constraint |
FN0002 | テンプレート {0} は不明です。 | Template does not exist in the system |
FN0003 | ファンクションが存在しません。 | Function does not exist in the system |
FN0004 | ファンクション {0} は不明です。 | Function not found with the provided name |
FN0005 | ファンクション{0}ゴミではありません。 | Function is not in the trash for restoration |
FN0006 | ファンクションが削除されました。 | Function has been deleted from the system |
FN0007 | 名前 {0} の削除済のファンクションがあるため、使用ができません。別の名前を使用してください。 | Function name conflicts with a deleted function |
FN0008 | ファンクションの作成中にエラーが発生しました。 | Error occurred during function creation |
FN0009 | 重複しているファイルが見つかりました: {0}。ファイル一覧を確認してください。 | Duplicate file detected in the upload list |
FN0010 | 'handler.py' と 'requirements.txt' は必須です。 | Required files handler.py and requirements.txt are missing |
Error Code Details
FN0001
Message
名前 {0} のファンクションは既に存在します。別の名前を使用してください。
Description
A function with the specified name already exists in the system, violating the unique name constraint.
Root Cause
- The function name
{0}is already in use by another function.
Resolution
- Choose a different, unique name for the function.
FN0002
Message
テンプレート {0} は不明です。
Description
The specified template does not exist in the system.
Root Cause
- The template name
{0}does not match any known template.
Resolution
- Verify the template name and ensure it exists in the system.
- Check for typos in the template name.
FN0003
Message
ファンクションが存在しません。
Description
The requested function could not be found in the system.
Root Cause
- The function ID or reference is incorrect.
- The function was deleted before the request was made.
Resolution
- Verify the function ID and ensure the function exists.
- Ensure the function has not been deleted.
FN0004
Message
ファンクション {0} は不明です。
Description
No function was found with the provided name.
Root Cause
- The function name
{0}does not match any existing function.
Resolution
- Verify the function name and ensure it matches an existing function.
- Check for typos in the function name.
FN0005
Message
ファンクション{0}ゴミではありません。
Description
The function cannot be restored because it is not currently in the trash.
Root Cause
- The function
{0}was not moved to trash before attempting a restore operation.
Resolution
- Verify the function is in the trash before attempting to restore it.
FN0006
Message
ファンクションが削除されました。
Description
The requested function has been permanently deleted from the system.
Root Cause
- The function was deleted and is no longer available.
Resolution
- The function cannot be recovered after deletion. Create a new function if needed.
FN0007
Message
名前 {0} の削除済のファンクションがあるため、使用ができません。別の名前を使用してください。
Description
The function name is reserved by a deleted function, preventing reuse of the same name.
Root Cause
- A deleted function already holds the name
{0}.
Resolution
- Use a different name for the new function.
FN0008
Message
ファンクションの作成中にエラーが発生しました。
Description
An error occurred during the function creation process.
Root Cause
- Invalid or missing function parameters were provided.
- A system error occurred during function creation.
Resolution
- Check the function parameters and ensure all required fields are valid.
- Try again. If the issue persists, contact support.
FN0009
Message
重複しているファイルが見つかりました: {0}。ファイル一覧を確認してください。
Description
A duplicate file was detected in the upload list.
Root Cause
- The file
{0}appears more than once in the upload list.
Resolution
- Remove the duplicate file
{0}from the upload list. - Ensure each file in the list is unique before uploading.
FN0010
Message
'handler.py' と 'requirements.txt' は必須です。
Description
The function upload is missing required files: handler.py and/or requirements.txt.
Root Cause
- One or both of the required files (
handler.py,requirements.txt) are not included in the upload.
Resolution
- Ensure both
handler.pyandrequirements.txtare included in the function upload package.