Module

Kubernetes.Api.CoreV1.Pod

Package
purescript-kubernetes
Repository
hoodunit/purescript-kubernetes

#connectDeleteNamespacedProxy Source

connectDeleteNamespacedProxy :: forall e. Config -> String -> String -> Aff (http :: HTTP | e) (Either Status String)

connect DELETE requests to proxy of Pod

#connectDeleteNamespacedProxyWithPath Source

connectDeleteNamespacedProxyWithPath :: forall e. Config -> String -> String -> String -> Aff (http :: HTTP | e) (Either Status String)

connect DELETE requests to proxy of Pod

#connectGetNamespacedAttach Source

connectGetNamespacedAttach :: forall e. Config -> String -> String -> Aff (http :: HTTP | e) (Either Status String)

connect GET requests to attach of Pod

#connectGetNamespacedExec Source

connectGetNamespacedExec :: forall e. Config -> String -> String -> Aff (http :: HTTP | e) (Either Status String)

connect GET requests to exec of Pod

#connectGetNamespacedPortforward Source

connectGetNamespacedPortforward :: forall e. Config -> String -> String -> Aff (http :: HTTP | e) (Either Status String)

connect GET requests to portforward of Pod

#connectGetNamespacedProxy Source

connectGetNamespacedProxy :: forall e. Config -> String -> String -> Aff (http :: HTTP | e) (Either Status String)

connect GET requests to proxy of Pod

#connectGetNamespacedProxyWithPath Source

connectGetNamespacedProxyWithPath :: forall e. Config -> String -> String -> String -> Aff (http :: HTTP | e) (Either Status String)

connect GET requests to proxy of Pod

#connectHeadNamespacedProxy Source

connectHeadNamespacedProxy :: forall e. Config -> String -> String -> Aff (http :: HTTP | e) (Either Status String)

connect HEAD requests to proxy of Pod

#connectHeadNamespacedProxyWithPath Source

connectHeadNamespacedProxyWithPath :: forall e. Config -> String -> String -> String -> Aff (http :: HTTP | e) (Either Status String)

connect HEAD requests to proxy of Pod

#connectOptionsNamespacedProxy Source

connectOptionsNamespacedProxy :: forall e. Config -> String -> String -> Aff (http :: HTTP | e) (Either Status String)

connect OPTIONS requests to proxy of Pod

#connectOptionsNamespacedProxyWithPath Source

connectOptionsNamespacedProxyWithPath :: forall e. Config -> String -> String -> String -> Aff (http :: HTTP | e) (Either Status String)

connect OPTIONS requests to proxy of Pod

#connectPostNamespacedAttach Source

connectPostNamespacedAttach :: forall e. Config -> String -> String -> Aff (http :: HTTP | e) (Either Status String)

connect POST requests to attach of Pod

#connectPostNamespacedExec Source

connectPostNamespacedExec :: forall e. Config -> String -> String -> Aff (http :: HTTP | e) (Either Status String)

connect POST requests to exec of Pod

#connectPostNamespacedPortforward Source

connectPostNamespacedPortforward :: forall e. Config -> String -> String -> Aff (http :: HTTP | e) (Either Status String)

connect POST requests to portforward of Pod

#connectPostNamespacedProxy Source

connectPostNamespacedProxy :: forall e. Config -> String -> String -> Aff (http :: HTTP | e) (Either Status String)

connect POST requests to proxy of Pod

#connectPostNamespacedProxyWithPath Source

connectPostNamespacedProxyWithPath :: forall e. Config -> String -> String -> String -> Aff (http :: HTTP | e) (Either Status String)

connect POST requests to proxy of Pod

#connectPutNamespacedProxy Source

connectPutNamespacedProxy :: forall e. Config -> String -> String -> Aff (http :: HTTP | e) (Either Status String)

connect PUT requests to proxy of Pod

#connectPutNamespacedProxyWithPath Source

connectPutNamespacedProxyWithPath :: forall e. Config -> String -> String -> String -> Aff (http :: HTTP | e) (Either Status String)

connect PUT requests to proxy of Pod

#createNamespaced Source

createNamespaced :: forall e. Config -> String -> Pod -> Aff (http :: HTTP | e) (Either Status Pod)

create a Pod

#DeleteCollectionNamespacedOptions Source

newtype DeleteCollectionNamespacedOptions

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

#deleteCollectionNamespaced Source

