Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for VolumeError (0.49 sec)

  1. common-protos/k8s.io/api/storage/v1/generated.proto

      // +optional
      optional VolumeError attachError = 3;
    
      // detachError represents the last error encountered during detach operation, if any.
      // This field must only be set by the entity completing the detach
      // operation, i.e. the external-attacher.
      // +optional
      optional VolumeError detachError = 4;
    }
    
    // VolumeError captures an error encountered during a volume operation.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/storage/v1beta1/generated.proto

      // +optional
      optional VolumeError attachError = 3;
    
      // detachError represents the last error encountered during detach operation, if any.
      // This field must only be set by the entity completing the detach
      // operation, i.e. the external-attacher.
      // +optional
      optional VolumeError detachError = 4;
    }
    
    // VolumeError captures an error encountered during a volume operation.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  3. pkg/apis/storage/types.go

    	// +optional
    	AttachError *VolumeError
    
    	// The last error encountered during detach operation, if any.
    	// This field must only be set by the entity completing the detach
    	// operation, i.e. the external-attacher.
    	// +optional
    	DetachError *VolumeError
    }
    
    // Captures an error encountered during a volume operation.
    type VolumeError struct {
    	// Time the error was encountered.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/storage/v1/types_swagger_doc_generated.go

    }
    
    var map_VolumeError = map[string]string{
    	"":        "VolumeError captures an error encountered during a volume operation.",
    	"time":    "time represents the time the error was encountered.",
    	"message": "message represents the error encountered during Attach or Detach operation. This string may be logged, so it should not contain sensitive information.",
    }
    
    func (VolumeError) SwaggerDoc() map[string]string {
    	return map_VolumeError
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 07:07:45 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/storage/v1beta1/types_swagger_doc_generated.go

    }
    
    var map_VolumeError = map[string]string{
    	"":        "VolumeError captures an error encountered during a volume operation.",
    	"time":    "time represents the time the error was encountered.",
    	"message": "message represents the error encountered during Attach or Detach operation. This string may be logged, so it should not contain sensitive information.",
    }
    
    func (VolumeError) SwaggerDoc() map[string]string {
    	return map_VolumeError
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:18:43 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  6. pkg/apis/storage/validation/validation.go

    	}
    	if size > maxAttachedVolumeMetadataSize {
    		allErrs = append(allErrs, field.TooLong(fldPath, metadata, maxAttachedVolumeMetadataSize))
    	}
    	return allErrs
    }
    
    func validateVolumeError(e *storage.VolumeError, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    
    	if e == nil {
    		return allErrs
    	}
    	if len(e.Message) > maxVolumeErrorMessageSize {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 00:47:13 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

              }
            },
            "required": [
              "attached"
            ],
            "type": "object"
          },
          "io.k8s.api.storage.v1.VolumeError": {
            "description": "VolumeError captures an error encountered during a volume operation.",
            "properties": {
              "message": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  8. pkg/generated/openapi/zz_generated.openapi.go

    							Ref:         ref("k8s.io/api/storage/v1.VolumeError"),
    						},
    					},
    					"detachError": {
    						SchemaProps: spec.SchemaProps{
    							Description: "detachError represents the last error encountered during detach operation, if any. This field must only be set by the entity completing the detach operation, i.e. the external-attacher.",
    							Ref:         ref("k8s.io/api/storage/v1.VolumeError"),
    						},
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  9. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

          },
          "required": [
            "attached"
          ],
          "type": "object"
        },
        "io.k8s.api.storage.v1.VolumeError": {
          "description": "VolumeError captures an error encountered during a volume operation.",
          "properties": {
            "message": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
  10. api/openapi-spec/swagger.json

          },
          "required": [
            "attached"
          ],
          "type": "object"
        },
        "io.k8s.api.storage.v1.VolumeError": {
          "description": "VolumeError captures an error encountered during a volume operation.",
          "properties": {
            "message": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top