1// Copyright 2023 Google LLC 2// 3// Licensed under the Apache License, Version 2.0 (the "License"); 4// you may not use this file except in compliance with the License. 5// You may obtain a copy of the License at 6// 7// http://www.apache.org/licenses/LICENSE-2.0 8// 9// Unless required by applicable law or agreed to in writing, software 10// distributed under the License is distributed on an "AS IS" BASIS, 11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12// See the License for the specific language governing permissions and 13// limitations under the License. 14 15syntax = "proto3"; 16 17package google.cloud.integrations.v1alpha; 18 19option csharp_namespace = "Google.Cloud.Integrations.V1Alpha"; 20option go_package = "cloud.google.com/go/integrations/apiv1alpha/integrationspb;integrationspb"; 21option java_multiple_files = true; 22option java_outer_classname = "JsonValidationProto"; 23option java_package = "com.google.cloud.integrations.v1alpha"; 24 25// Options for how to validate json schemas. 26enum JsonValidationOption { 27 // As per the default behavior, no validation will be run. Will not override 28 // any option set in a Task. 29 JSON_VALIDATION_OPTION_UNSPECIFIED = 0; 30 31 // Do not run any validation against JSON schemas. 32 SKIP = 1; 33 34 // Validate all potential input JSON parameters against schemas specified in 35 // IntegrationParameter. 36 PRE_EXECUTION = 2; 37 38 // Validate all potential output JSON parameters against schemas specified in 39 // IntegrationParameter. 40 POST_EXECUTION = 3; 41 42 // Perform both PRE_EXECUTION and POST_EXECUTION validations. 43 PRE_POST_EXECUTION = 4; 44} 45