deleteCollectionNamespaced :: forall e. Config -> String -> DeleteCollectionNamespacedOptions -> Aff (http :: HTTP | e) (Either Status Status)

delete collection of Pod

#DeleteNamespacedOptions Source

newtype DeleteNamespacedOptions

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

#deleteNamespaced Source

deleteNamespaced :: forall e. Config -> String -> String -> DeleteOptions -> DeleteNamespacedOptions -> Aff (http :: HTTP | e) (Either Status Status)

delete a Pod

#listForAllNamespaces Source

listForAllNamespaces :: forall e. Config -> Aff (http :: HTTP | e) (Either Status PodList)

list or watch objects of kind Pod

#ListNamespacedOptions Source

newtype ListNamespacedOptions

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

#listNamespaced Source

listNamespaced :: forall e. Config -> String -> ListNamespacedOptions -> Aff (http :: HTTP | e) (Either Status PodList)

list or watch objects of kind Pod

#proxyDELETENamespaced Source

proxyDELETENamespaced :: forall e. Config -> String -> String -> Aff (http :: HTTP | e) (Either Status String)

proxy DELETE requests to Pod

#proxyDELETENamespacedWithPath Source

proxyDELETENamespacedWithPath :: forall e. Config -> String -> String -> String -> Aff (http :: HTTP | e) (Either Status String)

proxy DELETE requests to Pod

#proxyGETNamespaced Source

proxyGETNamespaced :: forall e. Config -> String -> String -> Aff (http :: HTTP | e) (Either Status String)

proxy GET requests to Pod

#proxyGETNamespacedWithPath Source

proxyGETNamespacedWithPath :: forall e. Config -> String -> String -> String -> Aff (http :: HTTP | e) (Either Status String)

proxy GET requests to Pod

#proxyHEADNamespaced Source

proxyHEADNamespaced :: forall e. Config -> String -> String -> Aff (http :: HTTP | e) (Either Status String)

proxy HEAD requests to Pod

#proxyHEADNamespacedWithPath Source

proxyHEADNamespacedWithPath :: forall e. Config -> String -> String -> String -> Aff (http :: HTTP | e) (Either Status String)

proxy HEAD requests to Pod

#proxyOPTIONSNamespaced Source

proxyOPTIONSNamespaced :: forall e. Config -> String -> String -> Aff (http :: HTTP | e) (Either Status String)

proxy OPTIONS requests to Pod

#proxyOPTIONSNamespacedWithPath Source

proxyOPTIONSNamespacedWithPath :: forall e. Config -> String -> String -> String -> Aff (http :: HTTP | e) (Either Status String)

proxy OPTIONS requests to Pod

#proxyPOSTNamespaced Source

proxyPOSTNamespaced :: forall e. Config -> String -> String -> Aff (http :: HTTP | e) (Either Status String)

proxy POST requests to Pod

#proxyPOSTNamespacedWithPath Source

proxyPOSTNamespacedWithPath :: forall e. Config -> String -> String -> String -> Aff (http :: HTTP | e) (Either Status String)

proxy POST requests to Pod

#proxyPUTNamespaced Source

proxyPUTNamespaced :: forall e. Config -> String -> String -> Aff (http :: HTTP | e) (Either Status String)

proxy PUT requests to Pod

#proxyPUTNamespacedWithPath Source

proxyPUTNamespacedWithPath :: forall e. Config -> String -> String -> String -> Aff (http :: HTTP | e) (Either Status String)

proxy PUT requests to Pod

#ReadNamespacedOptions Source

newtype ReadNamespacedOptions

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

#readNamespaced Source

readNamespaced :: forall e. Config -> String -> String -> ReadNamespacedOptions -> Aff (http :: HTTP | e) (Either Status Pod)

read the specified Pod

#readNamespacedLog Source

readNamespacedLog :: forall e. Config -> String -> String -> Aff (http :: HTTP | e) (Either Status String)

read log of the specified Pod

#readNamespacedStatus Source

readNamespacedStatus :: forall e. Config -> String -> String -> Aff (http :: HTTP | e) (Either Status Pod)

read status of the specified Pod

#replaceNamespaced Source

replaceNamespaced :: forall e. Config -> String -> String -> Pod -> Aff (http :: HTTP | e) (Either Status Pod)

replace the specified Pod

#replaceNamespacedStatus Source

replaceNamespacedStatus :: forall e. Config -> String -> String -> Pod -> Aff (http :: HTTP | e) (Either Status Pod)

replace status of the specified Pod

#watchListForAllNamespaces Source

