mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-10-31 13:50:01 +00:00 
			
		
		
		
	Bump version of golang.org/x/oauth2 Vendor google.golang.org/cloud/ Vendor google.golang.org/api/ Vendor cloud.google.com/go/compute/ Replace google.golang.org/cloud with cloud.google.com/go/ Fixes #30069
		
			
				
	
	
		
			34 lines
		
	
	
		
			503 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			503 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
| // Built-in base types for API calls. Primarily useful as return types.
 | |
| 
 | |
| syntax = "proto2";
 | |
| option go_package = "base";
 | |
| 
 | |
| package appengine.base;
 | |
| 
 | |
| message StringProto {
 | |
|   required string value = 1;
 | |
| }
 | |
| 
 | |
| message Integer32Proto {
 | |
|   required int32 value = 1;
 | |
| }
 | |
| 
 | |
| message Integer64Proto {
 | |
|   required int64 value = 1;
 | |
| }
 | |
| 
 | |
| message BoolProto {
 | |
|   required bool value = 1;
 | |
| }
 | |
| 
 | |
| message DoubleProto {
 | |
|   required double value = 1;
 | |
| }
 | |
| 
 | |
| message BytesProto {
 | |
|   required bytes value = 1 [ctype=CORD];
 | |
| }
 | |
| 
 | |
| message VoidProto {
 | |
| }
 |