Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 97 of 97 for PdID (0.1 sec)

  1. api/openapi-spec/swagger.json

              "type": "string"
            },
            "pdID": {
              "description": "pdID is the ID that identifies Photon Controller persistent disk",
              "type": "string"
            }
          },
          "required": [
            "pdID"
          ],
          "type": "object"
        },
        "io.k8s.api.core.v1.Pod": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	return map_PersistentVolumeStatus
    }
    
    var map_PhotonPersistentDiskVolumeSource = map[string]string{
    	"":       "Represents a Photon Controller persistent disk resource.",
    	"pdID":   "pdID is the ID that identifies Photon Controller persistent disk",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation.go

    }
    
    func validatePhotonPersistentDiskVolumeSource(cd *core.PhotonPersistentDiskVolumeSource, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	if len(cd.PdID) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("pdID"), ""))
    	}
    	return allErrs
    }
    
    func validatePortworxVolumeSource(pwx *core.PortworxVolumeSource, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    }
    
    // PhotonPersistentDiskVolumeSource represents a Photon Controller persistent disk resource.
    type PhotonPersistentDiskVolumeSource struct {
    	// ID that identifies Photon Controller persistent disk
    	PdID string
    	// Filesystem type to mount.
    	// Must be a filesystem type supported by the host operating system.
    	// Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.
    	FSType string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.pb.go

    	_ = l
    	i -= len(m.FSType)
    	copy(dAtA[i:], m.FSType)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.FSType)))
    	i--
    	dAtA[i] = 0x12
    	i -= len(m.PdID)
    	copy(dAtA[i:], m.PdID)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.PdID)))
    	i--
    	dAtA[i] = 0xa
    	return len(dAtA) - i, nil
    }
    
    func (m *Pod) Marshal() (dAtA []byte, err error) {
    	size := m.Size()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
              },
              "pdID": {
                "default": "",
                "description": "pdID is the ID that identifies Photon Controller persistent disk",
                "type": "string"
              }
            },
            "required": [
              "pdID"
            ],
            "type": "object"
          },
          "io.k8s.api.core.v1.PodAffinity": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/api__v1_openapi.json

                "type": "string"
              },
              "pdID": {
                "default": "",
                "description": "pdID is the ID that identifies Photon Controller persistent disk",
                "type": "string"
              }
            },
            "required": [
              "pdID"
            ],
            "type": "object"
          },
          "io.k8s.api.core.v1.Pod": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
Back to top