Skip to content

Latest commit

 

History

History
567 lines (391 loc) · 36.7 KB

PersistentVolumeClaimAPI.md

File metadata and controls

567 lines (391 loc) · 36.7 KB

\PersistentVolumeClaimAPI

All URIs are relative to https://napi.arvancloud.ir/paas/v1/regions/ir-thr-at1/o

Method HTTP request Description
CreateNamespacedPersistentVolumeClaim Post /api/v1/namespaces/{namespace}/persistentvolumeclaims create a PersistentVolumeClaim
DeleteNamespacedPersistentVolumeClaim Delete /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name} delete a PersistentVolumeClaim
DeletecollectionNamespacedPersistentVolumeClaim Delete /api/v1/namespaces/{namespace}/persistentvolumeclaims delete collection of PersistentVolumeClaim
ListNamespacedPersistentVolumeClaim Get /api/v1/namespaces/{namespace}/persistentvolumeclaims list or watch objects of kind PersistentVolumeClaim
PatchNamespacedPersistentVolumeClaim Patch /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name} partially update the specified PersistentVolumeClaim
ReadNamespacedPersistentVolumeClaim Get /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name} read the specified PersistentVolumeClaim
ReplaceNamespacedPersistentVolumeClaim Put /api/v1/namespaces/{namespace}/persistentvolumeclaims/{name} replace the specified PersistentVolumeClaim

CreateNamespacedPersistentVolumeClaim

V1PersistentVolumeClaim CreateNamespacedPersistentVolumeClaim(ctx, namespace).Body(body).Pretty(pretty).Execute()

create a PersistentVolumeClaim

Example

package main

import (
    "context"
    "fmt"
    "os"
    openapiclient "github.com/hamidfzm/arvancloud-go/paas"
)

