53 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Go
		
	
	
	
/*
 | 
						|
 * Copyright 2025 coze-dev Authors
 | 
						|
 *
 | 
						|
 * Licensed under the Apache License, Version 2.0 (the "License");
 | 
						|
 * you may not use this file except in compliance with the License.
 | 
						|
 * You may obtain a copy of the License at
 | 
						|
 *
 | 
						|
 *     http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
 *
 | 
						|
 * Unless required by applicable law or agreed to in writing, software
 | 
						|
 * distributed under the License is distributed on an "AS IS" BASIS,
 | 
						|
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
						|
 * See the License for the specific language governing permissions and
 | 
						|
 * limitations under the License.
 | 
						|
 */
 | 
						|
 | 
						|
package permission
 | 
						|
 | 
						|
const (
 | 
						|
	ResourceTypeAccount             ResourceType = 1
 | 
						|
	ResourceTypeWorkspace                        = 2
 | 
						|
	ResourceTypeApp                              = 3
 | 
						|
	ResourceTypeBot                              = 4
 | 
						|
	ResourceTypePlugin                           = 5
 | 
						|
	ResourceTypeWorkflow                         = 6
 | 
						|
	ResourceTypeKnowledge                        = 7
 | 
						|
	ResourceTypePersonalAccessToken              = 8
 | 
						|
	ResourceTypeConnector                        = 9
 | 
						|
	ResourceTypeCard                             = 10
 | 
						|
	ResourceTypeCardTemplate                     = 11
 | 
						|
	ResourceTypeConversation                     = 12
 | 
						|
	ResourceTypeFile                             = 13
 | 
						|
	ResourceTypeServicePrincipal                 = 14
 | 
						|
	ResourceTypeEnterprise                       = 15
 | 
						|
	ResourceTypeMigrateTask                      = 16
 | 
						|
	ResourceTypePrompt                           = 17
 | 
						|
	ResourceTypeUI                               = 18
 | 
						|
	ResourceTypeProject                          = 19
 | 
						|
	ResourceTypeEvaluationDataset                = 20
 | 
						|
	ResourceTypeEvaluationTask                   = 21
 | 
						|
	ResourceTypeEvaluator                        = 22
 | 
						|
	ResourceTypeDatabase                         = 23
 | 
						|
	ResourceTypeOceanProject                     = 24
 | 
						|
	ResourceTypeFinetuneTask                     = 25
 | 
						|
)
 | 
						|
 | 
						|
const (
 | 
						|
	// Allow represents permission granted
 | 
						|
	Allow Decision = 1
 | 
						|
	// Deny represents permission denied
 | 
						|
	Deny Decision = 2
 | 
						|
)
 |