メインコンテンツまでスキップ

Invocation Request Validation

Validation messages for invocation requests, covering function name, device ID, shot count, processor ID, and description fields.


Overview

KeyMessageDescription
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 functionName field was not provided or is blank.

Resolution

  1. 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 deviceId field was not included in the request.

Resolution

  1. 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 deviceId value of 0 or a negative number was provided.

Resolution

  1. 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 shots field was not included in the request.

Resolution

  1. 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 shots value of 0 or a negative number was provided.

Resolution

  1. 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 processorId value of 0 or a negative number was provided.

Resolution

  1. 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

  1. Reduce the description to 1024 characters or fewer.