parsingMode property

String? parsingMode
getter/setter pair

Input only.

Enum specifying the parsing mode for OpenAPI Specification (OAS) parsing.

Optional. Possible string values are:

  • "PARSING_MODE_UNSPECIFIED" : Defaults to RELAXED.
  • "RELAXED" : Parsing of the Spec on create and update is relaxed, meaning that parsing errors the spec contents will not fail the API call.
  • "STRICT" : Parsing of the Spec on create and update is strict, meaning that parsing errors in the spec contents will fail the API call.

Implementation

core.String? parsingMode;