Options
All
  • Public
  • Public/Protected
  • All
Menu

StructuredResourceHandle is the in-tree representation of the allocation result.

export
interface

IoK8sApiResourceV1alpha2StructuredResourceHandle

Hierarchy

  • IoK8sApiResourceV1alpha2StructuredResourceHandle

Index

Properties

nodeName?: string

NodeName is the name of the node providing the necessary resources if the resources are local to a node.

memberof

IoK8sApiResourceV1alpha2StructuredResourceHandle

Results lists all allocated driver resources.

memberof

IoK8sApiResourceV1alpha2StructuredResourceHandle

vendorClaimParameters?: object

RawExtension is used to hold extensions in external versions.

To use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct. You also need to register your various plugin types.

// Internal package:

type MyAPIObject struct {
runtime.TypeMeta `json:",inline"`
MyPlugin runtime.Object `json:"myPlugin"`
}

type PluginA struct {
AOption string `json:"aOption"`
}

// External package:

type MyAPIObject struct {
runtime.TypeMeta `json:",inline"`
MyPlugin runtime.RawExtension `json:"myPlugin"`
}

type PluginA struct {
AOption string `json:"aOption"`
}

// On the wire, the JSON will look something like this:

{
"kind":"MyAPIObject",
"apiVersion":"v1",
"myPlugin": {
"kind":"PluginA",
"aOption":"foo",
},
}

So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject. That causes the raw JSON to be stored, but not unpacked. The next step is to copy (using pkg/conversion) into the internal struct. The runtime package's DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object. (TODO: In the case where the object is of an unknown type, a runtime.Unknown object will be created and stored.)

memberof

IoK8sApiResourceV1alpha2StructuredResourceHandle

vendorClassParameters?: object

RawExtension is used to hold extensions in external versions.

To use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct. You also need to register your various plugin types.

// Internal package:

type MyAPIObject struct {
runtime.TypeMeta `json:",inline"`
MyPlugin runtime.Object `json:"myPlugin"`
}

type PluginA struct {
AOption string `json:"aOption"`
}

// External package:

type MyAPIObject struct {
runtime.TypeMeta `json:",inline"`
MyPlugin runtime.RawExtension `json:"myPlugin"`
}

type PluginA struct {
AOption string `json:"aOption"`
}

// On the wire, the JSON will look something like this:

{
"kind":"MyAPIObject",
"apiVersion":"v1",
"myPlugin": {
"kind":"PluginA",
"aOption":"foo",
},
}

So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject. That causes the raw JSON to be stored, but not unpacked. The next step is to copy (using pkg/conversion) into the internal struct. The runtime package's DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object. (TODO: In the case where the object is of an unknown type, a runtime.Unknown object will be created and stored.)

memberof

IoK8sApiResourceV1alpha2StructuredResourceHandle

Generated using TypeDoc