Module

Kubernetes.Api.Core.V1.Node

Package
purescript-kubernetes
Repository
hoodunit/purescript-kubernetes

#connectDeleteProxy Source

connectDeleteProxy :: Config -> String -> Aff (Either Status String)

connect DELETE requests to proxy of Node

#connectDeleteProxyWithPath Source

connectDeleteProxyWithPath :: Config -> String -> String -> Aff (Either Status String)

connect DELETE requests to proxy of Node

#connectGetProxy Source

connectGetProxy :: Config -> String -> Aff (Either Status String)

connect GET requests to proxy of Node

#connectGetProxyWithPath Source

connectGetProxyWithPath :: Config -> String -> String -> Aff (Either Status String)

connect GET requests to proxy of Node

#connectHeadProxy Source

connectHeadProxy :: Config -> String -> Aff (Either Status String)

connect HEAD requests to proxy of Node

#connectHeadProxyWithPath Source

connectHeadProxyWithPath :: Config -> String -> String -> Aff (Either Status String)

connect HEAD requests to proxy of Node

#connectOptionsProxy Source

connectOptionsProxy :: Config -> String -> Aff (Either Status String)

connect OPTIONS requests to proxy of Node

#connectOptionsProxyWithPath Source

connectOptionsProxyWithPath :: Config -> String -> String -> Aff (Either Status String)

connect OPTIONS requests to proxy of Node

#connectPostProxy Source

connectPostProxy :: Config -> String -> Aff (Either Status String)

connect POST requests to proxy of Node

#connectPostProxyWithPath Source

connectPostProxyWithPath :: Config -> String -> String -> Aff (Either Status String)

connect POST requests to proxy of Node

#connectPutProxy Source

connectPutProxy :: Config -> String -> Aff (Either Status String)

connect PUT requests to proxy of Node

#connectPutProxyWithPath Source

connectPutProxyWithPath :: Config -> String -> String -> Aff (Either Status String)

connect PUT requests to proxy of Node

#create Source

create :: Config -> Node -> Aff (Either Status Node)

create a Node

#DeleteOptions Source

newtype DeleteOptions

Fields:

  • gracePeriodSeconds: The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
  • orphanDependents: Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
  • propagationPolicy: Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.

Constructors

Instances

#DeleteCollectionOptions Source

newtype DeleteCollectionOptions

Fields:

  • continue: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.

  • fieldSelector: A selector to restrict the list of returned objects by their fields. Defaults to everything.

  • includeUninitialized: If true, partially initialized resources are included in the response.

  • labelSelector: A selector to restrict the list of returned objects by their labels. Defaults to everything.

  • limit: limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.

    The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.

  • resourceVersion: When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.

  • timeoutSeconds: Timeout for the list/watch call.

  • watch: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

Constructors

Instances

#deleteCollection Source

#ListOptions Source

newtype ListOptions

Fields:

  • continue: The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.

  • fieldSelector: A selector to restrict the list of returned objects by their fields. Defaults to everything.

  • includeUninitialized: If true, partially initialized resources are included in the response.

  • labelSelector: A selector to restrict the list of returned objects by their labels. Defaults to everything.

  • limit: limit is a maximum number of responses to return for a list call. If more items exist, the server will set the continue field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.

    The server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.

  • resourceVersion: When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.

  • timeoutSeconds: Timeout for the list/watch call.

  • watch: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.

Constructors

Instances

#list Source

list :: Config -> ListOptions -> Aff (Either Status NodeList)

list or watch objects of kind Node

#proxyDELETE Source

proxyDELETE :: Config -> String -> Aff (Either Status String)

proxy DELETE requests to Node

#proxyDELETEWithPath Source

proxyDELETEWithPath :: Config -> String -> String -> Aff (Either Status String)

proxy DELETE requests to Node

#proxyGET Source

proxyGET :: Config -> String -> Aff (Either Status String)

proxy GET requests to Node

#proxyGETWithPath Source

proxyGETWithPath :: Config -> String -> String -> Aff (Either Status String)

proxy GET requests to Node

#proxyHEAD Source

proxyHEAD :: Config -> String -> Aff (Either Status String)

proxy HEAD requests to Node

#proxyHEADWithPath Source

proxyHEADWithPath :: Config -> String -> String -> Aff (Either Status String)

proxy HEAD requests to Node

#proxyOPTIONS Source

proxyOPTIONS :: Config -> String -> Aff (Either Status String)

proxy OPTIONS requests to Node

#proxyOPTIONSWithPath Source

proxyOPTIONSWithPath :: Config -> String -> String -> Aff (Either Status String)

proxy OPTIONS requests to Node

#proxyPOST Source

proxyPOST :: Config -> String -> Aff (Either Status String)

proxy POST requests to Node

#proxyPOSTWithPath Source

proxyPOSTWithPath :: Config -> String -> String -> Aff (Either Status String)

proxy POST requests to Node

#proxyPUT Source

proxyPUT :: Config -> String -> Aff (Either Status String)

proxy PUT requests to Node

#proxyPUTWithPath Source

proxyPUTWithPath :: Config -> String -> String -> Aff (Either Status String)