func main() {
    namespace := "namespace_example" // string | object name and auth scope, such as for teams and projects
    body := *openapiclient.NewV1PersistentVolumeClaim() // V1PersistentVolumeClaim | 
    pretty := "pretty_example" // string | If 'true', then the output is pretty printed. (optional)

    configuration := openapiclient.NewConfiguration()
    apiClient := openapiclient.NewAPIClient(configuration)
    resp, r, err := apiClient.PersistentVolumeClaimAPI.CreateNamespacedPersistentVolumeClaim(context.Background(), namespace).Body(body).Pretty(pretty).Execute()
    if err != nil {
        fmt.Fprintf(os.Stderr, "Error when calling `PersistentVolumeClaimAPI.CreateNamespacedPersistentVolumeClaim``: %v\n", err)
        fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
    }
    // response from `CreateNamespacedPersistentVolumeClaim`: V1PersistentVolumeClaim
    fmt.Fprintf(os.Stdout, "Response from `PersistentVolumeClaimAPI.CreateNamespacedPersistentVolumeClaim`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
namespace string object name and auth scope, such as for teams and projects

Other Parameters

Other parameters are passed through a pointer to a apiCreateNamespacedPersistentVolumeClaimRequest struct via the builder pattern

Name Type Description Notes

body | V1PersistentVolumeClaim | | pretty | string | If 'true', then the output is pretty printed. |

Return type

V1PersistentVolumeClaim

Authorization

ApiKeyAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json, application/yaml, application/vnd.kubernetes.protobuf

[Back to top] [Back to API list] [Back to Model list] [Back to README]

DeleteNamespacedPersistentVolumeClaim

V1Status DeleteNamespacedPersistentVolumeClaim(ctx, namespace, name).Body(body).Pretty(pretty).GracePeriodSeconds(gracePeriodSeconds).OrphanDependents(orphanDependents).PropagationPolicy(propagationPolicy).Execute()

delete a PersistentVolumeClaim

Example

package main

import (
    "context"
    "fmt"
    "os"
    openapiclient "github.com/hamidfzm/arvancloud-go/paas"
)

func main() {
    namespace := "namespace_example" // string | object name and auth scope, such as for teams and projects
    name := "name_example" // string | name of the PersistentVolumeClaim
    body := *openapiclient.NewV1DeleteOptions() // V1DeleteOptions | 
    pretty := "pretty_example" // string | If 'true', then the output is pretty printed. (optional)
    gracePeriodSeconds := int32(56) // int32 | 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. (optional)
    orphanDependents := true // bool | 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. (optional)
    propagationPolicy := "propagationPolicy_example" // string | 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. (optional)

    configuration := openapiclient.NewConfiguration()
    apiClient := openapiclient.NewAPIClient(configuration)
    resp, r, err := apiClient.PersistentVolumeClaimAPI.DeleteNamespacedPersistentVolumeClaim(context.Background(), namespace, name).Body(body).Pretty(pretty).GracePeriodSeconds(gracePeriodSeconds).OrphanDependents(orphanDependents).PropagationPolicy(propagationPolicy).Execute()
    if err != nil {
        fmt.Fprintf(os.Stderr, "Error when calling `PersistentVolumeClaimAPI.DeleteNamespacedPersistentVolumeClaim``: %v\n", err)
        fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
    }
    // response from `DeleteNamespacedPersistentVolumeClaim`: V1Status
    fmt.Fprintf(os.Stdout, "Response from `PersistentVolumeClaimAPI.DeleteNamespacedPersistentVolumeClaim`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
namespace string object name and auth scope, such as for teams and projects
name string name of the PersistentVolumeClaim

Other Parameters

Other parameters are passed through a pointer to a apiDeleteNamespacedPersistentVolumeClaimRequest struct via the builder pattern

Name Type Description Notes

body | V1DeleteOptions | | pretty | string | If 'true', then the output is pretty printed. | gracePeriodSeconds | int32 | 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 | bool | 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 | string | 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. |

Return type

V1Status

Authorization

ApiKeyAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json, application/yaml, application/vnd.kubernetes.protobuf

[Back to top] [Back to API list] [Back to Model list] [Back to README]

DeletecollectionNamespacedPersistentVolumeClaim

V1Status DeletecollectionNamespacedPersistentVolumeClaim(ctx, namespace).Pretty(pretty).LabelSelector(labelSelector).FieldSelector(fieldSelector).IncludeUninitialized(includeUninitialized).Watch(watch).ResourceVersion(resourceVersion).TimeoutSeconds(timeoutSeconds).Limit(limit).Continue_(continue_).Execute()

delete collection of PersistentVolumeClaim

Example

package main

import (
    "context"
    "fmt"
    "os"
    openapiclient "github.com/hamidfzm/arvancloud-go/paas"
)

func main() {
    namespace := "namespace_example" // string | object name and auth scope, such as for teams and projects
    pretty := "pretty_example" // string | If 'true', then the output is pretty printed. (optional)
    labelSelector := "labelSelector_example" // string | A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
    fieldSelector := "fieldSelector_example" // string | A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
    includeUninitialized := true // bool | If true, partially initialized resources are included in the response. (optional)
    watch := true // bool | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional)
    resourceVersion := "resourceVersion_example" // string | 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. (optional)
    timeoutSeconds := int32(56) // int32 | Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
    limit := int32(56) // int32 | 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. (optional)
    continue_ := "continue__example" // string | 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. (optional)

    configuration := openapiclient.NewConfiguration()
    apiClient := openapiclient.NewAPIClient(configuration)
    resp, r, err := apiClient.PersistentVolumeClaimAPI.DeletecollectionNamespacedPersistentVolumeClaim(context.Background(), namespace).Pretty(pretty).LabelSelector(labelSelector).FieldSelector(fieldSelector).IncludeUninitialized(includeUninitialized).Watch(watch).ResourceVersion(resourceVersion).TimeoutSeconds(timeoutSeconds).Limit(limit).Continue_(continue_).Execute()
    if err != nil {
        fmt.Fprintf(os.Stderr, "Error when calling `PersistentVolumeClaimAPI.DeletecollectionNamespacedPersistentVolumeClaim``: %v\n", err)
        fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
    }
    // response from `DeletecollectionNamespacedPersistentVolumeClaim`: V1Status
    fmt.Fprintf(os.Stdout, "Response from `PersistentVolumeClaimAPI.DeletecollectionNamespacedPersistentVolumeClaim`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
namespace string object name and auth scope, such as for teams and projects

Other Parameters

Other parameters are passed through a pointer to a apiDeletecollectionNamespacedPersistentVolumeClaimRequest struct via the builder pattern

Name Type Description Notes

pretty | string | If 'true', then the output is pretty printed. | labelSelector | string | A selector to restrict the list of returned objects by their labels. Defaults to everything. | fieldSelector | string | A selector to restrict the list of returned objects by their fields. Defaults to everything. | includeUninitialized | bool | If true, partially initialized resources are included in the response. | watch | bool | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | resourceVersion | string | 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 | int32 | Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. | limit | int32 | 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. | continue_ | string | 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. |

Return type

V1Status

Authorization

ApiKeyAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json, application/yaml, application/vnd.kubernetes.protobuf

[Back to top] [Back to API list] [Back to Model list] [Back to README]

ListNamespacedPersistentVolumeClaim

V1PersistentVolumeClaimList ListNamespacedPersistentVolumeClaim(ctx, namespace).Pretty(pretty).LabelSelector(labelSelector).FieldSelector(fieldSelector).IncludeUninitialized(includeUninitialized).Watch(watch).ResourceVersion(resourceVersion).TimeoutSeconds(timeoutSeconds).Limit(limit).Continue_(continue_).Execute()

list or watch objects of kind PersistentVolumeClaim

Example

package main

import (
    "context"
    "fmt"
    "os"
    openapiclient "github.com/hamidfzm/arvancloud-go/paas"
)

func main() {
    namespace := "namespace_example" // string | object name and auth scope, such as for teams and projects
    pretty := "pretty_example" // string | If 'true', then the output is pretty printed. (optional)
    labelSelector := "labelSelector_example" // string | A selector to restrict the list of returned objects by their labels. Defaults to everything. (optional)
    fieldSelector := "fieldSelector_example" // string | A selector to restrict the list of returned objects by their fields. Defaults to everything. (optional)
    includeUninitialized := true // bool | If true, partially initialized resources are included in the response. (optional)
    watch := true // bool | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. (optional)
    resourceVersion := "resourceVersion_example" // string | 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. (optional)
    timeoutSeconds := int32(56) // int32 | Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. (optional)
    limit := int32(56) // int32 | 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. (optional)
    continue_ := "continue__example" // string | 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. (optional)

    configuration := openapiclient.NewConfiguration()
    apiClient := openapiclient.NewAPIClient(configuration)
    resp, r, err := apiClient.PersistentVolumeClaimAPI.ListNamespacedPersistentVolumeClaim(context.Background(), namespace).Pretty(pretty).LabelSelector(labelSelector).FieldSelector(fieldSelector).IncludeUninitialized(includeUninitialized).Watch(watch).ResourceVersion(resourceVersion).TimeoutSeconds(timeoutSeconds).Limit(limit).Continue_(continue_).Execute()
    if err != nil {
        fmt.Fprintf(os.Stderr, "Error when calling `PersistentVolumeClaimAPI.ListNamespacedPersistentVolumeClaim``: %v\n", err)
        fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
    }
    // response from `ListNamespacedPersistentVolumeClaim`: V1PersistentVolumeClaimList
    fmt.Fprintf(os.Stdout, "Response from `PersistentVolumeClaimAPI.ListNamespacedPersistentVolumeClaim`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
namespace string object name and auth scope, such as for teams and projects

Other Parameters

Other parameters are passed through a pointer to a apiListNamespacedPersistentVolumeClaimRequest struct via the builder pattern

Name Type Description Notes

pretty | string | If 'true', then the output is pretty printed. | labelSelector | string | A selector to restrict the list of returned objects by their labels. Defaults to everything. | fieldSelector | string | A selector to restrict the list of returned objects by their fields. Defaults to everything. | includeUninitialized | bool | If true, partially initialized resources are included in the response. | watch | bool | Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | resourceVersion | string | 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 | int32 | Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. | limit | int32 | 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. | continue_ | string | 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. |

Return type

V1PersistentVolumeClaimList

Authorization

ApiKeyAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json, application/yaml, application/vnd.kubernetes.protobuf, application/json;stream=watch, application/vnd.kubernetes.protobuf;stream=watch

[Back to top] [Back to API list] [Back to Model list] [Back to README]

PatchNamespacedPersistentVolumeClaim

V1PersistentVolumeClaim PatchNamespacedPersistentVolumeClaim(ctx, namespace, name).Body(body).Pretty(pretty).Execute()

partially update the specified PersistentVolumeClaim

Example

package main

import (
    "context"
    "fmt"
    "os"
    openapiclient "github.com/hamidfzm/arvancloud-go/paas"
)

func main() {
    namespace := "namespace_example" // string | object name and auth scope, such as for teams and projects
    name := "name_example" // string | name of the PersistentVolumeClaim
    body := map[string]interface{}{ ... } // map[string]interface{} | 
    pretty := "pretty_example" // string | If 'true', then the output is pretty printed. (optional)

    configuration := openapiclient.NewConfiguration()
    apiClient := openapiclient.NewAPIClient(configuration)
    resp, r, err := apiClient.PersistentVolumeClaimAPI.PatchNamespacedPersistentVolumeClaim(context.Background(), namespace, name).Body(body).Pretty(pretty).Execute()
    if err != nil {
        fmt.Fprintf(os.Stderr, "Error when calling `PersistentVolumeClaimAPI.PatchNamespacedPersistentVolumeClaim``: %v\n", err)
        fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
    }
    // response from `PatchNamespacedPersistentVolumeClaim`: V1PersistentVolumeClaim
    fmt.Fprintf(os.Stdout, "Response from `PersistentVolumeClaimAPI.PatchNamespacedPersistentVolumeClaim`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
namespace string object name and auth scope, such as for teams and projects
name string name of the PersistentVolumeClaim

Other Parameters

Other parameters are passed through a pointer to a apiPatchNamespacedPersistentVolumeClaimRequest struct via the builder pattern

Name Type Description Notes

body | map[string]interface{} | | pretty | string | If 'true', then the output is pretty printed. |

Return type

V1PersistentVolumeClaim

Authorization

ApiKeyAuth

HTTP request headers

  • Content-Type: application/json-patch+json, application/merge-patch+json, application/strategic-merge-patch+json
  • Accept: application/json, application/yaml, application/vnd.kubernetes.protobuf

[Back to top] [Back to API list] [Back to Model list] [Back to README]

ReadNamespacedPersistentVolumeClaim

V1PersistentVolumeClaim ReadNamespacedPersistentVolumeClaim(ctx, namespace, name).Pretty(pretty).Export(export).Exact(exact).Execute()

read the specified PersistentVolumeClaim

Example

package main

import (
    "context"
    "fmt"
    "os"
    openapiclient "github.com/hamidfzm/arvancloud-go/paas"
)

func main() {
    namespace := "namespace_example" // string | object name and auth scope, such as for teams and projects
    name := "name_example" // string | name of the PersistentVolumeClaim
    pretty := "pretty_example" // string | If 'true', then the output is pretty printed. (optional)
    export := true // bool | Should this value be exported.  Export strips fields that a user can not specify. (optional)
    exact := true // bool | Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. (optional)

    configuration := openapiclient.NewConfiguration()
    apiClient := openapiclient.NewAPIClient(configuration)
    resp, r, err := apiClient.PersistentVolumeClaimAPI.ReadNamespacedPersistentVolumeClaim(context.Background(), namespace, name).Pretty(pretty).Export(export).Exact(exact).Execute()
    if err != nil {
        fmt.Fprintf(os.Stderr, "Error when calling `PersistentVolumeClaimAPI.ReadNamespacedPersistentVolumeClaim``: %v\n", err)
        fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
    }
    // response from `ReadNamespacedPersistentVolumeClaim`: V1PersistentVolumeClaim
    fmt.Fprintf(os.Stdout, "Response from `PersistentVolumeClaimAPI.ReadNamespacedPersistentVolumeClaim`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
namespace string object name and auth scope, such as for teams and projects
name string name of the PersistentVolumeClaim

Other Parameters

Other parameters are passed through a pointer to a apiReadNamespacedPersistentVolumeClaimRequest struct via the builder pattern

Name Type Description Notes

pretty | string | If 'true', then the output is pretty printed. | export | bool | Should this value be exported. Export strips fields that a user can not specify. | exact | bool | Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. |

Return type

V1PersistentVolumeClaim

Authorization

ApiKeyAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json, application/yaml, application/vnd.kubernetes.protobuf

[Back to top] [Back to API list] [Back to Model list] [Back to README]

ReplaceNamespacedPersistentVolumeClaim

V1PersistentVolumeClaim ReplaceNamespacedPersistentVolumeClaim(ctx, namespace, name).Body(body).Pretty(pretty).Execute()

replace the specified PersistentVolumeClaim

Example

package main

import (
    "context"
    "fmt"
    "os"
    openapiclient "github.com/hamidfzm/arvancloud-go/paas"
)

func main() {
    namespace := "namespace_example" // string | object name and auth scope, such as for teams and projects
    name := "name_example" // string | name of the PersistentVolumeClaim
    body := *openapiclient.NewV1PersistentVolumeClaim() // V1PersistentVolumeClaim | 
    pretty := "pretty_example" // string | If 'true', then the output is pretty printed. (optional)

    configuration := openapiclient.NewConfiguration()
    apiClient := openapiclient.NewAPIClient(configuration)
    resp, r, err := apiClient.PersistentVolumeClaimAPI.ReplaceNamespacedPersistentVolumeClaim(context.Background(), namespace, name).Body(body).Pretty(pretty).Execute()
    if err != nil {
        fmt.Fprintf(os.Stderr, "Error when calling `PersistentVolumeClaimAPI.ReplaceNamespacedPersistentVolumeClaim``: %v\n", err)
        fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
    }
    // response from `ReplaceNamespacedPersistentVolumeClaim`: V1PersistentVolumeClaim
    fmt.Fprintf(os.Stdout, "Response from `PersistentVolumeClaimAPI.ReplaceNamespacedPersistentVolumeClaim`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
namespace string object name and auth scope, such as for teams and projects
name string name of the PersistentVolumeClaim

Other Parameters

Other parameters are passed through a pointer to a apiReplaceNamespacedPersistentVolumeClaimRequest struct via the builder pattern

Name Type Description Notes

body | V1PersistentVolumeClaim | | pretty | string | If 'true', then the output is pretty printed. |

Return type

V1PersistentVolumeClaim

Authorization

ApiKeyAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json, application/yaml, application/vnd.kubernetes.protobuf

[Back to top] [Back to API list] [Back to Model list] [Back to README]