Is this method side-effect-free (or safe in HTTP parlance), or just idempotent, or neither? HTTP based RPC implementation may choose GET verb for safe methods, and PUT verb for idempotent methods instead of the default POST.

This enum matches the protobuf enum google.protobuf.MethodOptions.IdempotencyLevel, defined in the well-known type google/protobuf/descriptor.proto, but drops UNKNOWN.

Enumeration Members

Enumeration Members

Idempotent: 2

Idempotent, but may have side effects.

NoSideEffects: 1

Idempotent, no side effects.

Generated using TypeDoc