proxy PUT requests to Node

#ReadOptions Source

newtype ReadOptions

Fields:

  • exact: Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
  • export: Should this value be exported. Export strips fields that a user can not specify.

Constructors

Instances

#read Source

read :: Config -> String -> ReadOptions -> Aff (Either Status Node)

read the specified Node

#readStatus Source

readStatus :: Config -> String -> Aff (Either Status Node)

read status of the specified Node

#replace Source

replace :: Config -> String -> Node -> Aff (Either Status Node)

replace the specified Node

#replaceStatus Source

replaceStatus :: Config -> String -> Node -> Aff (Either Status Node)

replace status of the specified Node

#watch Source

watch :: Config -> String -> Aff (Either Status WatchEvent)

watch changes to an object of kind Node

#watchList Source

watchList :: Config -> Aff (Either Status WatchEvent)

watch individual changes to a list of Node

Modules
Kubernetes.Api.APIExtensions
Kubernetes.Api.APIExtensions.V1Beta1
Kubernetes.Api.APIExtensions.V1Beta1.CustomResourceDefinition
Kubernetes.Api.AdmissionRegistration
Kubernetes.Api.AdmissionRegistration.V1Alpha1
Kubernetes.Api.AdmissionRegistration.V1Alpha1.InitializerConfiguration
Kubernetes.Api.AdmissionRegistration.V1Beta1
Kubernetes.Api.AdmissionRegistration.V1Beta1.MutatingWebhookConfiguration
Kubernetes.Api.AdmissionRegistration.V1Beta1.ValidatingWebhookConfiguration
Kubernetes.Api.ApiRegistration
Kubernetes.Api.ApiRegistration.V1Beta1
Kubernetes.Api.ApiRegistration.V1Beta1.APIService
Kubernetes.Api.Apis
Kubernetes.Api.Apps
Kubernetes.Api.Apps.V1
Kubernetes.Api.Apps.V1.ControllerRevision
Kubernetes.Api.Apps.V1.DaemonSet
Kubernetes.Api.Apps.V1.Deployment
Kubernetes.Api.Apps.V1.ReplicaSet
Kubernetes.Api.Apps.V1.StatefulSet
Kubernetes.Api.Apps.V1Beta1
Kubernetes.Api.Apps.V1Beta1.ControllerRevision
Kubernetes.Api.Apps.V1Beta1.Deployment
Kubernetes.Api.Apps.V1Beta1.DeploymentRollback
Kubernetes.Api.Apps.V1Beta1.Scale
Kubernetes.Api.Apps.V1Beta1.StatefulSet
Kubernetes.Api.Apps.V1Beta2
Kubernetes.Api.Apps.V1Beta2.ControllerRevision
Kubernetes.Api.Apps.V1Beta2.DaemonSet
Kubernetes.Api.Apps.V1Beta2.Deployment
Kubernetes.Api.Apps.V1Beta2.ReplicaSet
Kubernetes.Api.Apps.V1Beta2.Scale
Kubernetes.Api.Apps.V1Beta2.StatefulSet
Kubernetes.Api.Authentication
Kubernetes.Api.Authentication.V1
Kubernetes.Api.Authentication.V1.TokenReview
Kubernetes.Api.Authentication.V1Beta1
Kubernetes.Api.Authentication.V1Beta1.TokenReview
Kubernetes.Api.Authorization
Kubernetes.Api.Authorization.V1
Kubernetes.Api.Authorization.V1.LocalSubjectAccessReview
Kubernetes.Api.Authorization.V1.SelfSubjectAccessReview
Kubernetes.Api.Authorization.V1.SelfSubjectRulesReview
Kubernetes.Api.Authorization.V1.SubjectAccessReview
Kubernetes.Api.Authorization.V1Beta1
Kubernetes.Api.Authorization.V1Beta1.LocalSubjectAccessReview
Kubernetes.Api.Authorization.V1Beta1.SelfSubjectAccessReview
Kubernetes.Api.Authorization.V1Beta1.SelfSubjectRulesReview
Kubernetes.Api.Authorization.V1Beta1.SubjectAccessReview
Kubernetes.Api.Autoscaling
Kubernetes.Api.Autoscaling.V1
Kubernetes.Api.Autoscaling.V1.HorizontalPodAutoscaler
Kubernetes.Api.Autoscaling.V1.Scale
Kubernetes.Api.Autoscaling.V2Beta1
Kubernetes.Api.Autoscaling.V2Beta1.HorizontalPodAutoscaler
Kubernetes.Api.Batch
Kubernetes.Api.Batch.V1
Kubernetes.Api.Batch.V1.Job
Kubernetes.Api.Batch.V1Beta1
Kubernetes.Api.Batch.V1Beta1.CronJob
Kubernetes.Api.Batch.V2Alpha1
Kubernetes.Api.Batch.V2Alpha1.CronJob
Kubernetes.Api.Certificates
Kubernetes.Api.Certificates.V1Beta1
Kubernetes.Api.Certificates.V1Beta1.CertificateSigningRequest
Kubernetes.Api.Core
Kubernetes.Api.Core.V1
Kubernetes.Api.Core.V1.Binding
Kubernetes.Api.Core.V1.ComponentStatus
Kubernetes.Api.Core.V1.ConfigMap
Kubernetes.Api.Core.V1.Endpoints
Kubernetes.Api.Core.V1.Event
Kubernetes.Api.Core.V1.LimitRange
Kubernetes.Api.Core.V1.Namespace
Kubernetes.Api.Core.V1.Node
Kubernetes.Api.Core.V1.PersistentVolume
Kubernetes.Api.Core.V1.PersistentVolumeClaim
Kubernetes.Api.Core.V1.Pod
Kubernetes.Api.Core.V1.PodTemplate
Kubernetes.Api.Core.V1.ReplicationController
Kubernetes.Api.Core.V1.ResourceQuota
Kubernetes.Api.Core.V1.Secret
Kubernetes.Api.Core.V1.Service
Kubernetes.Api.Core.V1.ServiceAccount
Kubernetes.Api.Events
Kubernetes.Api.Events.Event
Kubernetes.Api.Extensions
Kubernetes.Api.Extensions.V1Beta1
Kubernetes.Api.Extensions.V1Beta1.DaemonSet
Kubernetes.Api.Extensions.V1Beta1.Deployment
Kubernetes.Api.Extensions.V1Beta1.DeploymentRollback
Kubernetes.Api.Extensions.V1Beta1.Ingress
Kubernetes.Api.Extensions.V1Beta1.NetworkPolicy
Kubernetes.Api.Extensions.V1Beta1.PodSecurityPolicy
Kubernetes.Api.Extensions.V1Beta1.ReplicaSet
Kubernetes.Api.Extensions.V1Beta1.Scale
Kubernetes.Api.Lens
Kubernetes.Api.Logs
Kubernetes.Api.Meta.V1
Kubernetes.Api.Networking
Kubernetes.Api.Networking.V1
Kubernetes.Api.Networking.V1.NetworkPolicy
Kubernetes.Api.Policy
Kubernetes.Api.Policy.V1Beta1
Kubernetes.Api.Policy.V1Beta1.Eviction
Kubernetes.Api.Policy.V1Beta1.PodDisruptionBudget
Kubernetes.Api.Rbac
Kubernetes.Api.Rbac.V1
Kubernetes.Api.Rbac.V1.ClusterRole
Kubernetes.Api.Rbac.V1.ClusterRoleBinding
Kubernetes.Api.Rbac.V1.Role
Kubernetes.Api.Rbac.V1.RoleBinding
Kubernetes.Api.Rbac.V1Alpha1
Kubernetes.Api.Rbac.V1Alpha1.ClusterRole
Kubernetes.Api.Rbac.V1Alpha1.ClusterRoleBinding
Kubernetes.Api.Rbac.V1Alpha1.Role
Kubernetes.Api.Rbac.V1Alpha1.RoleBinding
Kubernetes.Api.Rbac.V1Beta1
Kubernetes.Api.Rbac.V1Beta1.ClusterRole
Kubernetes.Api.Rbac.V1Beta1.ClusterRoleBinding
Kubernetes.Api.Rbac.V1Beta1.Role
Kubernetes.Api.Rbac.V1Beta1.RoleBinding
Kubernetes.Api.Resource
Kubernetes.Api.Runtime
Kubernetes.Api.Scheduling
Kubernetes.Api.Scheduling.V1Alpha1
Kubernetes.Api.Scheduling.V1Alpha1.PriorityClass
Kubernetes.Api.Settings
Kubernetes.Api.Settings.V1Alpha1
Kubernetes.Api.Settings.V1Alpha1.PodPreset
Kubernetes.Api.Storage
Kubernetes.Api.Storage.V1
Kubernetes.Api.Storage.V1.StorageClass
Kubernetes.Api.Storage.V1Alpha1
Kubernetes.Api.Storage.V1Alpha1.VolumeAttachment
Kubernetes.Api.Storage.V1Beta1
Kubernetes.Api.Storage.V1Beta1.StorageClass
Kubernetes.Api.Util
Kubernetes.Api.Version
Kubernetes.Client
Kubernetes.Config
Kubernetes.Default
Kubernetes.Generation.AST
Kubernetes.Generation.Emitter
Kubernetes.Generation.GenerateApi
Kubernetes.Generation.GenerateDefinitions
Kubernetes.Generation.GenerateSchemaType
Kubernetes.Generation.Generation
Kubernetes.Generation.JsonSchema
Kubernetes.Generation.Main
Kubernetes.Generation.Names
Kubernetes.Generation.Passes.AddDependencyImports
Kubernetes.Generation.Passes.GenerateLenses
Kubernetes.Generation.Passes.HelperLenses
Kubernetes.Generation.Passes.PrefixNamespace
Kubernetes.Generation.Passes.ResolveLocalRefs
Kubernetes.Generation.PathParsing
Kubernetes.Generation.Swagger
Kubernetes.Json
Kubernetes.QueryString
Kubernetes.Request
Kubernetes.RequestOptions
Kubernetes.SchemaExtensions