watchListForAllNamespaces :: forall e. Config -> Aff (http :: HTTP | e) (Either Status WatchEvent)

watch individual changes to a list of Pod

#watchNamespaced Source

watchNamespaced :: forall e. Config -> String -> String -> Aff (http :: HTTP | e) (Either Status WatchEvent)

watch changes to an object of kind Pod

#watchNamespacedList Source

watchNamespacedList :: forall e. Config -> String -> Aff (http :: HTTP | e) (Either Status WatchEvent)

watch individual changes to a list of Pod

Modules
Kubernetes.Api.APIExtensions
Kubernetes.Api.APIExtensionsV1Beta1
Kubernetes.Api.APIExtensionsV1Beta1.CustomResourceDefinition
Kubernetes.Api.AdmissionRegistration
Kubernetes.Api.AdmissionRegistrationV1Alpha1
Kubernetes.Api.AdmissionRegistrationV1Alpha1.InitializerConfiguration
Kubernetes.Api.AdmissionRegistrationV1Beta1
Kubernetes.Api.AdmissionRegistrationV1Beta1.MutatingWebhookConfiguration
Kubernetes.Api.AdmissionRegistrationV1Beta1.ValidatingWebhookConfiguration
Kubernetes.Api.ApiRegistration
Kubernetes.Api.ApiRegistrationV1Beta1
Kubernetes.Api.ApiRegistrationV1Beta1.APIService
Kubernetes.Api.Apis
Kubernetes.Api.Apps
Kubernetes.Api.AppsV1
Kubernetes.Api.AppsV1.ControllerRevision
Kubernetes.Api.AppsV1.DaemonSet
Kubernetes.Api.AppsV1.Deployment
Kubernetes.Api.AppsV1.ReplicaSet
Kubernetes.Api.AppsV1.StatefulSet
Kubernetes.Api.AppsV1Beta1
Kubernetes.Api.AppsV1Beta1.ControllerRevision
Kubernetes.Api.AppsV1Beta1.Deployment
Kubernetes.Api.AppsV1Beta1.DeploymentRollback
Kubernetes.Api.AppsV1Beta1.Scale
Kubernetes.Api.AppsV1Beta1.StatefulSet
Kubernetes.Api.AppsV1Beta2
Kubernetes.Api.AppsV1Beta2.ControllerRevision
Kubernetes.Api.AppsV1Beta2.DaemonSet
Kubernetes.Api.AppsV1Beta2.Deployment
Kubernetes.Api.AppsV1Beta2.ReplicaSet
Kubernetes.Api.AppsV1Beta2.Scale
Kubernetes.Api.AppsV1Beta2.StatefulSet
Kubernetes.Api.Authentication
Kubernetes.Api.AuthenticationV1
Kubernetes.Api.AuthenticationV1.TokenReview
Kubernetes.Api.AuthenticationV1Beta1
Kubernetes.Api.AuthenticationV1Beta1.TokenReview
Kubernetes.Api.Authorization
Kubernetes.Api.AuthorizationV1
Kubernetes.Api.AuthorizationV1.LocalSubjectAccessReview
Kubernetes.Api.AuthorizationV1.SelfSubjectAccessReview
Kubernetes.Api.AuthorizationV1.SelfSubjectRulesReview
Kubernetes.Api.AuthorizationV1.SubjectAccessReview
Kubernetes.Api.AuthorizationV1Beta1
Kubernetes.Api.AuthorizationV1Beta1.LocalSubjectAccessReview
Kubernetes.Api.AuthorizationV1Beta1.SelfSubjectAccessReview
Kubernetes.Api.AuthorizationV1Beta1.SelfSubjectRulesReview
Kubernetes.Api.AuthorizationV1Beta1.SubjectAccessReview
Kubernetes.Api.Autoscaling
Kubernetes.Api.AutoscalingV1
Kubernetes.Api.AutoscalingV1.HorizontalPodAutoscaler
Kubernetes.Api.AutoscalingV1.Scale
Kubernetes.Api.AutoscalingV2Beta1
Kubernetes.Api.AutoscalingV2Beta1.HorizontalPodAutoscaler
Kubernetes.Api.Batch
Kubernetes.Api.BatchV1
Kubernetes.Api.BatchV1.Job
Kubernetes.Api.BatchV1Beta1
Kubernetes.Api.BatchV1Beta1.CronJob
Kubernetes.Api.BatchV2Alpha1
Kubernetes.Api.BatchV2Alpha1.CronJob
Kubernetes.Api.Certificates
Kubernetes.Api.CertificatesV1Beta1
Kubernetes.Api.CertificatesV1Beta1.CertificateSigningRequest
Kubernetes.Api.Core
Kubernetes.Api.CoreV1
Kubernetes.Api.CoreV1.Binding
Kubernetes.Api.CoreV1.ComponentStatus
Kubernetes.Api.CoreV1.ConfigMap
Kubernetes.Api.CoreV1.Endpoints
Kubernetes.Api.CoreV1.Event
Kubernetes.Api.CoreV1.LimitRange
Kubernetes.Api.CoreV1.Namespace
Kubernetes.Api.CoreV1.Node
Kubernetes.Api.CoreV1.PersistentVolume
Kubernetes.Api.CoreV1.PersistentVolumeClaim
Kubernetes.Api.CoreV1.Pod
Kubernetes.Api.CoreV1.PodTemplate
Kubernetes.Api.CoreV1.ReplicationController
Kubernetes.Api.CoreV1.ResourceQuota
Kubernetes.Api.CoreV1.Secret
Kubernetes.Api.CoreV1.Service
Kubernetes.Api.CoreV1.ServiceAccount
Kubernetes.Api.Events
Kubernetes.Api.Events.Event
Kubernetes.Api.Extensions
Kubernetes.Api.ExtensionsV1Beta1
Kubernetes.Api.ExtensionsV1Beta1.DaemonSet
Kubernetes.Api.ExtensionsV1Beta1.Deployment
Kubernetes.Api.ExtensionsV1Beta1.DeploymentRollback
Kubernetes.Api.ExtensionsV1Beta1.Ingress
Kubernetes.Api.ExtensionsV1Beta1.NetworkPolicy
Kubernetes.Api.ExtensionsV1Beta1.PodSecurityPolicy
Kubernetes.Api.ExtensionsV1Beta1.ReplicaSet
Kubernetes.Api.ExtensionsV1Beta1.Scale
Kubernetes.Api.Lens
Kubernetes.Api.Logs
Kubernetes.Api.MetaV1
Kubernetes.Api.Networking
Kubernetes.Api.NetworkingV1
Kubernetes.Api.NetworkingV1.NetworkPolicy
Kubernetes.Api.Policy
Kubernetes.Api.PolicyV1Beta1
Kubernetes.Api.PolicyV1Beta1.Eviction
Kubernetes.Api.PolicyV1Beta1.PodDisruptionBudget
Kubernetes.Api.Rbac
Kubernetes.Api.RbacV1
Kubernetes.Api.RbacV1.ClusterRole
Kubernetes.Api.RbacV1.ClusterRoleBinding
Kubernetes.Api.RbacV1.Role
Kubernetes.Api.RbacV1.RoleBinding
Kubernetes.Api.RbacV1Alpha1
Kubernetes.Api.RbacV1Alpha1.ClusterRole
Kubernetes.Api.RbacV1Alpha1.ClusterRoleBinding
Kubernetes.Api.RbacV1Alpha1.Role
Kubernetes.Api.RbacV1Alpha1.RoleBinding
Kubernetes.Api.RbacV1Beta1
Kubernetes.Api.RbacV1Beta1.ClusterRole
Kubernetes.Api.RbacV1Beta1.ClusterRoleBinding
Kubernetes.Api.RbacV1Beta1.Role
Kubernetes.Api.RbacV1Beta1.RoleBinding
Kubernetes.Api.Resource
Kubernetes.Api.Runtime
Kubernetes.Api.Scheduling
Kubernetes.Api.SchedulingV1Alpha1
Kubernetes.Api.SchedulingV1Alpha1.PriorityClass
Kubernetes.Api.Settings
Kubernetes.Api.SettingsV1Alpha1
Kubernetes.Api.SettingsV1Alpha1.PodPreset
Kubernetes.Api.Storage
Kubernetes.Api.StorageV1
Kubernetes.Api.StorageV1.StorageClass
Kubernetes.Api.StorageV1Alpha1
Kubernetes.Api.StorageV1Alpha1.VolumeAttachment
Kubernetes.Api.StorageV1Beta1
Kubernetes.Api.StorageV1Beta1.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.PathParsing
Kubernetes.Generation.Swagger
Kubernetes.Json
Kubernetes.QueryString
Kubernetes.Request
Kubernetes.RequestOptions
Kubernetes.SchemaExtensions