Invocation Request Validation
Validation messages for invocation requests, covering function name, device ID, shot count, processor ID, and description fields.
Overview
| Key | Message | Description |
|---|---|---|
NotBlank.invocationRequest.functionName | ファンクション名はnull、空、または空白を許容していません。ファンクション名を入力してください。 | The function name in the invocation request is null, empty, or whitespace. |
NotNull.invocationRequest.deviceId | デバイスIDはnullを許容していません。デバイスを入力してください。 | The device ID in the invocation request is null. |
Min.invocationRequest.deviceId | デバイスIDは1以上である必要があります。有効なデバイスIDを入力してください。 | The device ID must be at least 1; the provided value is less than 1. |
NotNull.invocationRequest.shots | ショット数はnullを許容していません。ショット数を入力してください。 | The number of shots in the invocation request is null. |
Min.invocationRequest.shots | ショット数は1以上である必要があります。有効なショット数を入力してください。 | The number of shots must be at least 1; the provided value is less than 1. |
Min.invocationRequest.processorId | プロセッサIDは1以上である必要があります。有効なプロセッサIDを入力してください。 | The processor ID must be at least 1; the provided value is less than 1. |
Size.invocationRequest.description | 説明は0文字以上1024文字以下である必要があります。もう一度説明を入力してください。 | The invocation description exceeds the 1024 character limit. |
Validation Message Details
NotBlank.invocationRequest.functionName
Message
ファンクション名はnull、空、または空白を許容していません。ファンクション名を入力してください。
Description
The function name in the invocation request is null, empty, or whitespace.
Root Cause
- The
functionNamefield was not provided or is blank.
Resolution
- Provide a valid function name in the invocation request.
NotNull.invocationRequest.deviceId
Message
デバイスIDはnullを許容していません。デバイスを入力してください。
Description
The device ID in the invocation request is null.
Root Cause
- The
deviceIdfield was not included in the request.
Resolution
- Provide a valid device ID.
Min.invocationRequest.deviceId
Message
デバイスIDは1以上である必要があります。有効なデバイスIDを入力してください。
Description
The device ID must be at least 1; the provided value is less than 1.
Root Cause
- A
deviceIdvalue of 0 or a negative number was provided.
Resolution
- Enter a device ID value of at least 1.
NotNull.invocationRequest.shots
Message
ショット数はnullを許容していません。ショット数を入力してください。
Description
The number of shots in the invocation request is null.
Root Cause
- The
shotsfield was not included in the request.
Resolution
- Provide a valid number of shots.
Min.invocationRequest.shots
Message
ショット数は1以上である必要があります。有効なショット数を入力してください。
Description
The number of shots must be at least 1; the provided value is less than 1.
Root Cause
- A
shotsvalue of 0 or a negative number was provided.
Resolution
- Enter a shots value of at least 1.
Min.invocationRequest.processorId
Message
プロセッサIDは1以上である必要があります。有効なプロセッサIDを入力してください。
Description
The processor ID must be at least 1; the provided value is less than 1.
Root Cause
- A
processorIdvalue of 0 or a negative number was provided.
Resolution
- Enter a processor ID value of at least 1.
Size.invocationRequest.description
Message
説明は0文字以上1024文字以下である必要があります。もう一度説明を入力してください。
Description
The invocation description exceeds the 1024 character limit.
Root Cause
- The provided description is longer than 1024 characters.
Resolution
- Reduce the description to 1024 characters or fewer.