Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ValidateFlowSchemaUpdate (0.2 sec)

  1. pkg/registry/flowcontrol/flowschema/strategy.go

    	return false
    }
    
    // ValidateUpdate is the default update validation for an end user.
    func (flowSchemaStrategy) ValidateUpdate(ctx context.Context, obj, old runtime.Object) field.ErrorList {
    	return validation.ValidateFlowSchemaUpdate(old.(*flowcontrol.FlowSchema), obj.(*flowcontrol.FlowSchema))
    }
    
    // WarningsOnUpdate returns warnings for the given update.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 11:48:22 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. pkg/apis/flowcontrol/validation/validation.go

    		}
    	}
    	allErrs = append(allErrs, ValidateFlowSchemaStatus(&fs.Status, field.NewPath("status"))...)
    	return allErrs
    }
    
    // ValidateFlowSchemaUpdate validates the update of flow-schema
    func ValidateFlowSchemaUpdate(old, fs *flowcontrol.FlowSchema) field.ErrorList {
    	return ValidateFlowSchema(fs)
    }
    
    // ValidateFlowSchemaSpec validates the content of flow-schema's spec
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 26.7K bytes
    - Viewed (0)
Back to top