diff --git a/contrib/openapi-generator/generate.sh b/contrib/openapi-generator/generate.sh new file mode 100755 index 00000000000..cd92035e4ed --- /dev/null +++ b/contrib/openapi-generator/generate.sh @@ -0,0 +1,52 @@ +#!/bin/bash +set -e +trap 'echo "error: $0:$LINENO"' ERR + +[ $# -eq 1 ] +input_spec=$1 + +output_dir=$(dirname $0)/../../docs/content/en/docs/reference +[ -f $output_dir/_index.md ] + +[ -n "$OPENAPI_GENERATOR_HOME" ] + +# curr. using names with underlines, because Markdown link destinations +# must not use fragment identifiers with spaces +java -jar $OPENAPI_GENERATOR_HOME/modules/openapi-generator-cli/target/openapi-generator-cli.jar generate -g markdown \ + -i $input_spec -o $output_dir \ + --operation-id-name-mappings \ +"createCiliumIoV1alpha1NamespacedTracingPolicyNamespaced=Create_namespaced_tracing_policy",\ +"createCiliumIoV1alpha1TracingPolicy=Create_tracing_policy",\ +"deleteCiliumIoV1alpha1CollectionNamespacedTracingPolicyNamespaced=Delete_collection_of_namespaced_tracing_policies",\ +"deleteCiliumIoV1alpha1CollectionTracingPolicy=Delete_collection_of_tracing_policies",\ +"deleteCiliumIoV1alpha1NamespacedTracingPolicyNamespaced=Delete_namespaced_tracing_policy",\ +"deleteCiliumIoV1alpha1TracingPolicy=Delete_tracing_policy",\ +"listCiliumIoV1alpha1NamespacedTracingPolicyNamespaced=List_namespaced_tracing_policies",\ +"listCiliumIoV1alpha1TracingPolicy=List_tracing_policies",\ +"listCiliumIoV1alpha1TracingPolicyNamespacedForAllNamespaces=List_namespaced_tracing_policies_for_all_namespaces",\ +"patchCiliumIoV1alpha1NamespacedTracingPolicyNamespaced=Patch_namespaced_tracing_policy",\ +"patchCiliumIoV1alpha1TracingPolicy=Patch_tracing_policy",\ +"replaceCiliumIoV1alpha1NamespacedTracingPolicyNamespaced=Replace_namespaced_tracing_policy",\ +"replaceCiliumIoV1alpha1TracingPolicy=Replace_tracing_policy" + +# add Hugo front matter as in surrounding content +cat > $output_dir/tracing-policy-api.md << EOF +--- +title: Tracing Policy API +description: This reference is generated from an OpenAPI specification. +weight: 5 +--- + +EOF +cat $output_dir/README.md >> $output_dir/tracing-policy-api.md +rm $output_dir/README.md + +# some more post-processing of generated Markdown +sed -Ei \ + 's/^# Documentation .+$/# Documentation for Tracing Policy API/; + s/^All URIs are relative to .*$//; + s/^\| Class (\| Method \| HTTP request \| Description \|)$/\1/; + s/^\|------------ .+$/\| --- \| --- \| --- \|/; + s/^(\| )?\*CiliumIoV1alpha1Api\* (\| .*)$/\2/; + s/^(\|.+\|.+\|).+$/\1/' \ + $output_dir/tracing-policy-api.md diff --git a/docs/Dockerfile.hugo b/docs/Dockerfile.hugo index 60f345b4e7b..6c819f9360a 100644 --- a/docs/Dockerfile.hugo +++ b/docs/Dockerfile.hugo @@ -1,5 +1,5 @@ FROM curlimages/curl:8.00.1@sha256:9e886c104cae1072f7874c9c214f77c6758f2e8a477234e32eda5fcbfa41f225 AS downloader -ARG HUGO_VERSION=0.111.3 +ARG HUGO_VERSION=0.124.1 ARG TARGETARCH WORKDIR tmp RUN curl -L https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-${TARGETARCH}.tar.gz | tar xz diff --git a/docs/content/en/docs/reference/.gitignore b/docs/content/en/docs/reference/.gitignore new file mode 100644 index 00000000000..71d8268d779 --- /dev/null +++ b/docs/content/en/docs/reference/.gitignore @@ -0,0 +1,2 @@ +/.openapi-generator-ignore +/.openapi-generator/ diff --git a/docs/content/en/docs/reference/Apis/CiliumIoV1alpha1Api.md b/docs/content/en/docs/reference/Apis/CiliumIoV1alpha1Api.md new file mode 100644 index 00000000000..82e1bb17222 --- /dev/null +++ b/docs/content/en/docs/reference/Apis/CiliumIoV1alpha1Api.md @@ -0,0 +1,531 @@ +# CiliumIoV1alpha1Api + +All URIs are relative to *http://localhost* + +| Method | HTTP request | Description | +|------------- | ------------- | -------------| +| [**Create_namespaced_tracing_policy**](CiliumIoV1alpha1Api.md#Create_namespaced_tracing_policy) | **POST** /apis/cilium.io/v1alpha1/namespaces/{namespace}/tracingpoliciesnamespaced | | +| [**Create_tracing_policy**](CiliumIoV1alpha1Api.md#Create_tracing_policy) | **POST** /apis/cilium.io/v1alpha1/tracingpolicies | | +| [**Delete_collection_of_namespaced_tracing_policies**](CiliumIoV1alpha1Api.md#Delete_collection_of_namespaced_tracing_policies) | **DELETE** /apis/cilium.io/v1alpha1/namespaces/{namespace}/tracingpoliciesnamespaced | | +| [**Delete_collection_of_tracing_policies**](CiliumIoV1alpha1Api.md#Delete_collection_of_tracing_policies) | **DELETE** /apis/cilium.io/v1alpha1/tracingpolicies | | +| [**Delete_namespaced_tracing_policy**](CiliumIoV1alpha1Api.md#Delete_namespaced_tracing_policy) | **DELETE** /apis/cilium.io/v1alpha1/namespaces/{namespace}/tracingpoliciesnamespaced/{name} | | +| [**Delete_tracing_policy**](CiliumIoV1alpha1Api.md#Delete_tracing_policy) | **DELETE** /apis/cilium.io/v1alpha1/tracingpolicies/{name} | | +| [**List_namespaced_tracing_policies**](CiliumIoV1alpha1Api.md#List_namespaced_tracing_policies) | **GET** /apis/cilium.io/v1alpha1/namespaces/{namespace}/tracingpoliciesnamespaced | | +| [**List_namespaced_tracing_policies_for_all_namespaces**](CiliumIoV1alpha1Api.md#List_namespaced_tracing_policies_for_all_namespaces) | **GET** /apis/cilium.io/v1alpha1/tracingpoliciesnamespaced | | +| [**List_tracing_policies**](CiliumIoV1alpha1Api.md#List_tracing_policies) | **GET** /apis/cilium.io/v1alpha1/tracingpolicies | | +| [**Patch_namespaced_tracing_policy**](CiliumIoV1alpha1Api.md#Patch_namespaced_tracing_policy) | **PATCH** /apis/cilium.io/v1alpha1/namespaces/{namespace}/tracingpoliciesnamespaced/{name} | | +| [**Patch_tracing_policy**](CiliumIoV1alpha1Api.md#Patch_tracing_policy) | **PATCH** /apis/cilium.io/v1alpha1/tracingpolicies/{name} | | +| [**Replace_namespaced_tracing_policy**](CiliumIoV1alpha1Api.md#Replace_namespaced_tracing_policy) | **PUT** /apis/cilium.io/v1alpha1/namespaces/{namespace}/tracingpoliciesnamespaced/{name} | | +| [**Replace_tracing_policy**](CiliumIoV1alpha1Api.md#Replace_tracing_policy) | **PUT** /apis/cilium.io/v1alpha1/tracingpolicies/{name} | | +| [**readCiliumIoV1alpha1NamespacedTracingPolicyNamespaced**](CiliumIoV1alpha1Api.md#readCiliumIoV1alpha1NamespacedTracingPolicyNamespaced) | **GET** /apis/cilium.io/v1alpha1/namespaces/{namespace}/tracingpoliciesnamespaced/{name} | | +| [**readCiliumIoV1alpha1TracingPolicy**](CiliumIoV1alpha1Api.md#readCiliumIoV1alpha1TracingPolicy) | **GET** /apis/cilium.io/v1alpha1/tracingpolicies/{name} | | + + + +# **Create_namespaced_tracing_policy** +> io.cilium.v1alpha1.TracingPolicyNamespaced Create_namespaced_tracing_policy(namespace, pretty, dryRun, fieldManager, fieldValidation, io.cilium.v1alpha1.TracingPolicyNamespaced) + + + + create a TracingPolicyNamespaced + +### Parameters + +|Name | Type | Description | Notes | +|------------- | ------------- | ------------- | -------------| +| **namespace** | **String**| object name and auth scope, such as for teams and projects | [default to null] | +| **pretty** | **String**| If 'true', then the output is pretty printed. | [optional] [default to null] | +| **dryRun** | **String**| When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed | [optional] [default to null] | +| **fieldManager** | **String**| fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. | [optional] [default to null] | +| **fieldValidation** | **String**| fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. | [optional] [default to null] | +| **io.cilium.v1alpha1.TracingPolicyNamespaced** | [**io.cilium.v1alpha1.TracingPolicyNamespaced**](../Models/io.cilium.v1alpha1.TracingPolicyNamespaced.md)| | [optional] | + +### Return type + +[**io.cilium.v1alpha1.TracingPolicyNamespaced**](../Models/io.cilium.v1alpha1.TracingPolicyNamespaced.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: application/json, application/yaml +- **Accept**: application/json, application/yaml + + +# **Create_tracing_policy** +> io.cilium.v1alpha1.TracingPolicy Create_tracing_policy(pretty, dryRun, fieldManager, fieldValidation, io.cilium.v1alpha1.TracingPolicy) + + + + create a TracingPolicy + +### Parameters + +|Name | Type | Description | Notes | +|------------- | ------------- | ------------- | -------------| +| **pretty** | **String**| If 'true', then the output is pretty printed. | [optional] [default to null] | +| **dryRun** | **String**| When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed | [optional] [default to null] | +| **fieldManager** | **String**| fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. | [optional] [default to null] | +| **fieldValidation** | **String**| fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. | [optional] [default to null] | +| **io.cilium.v1alpha1.TracingPolicy** | [**io.cilium.v1alpha1.TracingPolicy**](../Models/io.cilium.v1alpha1.TracingPolicy.md)| | [optional] | + +### Return type + +[**io.cilium.v1alpha1.TracingPolicy**](../Models/io.cilium.v1alpha1.TracingPolicy.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: application/json, application/yaml +- **Accept**: application/json, application/yaml + + +# **Delete_collection_of_namespaced_tracing_policies** +> io.k8s.apimachinery.pkg.apis.meta.v1.Status Delete_collection_of_namespaced_tracing_policies(namespace, pretty, allowWatchBookmarks, continue, fieldSelector, labelSelector, limit, resourceVersion, resourceVersionMatch, sendInitialEvents, timeoutSeconds, watch) + + + + delete collection of TracingPolicyNamespaced + +### Parameters + +|Name | Type | Description | Notes | +|------------- | ------------- | ------------- | -------------| +| **namespace** | **String**| object name and auth scope, such as for teams and projects | [default to null] | +| **pretty** | **String**| If 'true', then the output is pretty printed. | [optional] [default to null] | +| **allowWatchBookmarks** | **Boolean**| allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. | [optional] [default to null] | +| **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 together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". 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] [default to null] | +| **fieldSelector** | **String**| A selector to restrict the list of returned objects by their fields. Defaults to everything. | [optional] [default to null] | +| **labelSelector** | **String**| A selector to restrict the list of returned objects by their labels. Defaults to everything. | [optional] [default to null] | +| **limit** | **Integer**| 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] [default to null] | +| **resourceVersion** | **String**| resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset | [optional] [default to null] | +| **resourceVersionMatch** | **String**| resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset | [optional] [default to null] | +| **sendInitialEvents** | **Boolean**| `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. | [optional] [default to null] | +| **timeoutSeconds** | **Integer**| Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. | [optional] [default to null] | +| **watch** | **Boolean**| Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | [optional] [default to null] | + +### Return type + +[**io.k8s.apimachinery.pkg.apis.meta.v1.Status**](../Models/io.k8s.apimachinery.pkg.apis.meta.v1.Status.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: application/json, application/yaml + + +# **Delete_collection_of_tracing_policies** +> io.k8s.apimachinery.pkg.apis.meta.v1.Status Delete_collection_of_tracing_policies(pretty, allowWatchBookmarks, continue, fieldSelector, labelSelector, limit, resourceVersion, resourceVersionMatch, sendInitialEvents, timeoutSeconds, watch) + + + + delete collection of TracingPolicy + +### Parameters + +|Name | Type | Description | Notes | +|------------- | ------------- | ------------- | -------------| +| **pretty** | **String**| If 'true', then the output is pretty printed. | [optional] [default to null] | +| **allowWatchBookmarks** | **Boolean**| allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. | [optional] [default to null] | +| **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 together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". 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] [default to null] | +| **fieldSelector** | **String**| A selector to restrict the list of returned objects by their fields. Defaults to everything. | [optional] [default to null] | +| **labelSelector** | **String**| A selector to restrict the list of returned objects by their labels. Defaults to everything. | [optional] [default to null] | +| **limit** | **Integer**| 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] [default to null] | +| **resourceVersion** | **String**| resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset | [optional] [default to null] | +| **resourceVersionMatch** | **String**| resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset | [optional] [default to null] | +| **sendInitialEvents** | **Boolean**| `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. | [optional] [default to null] | +| **timeoutSeconds** | **Integer**| Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. | [optional] [default to null] | +| **watch** | **Boolean**| Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | [optional] [default to null] | + +### Return type + +[**io.k8s.apimachinery.pkg.apis.meta.v1.Status**](../Models/io.k8s.apimachinery.pkg.apis.meta.v1.Status.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: application/json, application/yaml + + +# **Delete_namespaced_tracing_policy** +> io.k8s.apimachinery.pkg.apis.meta.v1.Status Delete_namespaced_tracing_policy(name, namespace, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions) + + + + delete a TracingPolicyNamespaced + +### Parameters + +|Name | Type | Description | Notes | +|------------- | ------------- | ------------- | -------------| +| **name** | **String**| name of the TracingPolicyNamespaced | [default to null] | +| **namespace** | **String**| object name and auth scope, such as for teams and projects | [default to null] | +| **pretty** | **String**| If 'true', then the output is pretty printed. | [optional] [default to null] | +| **dryRun** | **String**| When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed | [optional] [default to null] | +| **gracePeriodSeconds** | **Integer**| 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] [default to null] | +| **orphanDependents** | **Boolean**| 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] [default to null] | +| **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. | [optional] [default to null] | +| **io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions** | [**io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions**](../Models/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions.md)| | [optional] | + +### Return type + +[**io.k8s.apimachinery.pkg.apis.meta.v1.Status**](../Models/io.k8s.apimachinery.pkg.apis.meta.v1.Status.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: application/json, application/yaml +- **Accept**: application/json, application/yaml + + +# **Delete_tracing_policy** +> io.k8s.apimachinery.pkg.apis.meta.v1.Status Delete_tracing_policy(name, pretty, dryRun, gracePeriodSeconds, orphanDependents, propagationPolicy, io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions) + + + + delete a TracingPolicy + +### Parameters + +|Name | Type | Description | Notes | +|------------- | ------------- | ------------- | -------------| +| **name** | **String**| name of the TracingPolicy | [default to null] | +| **pretty** | **String**| If 'true', then the output is pretty printed. | [optional] [default to null] | +| **dryRun** | **String**| When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed | [optional] [default to null] | +| **gracePeriodSeconds** | **Integer**| 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] [default to null] | +| **orphanDependents** | **Boolean**| 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] [default to null] | +| **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. | [optional] [default to null] | +| **io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions** | [**io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions**](../Models/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions.md)| | [optional] | + +### Return type + +[**io.k8s.apimachinery.pkg.apis.meta.v1.Status**](../Models/io.k8s.apimachinery.pkg.apis.meta.v1.Status.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: application/json, application/yaml +- **Accept**: application/json, application/yaml + + +# **List_namespaced_tracing_policies** +> io.cilium.v1alpha1.TracingPolicyNamespacedList List_namespaced_tracing_policies(namespace, pretty, allowWatchBookmarks, continue, fieldSelector, labelSelector, limit, resourceVersion, resourceVersionMatch, sendInitialEvents, timeoutSeconds, watch) + + + + list objects of kind TracingPolicyNamespaced + +### Parameters + +|Name | Type | Description | Notes | +|------------- | ------------- | ------------- | -------------| +| **namespace** | **String**| object name and auth scope, such as for teams and projects | [default to null] | +| **pretty** | **String**| If 'true', then the output is pretty printed. | [optional] [default to null] | +| **allowWatchBookmarks** | **Boolean**| allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. | [optional] [default to null] | +| **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 together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". 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] [default to null] | +| **fieldSelector** | **String**| A selector to restrict the list of returned objects by their fields. Defaults to everything. | [optional] [default to null] | +| **labelSelector** | **String**| A selector to restrict the list of returned objects by their labels. Defaults to everything. | [optional] [default to null] | +| **limit** | **Integer**| 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] [default to null] | +| **resourceVersion** | **String**| resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset | [optional] [default to null] | +| **resourceVersionMatch** | **String**| resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset | [optional] [default to null] | +| **sendInitialEvents** | **Boolean**| `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. | [optional] [default to null] | +| **timeoutSeconds** | **Integer**| Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. | [optional] [default to null] | +| **watch** | **Boolean**| Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | [optional] [default to null] | + +### Return type + +[**io.cilium.v1alpha1.TracingPolicyNamespacedList**](../Models/io.cilium.v1alpha1.TracingPolicyNamespacedList.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: application/json, application/yaml + + +# **List_namespaced_tracing_policies_for_all_namespaces** +> io.cilium.v1alpha1.TracingPolicyNamespacedList List_namespaced_tracing_policies_for_all_namespaces(allowWatchBookmarks, continue, fieldSelector, labelSelector, limit, pretty, resourceVersion, resourceVersionMatch, sendInitialEvents, timeoutSeconds, watch) + + + + list objects of kind TracingPolicyNamespaced + +### Parameters + +|Name | Type | Description | Notes | +|------------- | ------------- | ------------- | -------------| +| **allowWatchBookmarks** | **Boolean**| allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. | [optional] [default to null] | +| **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 together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". 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] [default to null] | +| **fieldSelector** | **String**| A selector to restrict the list of returned objects by their fields. Defaults to everything. | [optional] [default to null] | +| **labelSelector** | **String**| A selector to restrict the list of returned objects by their labels. Defaults to everything. | [optional] [default to null] | +| **limit** | **Integer**| 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] [default to null] | +| **pretty** | **String**| If 'true', then the output is pretty printed. | [optional] [default to null] | +| **resourceVersion** | **String**| resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset | [optional] [default to null] | +| **resourceVersionMatch** | **String**| resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset | [optional] [default to null] | +| **sendInitialEvents** | **Boolean**| `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. | [optional] [default to null] | +| **timeoutSeconds** | **Integer**| Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. | [optional] [default to null] | +| **watch** | **Boolean**| Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | [optional] [default to null] | + +### Return type + +[**io.cilium.v1alpha1.TracingPolicyNamespacedList**](../Models/io.cilium.v1alpha1.TracingPolicyNamespacedList.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: application/json, application/yaml + + +# **List_tracing_policies** +> io.cilium.v1alpha1.TracingPolicyList List_tracing_policies(pretty, allowWatchBookmarks, continue, fieldSelector, labelSelector, limit, resourceVersion, resourceVersionMatch, sendInitialEvents, timeoutSeconds, watch) + + + + list objects of kind TracingPolicy + +### Parameters + +|Name | Type | Description | Notes | +|------------- | ------------- | ------------- | -------------| +| **pretty** | **String**| If 'true', then the output is pretty printed. | [optional] [default to null] | +| **allowWatchBookmarks** | **Boolean**| allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored. | [optional] [default to null] | +| **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 together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". 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] [default to null] | +| **fieldSelector** | **String**| A selector to restrict the list of returned objects by their fields. Defaults to everything. | [optional] [default to null] | +| **labelSelector** | **String**| A selector to restrict the list of returned objects by their labels. Defaults to everything. | [optional] [default to null] | +| **limit** | **Integer**| 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] [default to null] | +| **resourceVersion** | **String**| resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset | [optional] [default to null] | +| **resourceVersionMatch** | **String**| resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset | [optional] [default to null] | +| **sendInitialEvents** | **Boolean**| `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. | [optional] [default to null] | +| **timeoutSeconds** | **Integer**| Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity. | [optional] [default to null] | +| **watch** | **Boolean**| Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion. | [optional] [default to null] | + +### Return type + +[**io.cilium.v1alpha1.TracingPolicyList**](../Models/io.cilium.v1alpha1.TracingPolicyList.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: application/json, application/yaml + + +# **Patch_namespaced_tracing_policy** +> io.cilium.v1alpha1.TracingPolicyNamespaced Patch_namespaced_tracing_policy(name, namespace, pretty, dryRun, fieldManager, fieldValidation, force, body) + + + + partially update the specified TracingPolicyNamespaced + +### Parameters + +|Name | Type | Description | Notes | +|------------- | ------------- | ------------- | -------------| +| **name** | **String**| name of the TracingPolicyNamespaced | [default to null] | +| **namespace** | **String**| object name and auth scope, such as for teams and projects | [default to null] | +| **pretty** | **String**| If 'true', then the output is pretty printed. | [optional] [default to null] | +| **dryRun** | **String**| When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed | [optional] [default to null] | +| **fieldManager** | **String**| fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). | [optional] [default to null] | +| **fieldValidation** | **String**| fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. | [optional] [default to null] | +| **force** | **Boolean**| Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. | [optional] [default to null] | +| **body** | **Object**| | [optional] | + +### Return type + +[**io.cilium.v1alpha1.TracingPolicyNamespaced**](../Models/io.cilium.v1alpha1.TracingPolicyNamespaced.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: application/apply-patch+yaml, application/json-patch+json, application/merge-patch+json +- **Accept**: application/json, application/yaml + + +# **Patch_tracing_policy** +> io.cilium.v1alpha1.TracingPolicy Patch_tracing_policy(name, pretty, dryRun, fieldManager, fieldValidation, force, body) + + + + partially update the specified TracingPolicy + +### Parameters + +|Name | Type | Description | Notes | +|------------- | ------------- | ------------- | -------------| +| **name** | **String**| name of the TracingPolicy | [default to null] | +| **pretty** | **String**| If 'true', then the output is pretty printed. | [optional] [default to null] | +| **dryRun** | **String**| When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed | [optional] [default to null] | +| **fieldManager** | **String**| fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch). | [optional] [default to null] | +| **fieldValidation** | **String**| fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. | [optional] [default to null] | +| **force** | **Boolean**| Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests. | [optional] [default to null] | +| **body** | **Object**| | [optional] | + +### Return type + +[**io.cilium.v1alpha1.TracingPolicy**](../Models/io.cilium.v1alpha1.TracingPolicy.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: application/apply-patch+yaml, application/json-patch+json, application/merge-patch+json +- **Accept**: application/json, application/yaml + + +# **Replace_namespaced_tracing_policy** +> io.cilium.v1alpha1.TracingPolicyNamespaced Replace_namespaced_tracing_policy(name, namespace, pretty, dryRun, fieldManager, fieldValidation, io.cilium.v1alpha1.TracingPolicyNamespaced) + + + + replace the specified TracingPolicyNamespaced + +### Parameters + +|Name | Type | Description | Notes | +|------------- | ------------- | ------------- | -------------| +| **name** | **String**| name of the TracingPolicyNamespaced | [default to null] | +| **namespace** | **String**| object name and auth scope, such as for teams and projects | [default to null] | +| **pretty** | **String**| If 'true', then the output is pretty printed. | [optional] [default to null] | +| **dryRun** | **String**| When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed | [optional] [default to null] | +| **fieldManager** | **String**| fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. | [optional] [default to null] | +| **fieldValidation** | **String**| fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. | [optional] [default to null] | +| **io.cilium.v1alpha1.TracingPolicyNamespaced** | [**io.cilium.v1alpha1.TracingPolicyNamespaced**](../Models/io.cilium.v1alpha1.TracingPolicyNamespaced.md)| | [optional] | + +### Return type + +[**io.cilium.v1alpha1.TracingPolicyNamespaced**](../Models/io.cilium.v1alpha1.TracingPolicyNamespaced.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: application/json, application/yaml +- **Accept**: application/json, application/yaml + + +# **Replace_tracing_policy** +> io.cilium.v1alpha1.TracingPolicy Replace_tracing_policy(name, pretty, dryRun, fieldManager, fieldValidation, io.cilium.v1alpha1.TracingPolicy) + + + + replace the specified TracingPolicy + +### Parameters + +|Name | Type | Description | Notes | +|------------- | ------------- | ------------- | -------------| +| **name** | **String**| name of the TracingPolicy | [default to null] | +| **pretty** | **String**| If 'true', then the output is pretty printed. | [optional] [default to null] | +| **dryRun** | **String**| When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed | [optional] [default to null] | +| **fieldManager** | **String**| fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. | [optional] [default to null] | +| **fieldValidation** | **String**| fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. | [optional] [default to null] | +| **io.cilium.v1alpha1.TracingPolicy** | [**io.cilium.v1alpha1.TracingPolicy**](../Models/io.cilium.v1alpha1.TracingPolicy.md)| | [optional] | + +### Return type + +[**io.cilium.v1alpha1.TracingPolicy**](../Models/io.cilium.v1alpha1.TracingPolicy.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: application/json, application/yaml +- **Accept**: application/json, application/yaml + + +# **readCiliumIoV1alpha1NamespacedTracingPolicyNamespaced** +> io.cilium.v1alpha1.TracingPolicyNamespaced readCiliumIoV1alpha1NamespacedTracingPolicyNamespaced(name, namespace, pretty, resourceVersion) + + + + read the specified TracingPolicyNamespaced + +### Parameters + +|Name | Type | Description | Notes | +|------------- | ------------- | ------------- | -------------| +| **name** | **String**| name of the TracingPolicyNamespaced | [default to null] | +| **namespace** | **String**| object name and auth scope, such as for teams and projects | [default to null] | +| **pretty** | **String**| If 'true', then the output is pretty printed. | [optional] [default to null] | +| **resourceVersion** | **String**| resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset | [optional] [default to null] | + +### Return type + +[**io.cilium.v1alpha1.TracingPolicyNamespaced**](../Models/io.cilium.v1alpha1.TracingPolicyNamespaced.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: application/json, application/yaml + + +# **readCiliumIoV1alpha1TracingPolicy** +> io.cilium.v1alpha1.TracingPolicy readCiliumIoV1alpha1TracingPolicy(name, pretty, resourceVersion) + + + + read the specified TracingPolicy + +### Parameters + +|Name | Type | Description | Notes | +|------------- | ------------- | ------------- | -------------| +| **name** | **String**| name of the TracingPolicy | [default to null] | +| **pretty** | **String**| If 'true', then the output is pretty printed. | [optional] [default to null] | +| **resourceVersion** | **String**| resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details. Defaults to unset | [optional] [default to null] | + +### Return type + +[**io.cilium.v1alpha1.TracingPolicy**](../Models/io.cilium.v1alpha1.TracingPolicy.md) + +### Authorization + +No authorization required + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: application/json, application/yaml + diff --git a/docs/content/en/docs/reference/Models/io.cilium.v1alpha1.TracingPolicy.md b/docs/content/en/docs/reference/Models/io.cilium.v1alpha1.TracingPolicy.md new file mode 100644 index 00000000000..82067cf8779 --- /dev/null +++ b/docs/content/en/docs/reference/Models/io.cilium.v1alpha1.TracingPolicy.md @@ -0,0 +1,12 @@ +# io.cilium.v1alpha1.TracingPolicy +## Properties + +| Name | Type | Description | Notes | +|------------ | ------------- | ------------- | -------------| +| **apiVersion** | **String** | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources | [optional] [default to null] | +| **kind** | **String** | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds | [optional] [default to null] | +| **metadata** | [**io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta**](io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta.md) | Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata | [default to null] | +| **spec** | [**io_cilium_v1alpha1_TracingPolicy_spec**](io_cilium_v1alpha1_TracingPolicy_spec.md) | | [default to null] | + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + diff --git a/docs/content/en/docs/reference/Models/io.cilium.v1alpha1.TracingPolicyList.md b/docs/content/en/docs/reference/Models/io.cilium.v1alpha1.TracingPolicyList.md new file mode 100644 index 00000000000..d50979e758b --- /dev/null +++ b/docs/content/en/docs/reference/Models/io.cilium.v1alpha1.TracingPolicyList.md @@ -0,0 +1,12 @@ +# io.cilium.v1alpha1.TracingPolicyList +## Properties + +| Name | Type | Description | Notes | +|------------ | ------------- | ------------- | -------------| +| **apiVersion** | **String** | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources | [optional] [default to null] | +| **items** | [**List**](io.cilium.v1alpha1.TracingPolicy.md) | List of tracingpolicies. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md | [default to null] | +| **kind** | **String** | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds | [optional] [default to null] | +| **metadata** | [**io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta**](io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta.md) | Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds | [optional] [default to null] | + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + diff --git a/docs/content/en/docs/reference/Models/io.cilium.v1alpha1.TracingPolicyNamespaced.md b/docs/content/en/docs/reference/Models/io.cilium.v1alpha1.TracingPolicyNamespaced.md new file mode 100644 index 00000000000..811e7f9ad1a --- /dev/null +++ b/docs/content/en/docs/reference/Models/io.cilium.v1alpha1.TracingPolicyNamespaced.md @@ -0,0 +1,12 @@ +# io.cilium.v1alpha1.TracingPolicyNamespaced +## Properties + +| Name | Type | Description | Notes | +|------------ | ------------- | ------------- | -------------| +| **apiVersion** | **String** | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources | [optional] [default to null] | +| **kind** | **String** | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds | [optional] [default to null] | +| **metadata** | [**io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta**](io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta.md) | Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata | [default to null] | +| **spec** | [**io_cilium_v1alpha1_TracingPolicy_spec**](io_cilium_v1alpha1_TracingPolicy_spec.md) | | [default to null] | + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + diff --git a/docs/content/en/docs/reference/Models/io.cilium.v1alpha1.TracingPolicyNamespacedList.md b/docs/content/en/docs/reference/Models/io.cilium.v1alpha1.TracingPolicyNamespacedList.md new file mode 100644 index 00000000000..5fcaaf6ea11 --- /dev/null +++ b/docs/content/en/docs/reference/Models/io.cilium.v1alpha1.TracingPolicyNamespacedList.md @@ -0,0 +1,12 @@ +# io.cilium.v1alpha1.TracingPolicyNamespacedList +## Properties + +| Name | Type | Description | Notes | +|------------ | ------------- | ------------- | -------------| +| **apiVersion** | **String** | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources | [optional] [default to null] | +| **items** | [**List**](io.cilium.v1alpha1.TracingPolicyNamespaced.md) | List of tracingpoliciesnamespaced. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md | [default to null] | +| **kind** | **String** | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds | [optional] [default to null] | +| **metadata** | [**io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta**](io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta.md) | Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds | [optional] [default to null] | + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + diff --git a/docs/content/en/docs/reference/Models/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions.md b/docs/content/en/docs/reference/Models/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions.md new file mode 100644 index 00000000000..5337812228b --- /dev/null +++ b/docs/content/en/docs/reference/Models/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions.md @@ -0,0 +1,15 @@ +# io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions +## Properties + +| Name | Type | Description | Notes | +|------------ | ------------- | ------------- | -------------| +| **apiVersion** | **String** | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources | [optional] [default to null] | +| **dryRun** | **List** | When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed | [optional] [default to null] | +| **gracePeriodSeconds** | **Long** | 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] [default to null] | +| **kind** | **String** | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds | [optional] [default to null] | +| **orphanDependents** | **Boolean** | 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] [default to null] | +| **preconditions** | [**io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions**](io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions.md) | Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned. | [optional] [default to null] | +| **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. | [optional] [default to null] | + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + diff --git a/docs/content/en/docs/reference/Models/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta.md b/docs/content/en/docs/reference/Models/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta.md new file mode 100644 index 00000000000..863b069834e --- /dev/null +++ b/docs/content/en/docs/reference/Models/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta.md @@ -0,0 +1,12 @@ +# io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta +## Properties + +| Name | Type | Description | Notes | +|------------ | ------------- | ------------- | -------------| +| **continue** | **String** | continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message. | [optional] [default to null] | +| **remainingItemCount** | **Long** | remainingItemCount is the number of subsequent items in the list which are not included in this list response. If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients should not rely on the remainingItemCount to be set or to be exact. | [optional] [default to null] | +| **resourceVersion** | **String** | String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency | [optional] [default to null] | +| **selfLink** | **String** | Deprecated: selfLink is a legacy read-only field that is no longer populated by the system. | [optional] [default to null] | + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + diff --git a/docs/content/en/docs/reference/Models/io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry.md b/docs/content/en/docs/reference/Models/io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry.md new file mode 100644 index 00000000000..1b83bdd37d2 --- /dev/null +++ b/docs/content/en/docs/reference/Models/io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry.md @@ -0,0 +1,15 @@ +# io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry +## Properties + +| Name | Type | Description | Notes | +|------------ | ------------- | ------------- | -------------| +| **apiVersion** | **String** | APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted. | [optional] [default to null] | +| **fieldsType** | **String** | FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\" | [optional] [default to null] | +| **fieldsV1** | [**Object**](.md) | FieldsV1 holds the first JSON version format as described in the "FieldsV1" type. | [optional] [default to null] | +| **manager** | **String** | Manager is an identifier of the workflow managing these fields. | [optional] [default to null] | +| **operation** | **String** | Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'. | [optional] [default to null] | +| **subresource** | **String** | Subresource is the name of the subresource used to update that object, or empty string if the object was updated through the main resource. The value of this field is used to distinguish between managers, even if they share the same name. For example, a status update will be distinct from a regular update using the same manager name. Note that the APIVersion field is not related to the Subresource field and it always corresponds to the version of the main resource. | [optional] [default to null] | +| **time** | **Date** | Time is the timestamp of when the ManagedFields entry was added. The timestamp will also be updated if a field is added, the manager changes any of the owned fields value or removes a field. The timestamp does not update when a field is removed from the entry because another manager took it over. | [optional] [default to null] | + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + diff --git a/docs/content/en/docs/reference/Models/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta.md b/docs/content/en/docs/reference/Models/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta.md new file mode 100644 index 00000000000..d82e5384fb6 --- /dev/null +++ b/docs/content/en/docs/reference/Models/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta.md @@ -0,0 +1,27 @@ +# io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta +## Properties + +| Name | Type | Description | Notes | +|------------ | ------------- | ------------- | -------------| +| **annotations** | **Map** | Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations | [optional] [default to null] | +| **creationTimestamp** | **Date** | CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. + +Populated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata | [optional] [default to {}] | +| **deletionGracePeriodSeconds** | **Long** | Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only. | [optional] [default to null] | +| **deletionTimestamp** | **Date** | DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested. + +Populated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata | [optional] [default to null] | +| **finalizers** | **List** | Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list. | [optional] [default to null] | +| **generateName** | **String** | GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server. If this field is specified and the generated name exists, the server will return a 409. Applied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency | [optional] [default to null] | +| **generation** | **Long** | A sequence number representing a specific generation of the desired state. Populated by the system. Read-only. | [optional] [default to null] | +| **labels** | **Map** | Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels | [optional] [default to null] | +| **managedFields** | [**List**](io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry.md) | ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object. | [optional] [default to null] | +| **name** | **String** | Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names | [optional] [default to null] | +| **namespace** | **String** | Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty. Must be a DNS_LABEL. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces | [optional] [default to null] | +| **ownerReferences** | [**List**](io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference.md) | List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller. | [optional] [default to null] | +| **resourceVersion** | **String** | An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources. Populated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency | [optional] [default to null] | +| **selfLink** | **String** | Deprecated: selfLink is a legacy read-only field that is no longer populated by the system. | [optional] [default to null] | +| **uid** | **String** | UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations. Populated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids | [optional] [default to null] | + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + diff --git a/docs/content/en/docs/reference/Models/io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference.md b/docs/content/en/docs/reference/Models/io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference.md new file mode 100644 index 00000000000..54411320b06 --- /dev/null +++ b/docs/content/en/docs/reference/Models/io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference.md @@ -0,0 +1,14 @@ +# io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference +## Properties + +| Name | Type | Description | Notes | +|------------ | ------------- | ------------- | -------------| +| **apiVersion** | **String** | API version of the referent. | [default to ] | +| **blockOwnerDeletion** | **Boolean** | If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. See https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion for how the garbage collector interacts with this field and enforces the foreground deletion. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned. | [optional] [default to null] | +| **controller** | **Boolean** | If true, this reference points to the managing controller. | [optional] [default to null] | +| **kind** | **String** | Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds | [default to ] | +| **name** | **String** | Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names | [default to ] | +| **uid** | **String** | UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids | [default to ] | + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + diff --git a/docs/content/en/docs/reference/Models/io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions.md b/docs/content/en/docs/reference/Models/io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions.md new file mode 100644 index 00000000000..5e8764fb534 --- /dev/null +++ b/docs/content/en/docs/reference/Models/io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions.md @@ -0,0 +1,10 @@ +# io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions +## Properties + +| Name | Type | Description | Notes | +|------------ | ------------- | ------------- | -------------| +| **resourceVersion** | **String** | Specifies the target ResourceVersion | [optional] [default to null] | +| **uid** | **String** | Specifies the target UID. | [optional] [default to null] | + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + diff --git a/docs/content/en/docs/reference/Models/io.k8s.apimachinery.pkg.apis.meta.v1.Status.md b/docs/content/en/docs/reference/Models/io.k8s.apimachinery.pkg.apis.meta.v1.Status.md new file mode 100644 index 00000000000..f08ffd3d4f9 --- /dev/null +++ b/docs/content/en/docs/reference/Models/io.k8s.apimachinery.pkg.apis.meta.v1.Status.md @@ -0,0 +1,16 @@ +# io.k8s.apimachinery.pkg.apis.meta.v1.Status +## Properties + +| Name | Type | Description | Notes | +|------------ | ------------- | ------------- | -------------| +| **apiVersion** | **String** | APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources | [optional] [default to null] | +| **code** | **Integer** | Suggested HTTP return code for this status, 0 if not set. | [optional] [default to null] | +| **details** | [**io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails**](io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails.md) | Extended data associated with the reason. Each reason may define its own extended details. This field is optional and the data returned is not guaranteed to conform to any schema except that defined by the reason type. | [optional] [default to null] | +| **kind** | **String** | Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds | [optional] [default to null] | +| **message** | **String** | A human-readable description of the status of this operation. | [optional] [default to null] | +| **metadata** | [**io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta**](io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta.md) | Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds | [optional] [default to {}] | +| **reason** | **String** | A machine-readable description of why this operation is in the \"Failure\" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it. | [optional] [default to null] | +| **status** | **String** | Status of the operation. One of: \"Success\" or \"Failure\". More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status | [optional] [default to null] | + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + diff --git a/docs/content/en/docs/reference/Models/io.k8s.apimachinery.pkg.apis.meta.v1.StatusCause.md b/docs/content/en/docs/reference/Models/io.k8s.apimachinery.pkg.apis.meta.v1.StatusCause.md new file mode 100644 index 00000000000..26b8acf9043 --- /dev/null +++ b/docs/content/en/docs/reference/Models/io.k8s.apimachinery.pkg.apis.meta.v1.StatusCause.md @@ -0,0 +1,11 @@ +# io.k8s.apimachinery.pkg.apis.meta.v1.StatusCause +## Properties + +| Name | Type | Description | Notes | +|------------ | ------------- | ------------- | -------------| +| **field** | **String** | The field of the resource that has caused this error, as named by its JSON serialization. May include dot and postfix notation for nested attributes. Arrays are zero-indexed. Fields may appear more than once in an array of causes due to fields having multiple errors. Optional. Examples: \"name\" - the field \"name\" on the current resource \"items[0].name\" - the field \"name\" on the first array entry in \"items\" | [optional] [default to null] | +| **message** | **String** | A human-readable description of the cause of the error. This field may be presented as-is to a reader. | [optional] [default to null] | +| **reason** | **String** | A machine-readable description of the cause of the error. If this value is empty there is no information available. | [optional] [default to null] | + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + diff --git a/docs/content/en/docs/reference/Models/io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails.md b/docs/content/en/docs/reference/Models/io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails.md new file mode 100644 index 00000000000..b346a2da7f3 --- /dev/null +++ b/docs/content/en/docs/reference/Models/io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails.md @@ -0,0 +1,14 @@ +# io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails +## Properties + +| Name | Type | Description | Notes | +|------------ | ------------- | ------------- | -------------| +| **causes** | [**List**](io.k8s.apimachinery.pkg.apis.meta.v1.StatusCause.md) | The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes. | [optional] [default to null] | +| **group** | **String** | The group attribute of the resource associated with the status StatusReason. | [optional] [default to null] | +| **kind** | **String** | The kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds | [optional] [default to null] | +| **name** | **String** | The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described). | [optional] [default to null] | +| **retryAfterSeconds** | **Integer** | If specified, the time in seconds before the operation should be retried. Some errors may indicate the client must take an alternate action - for those errors this field may indicate how long to wait before taking the alternate action. | [optional] [default to null] | +| **uid** | **String** | UID of the resource. (when there is a single resource which can be described). More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids | [optional] [default to null] | + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + diff --git a/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec.md b/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec.md new file mode 100644 index 00000000000..4f3c91b65cf --- /dev/null +++ b/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec.md @@ -0,0 +1,16 @@ +# io_cilium_v1alpha1_TracingPolicy_spec +## Properties + +| Name | Type | Description | Notes | +|------------ | ------------- | ------------- | -------------| +| **killers** | [**List**](io_cilium_v1alpha1_TracingPolicy_spec_killers_inner.md) | A killer spec. | [optional] [default to null] | +| **kprobes** | [**List**](io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner.md) | A list of kprobe specs. | [optional] [default to null] | +| **lists** | [**List**](io_cilium_v1alpha1_TracingPolicy_spec_lists_inner.md) | A list of list specs. | [optional] [default to null] | +| **loader** | **Boolean** | Enable loader events | [optional] [default to null] | +| **options** | [**List**](io_cilium_v1alpha1_TracingPolicy_spec_options_inner.md) | A list of overloaded options | [optional] [default to null] | +| **podSelector** | [**io_cilium_v1alpha1_TracingPolicy_spec_podSelector**](io_cilium_v1alpha1_TracingPolicy_spec_podSelector.md) | | [optional] [default to null] | +| **tracepoints** | [**List**](io_cilium_v1alpha1_TracingPolicy_spec_tracepoints_inner.md) | A list of tracepoint specs. | [optional] [default to null] | +| **uprobes** | [**List**](io_cilium_v1alpha1_TracingPolicy_spec_uprobes_inner.md) | A list of uprobe specs. | [optional] [default to null] | + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + diff --git a/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_killers_inner.md b/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_killers_inner.md new file mode 100644 index 00000000000..a5241e279e0 --- /dev/null +++ b/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_killers_inner.md @@ -0,0 +1,9 @@ +# io_cilium_v1alpha1_TracingPolicy_spec_killers_inner +## Properties + +| Name | Type | Description | Notes | +|------------ | ------------- | ------------- | -------------| +| **syscalls** | **List** | syscalls where killer is executed in | [default to null] | + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + diff --git a/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner.md b/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner.md new file mode 100644 index 00000000000..102ca96d9a1 --- /dev/null +++ b/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner.md @@ -0,0 +1,15 @@ +# io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner +## Properties + +| Name | Type | Description | Notes | +|------------ | ------------- | ------------- | -------------| +| **args** | [**List**](io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_args_inner.md) | A list of function arguments to include in the trace output. | [optional] [default to null] | +| **call** | **String** | Name of the function to apply the kprobe spec to. | [default to null] | +| **return** | **Boolean** | Indicates whether to collect return value of the traced function. | [optional] [default to false] | +| **returnArg** | [**io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_returnArg**](io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_returnArg.md) | | [optional] [default to null] | +| **returnArgAction** | **String** | An action to perform on the return argument. Available actions are: Post;TrackSock;UntrackSock | [optional] [default to null] | +| **selectors** | [**List**](io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner.md) | Selectors to apply before producing trace output. Selectors are ORed. | [optional] [default to null] | +| **syscall** | **Boolean** | Indicates whether the traced function is a syscall. | [optional] [default to true] | + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + diff --git a/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_args_inner.md b/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_args_inner.md new file mode 100644 index 00000000000..40dd2d64ee2 --- /dev/null +++ b/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_args_inner.md @@ -0,0 +1,14 @@ +# io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_args_inner +## Properties + +| Name | Type | Description | Notes | +|------------ | ------------- | ------------- | -------------| +| **index** | **Integer** | Position of the argument. | [default to null] | +| **label** | **String** | Label to output in the JSON | [optional] [default to null] | +| **maxData** | **Boolean** | Read maximum possible data (currently 327360). This field is only used for char_buff data. When this value is false (default), the bpf program will fetch at most 4096 bytes. In later kernels (>=5.4) tetragon supports fetching up to 327360 bytes if this flag is turned on | [optional] [default to false] | +| **returnCopy** | **Boolean** | This field is used only for char_buf and char_iovec types. It indicates that this argument should be read later (when the kretprobe for the symbol is triggered) because it might not be populated when the kprobe is triggered at the entrance of the function. For example, a buffer supplied to read(2) won't have content until kretprobe is triggered. | [optional] [default to false] | +| **sizeArgIndex** | **Integer** | Specifies the position of the corresponding size argument for this argument. This field is used only for char_buf and char_iovec types. | [optional] [default to null] | +| **type** | **String** | Argument type. | [default to auto] | + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + diff --git a/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_returnArg.md b/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_returnArg.md new file mode 100644 index 00000000000..a5bedfcf7d5 --- /dev/null +++ b/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_returnArg.md @@ -0,0 +1,14 @@ +# io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_returnArg +## Properties + +| Name | Type | Description | Notes | +|------------ | ------------- | ------------- | -------------| +| **index** | **Integer** | Position of the argument. | [default to null] | +| **label** | **String** | Label to output in the JSON | [optional] [default to null] | +| **maxData** | **Boolean** | Read maximum possible data (currently 327360). This field is only used for char_buff data. When this value is false (default), the bpf program will fetch at most 4096 bytes. In later kernels (>=5.4) tetragon supports fetching up to 327360 bytes if this flag is turned on | [optional] [default to false] | +| **returnCopy** | **Boolean** | This field is used only for char_buf and char_iovec types. It indicates that this argument should be read later (when the kretprobe for the symbol is triggered) because it might not be populated when the kprobe is triggered at the entrance of the function. For example, a buffer supplied to read(2) won't have content until kretprobe is triggered. | [optional] [default to false] | +| **sizeArgIndex** | **Integer** | Specifies the position of the corresponding size argument for this argument. This field is used only for char_buf and char_iovec types. | [optional] [default to null] | +| **type** | **String** | Argument type. | [default to auto] | + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + diff --git a/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner.md b/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner.md new file mode 100644 index 00000000000..579c6190bbf --- /dev/null +++ b/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner.md @@ -0,0 +1,17 @@ +# io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner +## Properties + +| Name | Type | Description | Notes | +|------------ | ------------- | ------------- | -------------| +| **matchActions** | [**List**](io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchActions_inner.md) | A list of actions to execute when this selector matches | [optional] [default to null] | +| **matchArgs** | [**List**](io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchArgs_inner.md) | A list of argument filters. MatchArgs are ANDed. | [optional] [default to null] | +| **matchBinaries** | [**List**](io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchBinaries_inner.md) | A list of binary exec name filters. | [optional] [default to null] | +| **matchCapabilities** | [**List**](io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchCapabilities_inner.md) | A list of capabilities and IDs | [optional] [default to null] | +| **matchCapabilityChanges** | [**List**](io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchCapabilities_inner.md) | IDs for capabilities changes | [optional] [default to null] | +| **matchNamespaceChanges** | [**List**](io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchNamespaceChanges_inner.md) | IDs for namespace changes | [optional] [default to null] | +| **matchNamespaces** | [**List**](io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchNamespaces_inner.md) | A list of namespaces and IDs | [optional] [default to null] | +| **matchPIDs** | [**List**](io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchPIDs_inner.md) | A list of process ID filters. MatchPIDs are ANDed. | [optional] [default to null] | +| **matchReturnArgs** | [**List**](io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchArgs_inner.md) | A list of argument filters. MatchArgs are ANDed. | [optional] [default to null] | + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + diff --git a/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchActions_inner.md b/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchActions_inner.md new file mode 100644 index 00000000000..513f5545336 --- /dev/null +++ b/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchActions_inner.md @@ -0,0 +1,18 @@ +# io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchActions_inner +## Properties + +| Name | Type | Description | Notes | +|------------ | ------------- | ------------- | -------------| +| **action** | **String** | Action to execute. | [default to null] | +| **argError** | **Integer** | error value for override action | [optional] [default to null] | +| **argFd** | **Integer** | An arg index for the fd for fdInstall action | [optional] [default to null] | +| **argFqdn** | **String** | A FQDN to lookup for the dnsLookup action | [optional] [default to null] | +| **argName** | **Integer** | An arg index for the filename for fdInstall action | [optional] [default to null] | +| **argSig** | **Integer** | A signal number for signal action | [optional] [default to null] | +| **argSock** | **Integer** | An arg index for the sock for trackSock and untrackSock actions | [optional] [default to null] | +| **argUrl** | **String** | A URL for the getUrl action | [optional] [default to null] | +| **rateLimit** | **String** | A time period within which repeated messages will not be posted. Can be specified in seconds (default or with 's' suffix), minutes ('m' suffix) or hours ('h' suffix). Only valid with the post action. | [optional] [default to null] | +| **stackTrace** | **Boolean** | Enable stack trace export. Only valid with the post action. | [optional] [default to null] | + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + diff --git a/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchArgs_inner.md b/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchArgs_inner.md new file mode 100644 index 00000000000..60c46b74fa7 --- /dev/null +++ b/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchArgs_inner.md @@ -0,0 +1,11 @@ +# io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchArgs_inner +## Properties + +| Name | Type | Description | Notes | +|------------ | ------------- | ------------- | -------------| +| **index** | **Integer** | Position of the argument to apply fhe filter to. | [default to null] | +| **operator** | **String** | Filter operation. | [default to null] | +| **values** | **List** | Value to compare the argument against. | [optional] [default to null] | + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + diff --git a/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchBinaries_inner.md b/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchBinaries_inner.md new file mode 100644 index 00000000000..35644d3cd49 --- /dev/null +++ b/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchBinaries_inner.md @@ -0,0 +1,10 @@ +# io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchBinaries_inner +## Properties + +| Name | Type | Description | Notes | +|------------ | ------------- | ------------- | -------------| +| **operator** | **String** | Filter operation. | [default to null] | +| **values** | **List** | Value to compare the argument against. | [default to null] | + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + diff --git a/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchCapabilities_inner.md b/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchCapabilities_inner.md new file mode 100644 index 00000000000..21beee58ef2 --- /dev/null +++ b/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchCapabilities_inner.md @@ -0,0 +1,12 @@ +# io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchCapabilities_inner +## Properties + +| Name | Type | Description | Notes | +|------------ | ------------- | ------------- | -------------| +| **isNamespaceCapability** | **Boolean** | Indicates whether these caps are namespace caps. | [optional] [default to false] | +| **operator** | **String** | Namespace selector operator. | [default to null] | +| **type** | **String** | Type of capabilities | [optional] [default to Effective] | +| **values** | **List** | Capabilities to match. | [default to null] | + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + diff --git a/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchNamespaceChanges_inner.md b/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchNamespaceChanges_inner.md new file mode 100644 index 00000000000..ecc87e799de --- /dev/null +++ b/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchNamespaceChanges_inner.md @@ -0,0 +1,10 @@ +# io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchNamespaceChanges_inner +## Properties + +| Name | Type | Description | Notes | +|------------ | ------------- | ------------- | -------------| +| **operator** | **String** | Namespace selector operator. | [default to null] | +| **values** | **List** | Namespace types (e.g., Mnt, Pid) to match. | [default to null] | + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + diff --git a/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchNamespaces_inner.md b/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchNamespaces_inner.md new file mode 100644 index 00000000000..c814851c48b --- /dev/null +++ b/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchNamespaces_inner.md @@ -0,0 +1,11 @@ +# io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchNamespaces_inner +## Properties + +| Name | Type | Description | Notes | +|------------ | ------------- | ------------- | -------------| +| **namespace** | **String** | Namespace selector name. | [default to null] | +| **operator** | **String** | Namespace selector operator. | [default to null] | +| **values** | **List** | Namespace IDs (or host_ns for host namespace) of namespaces to match. | [default to null] | + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + diff --git a/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchPIDs_inner.md b/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchPIDs_inner.md new file mode 100644 index 00000000000..827f0eb0304 --- /dev/null +++ b/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchPIDs_inner.md @@ -0,0 +1,12 @@ +# io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchPIDs_inner +## Properties + +| Name | Type | Description | Notes | +|------------ | ------------- | ------------- | -------------| +| **followForks** | **Boolean** | Matches any descendant processes of the matching PIDs. | [optional] [default to false] | +| **isNamespacePID** | **Boolean** | Indicates whether PIDs are namespace PIDs. | [optional] [default to false] | +| **operator** | **String** | PID selector operator. | [default to null] | +| **values** | **List** | Process IDs to match. | [default to null] | + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + diff --git a/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_lists_inner.md b/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_lists_inner.md new file mode 100644 index 00000000000..26e73a481ec --- /dev/null +++ b/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_lists_inner.md @@ -0,0 +1,13 @@ +# io_cilium_v1alpha1_TracingPolicy_spec_lists_inner +## Properties + +| Name | Type | Description | Notes | +|------------ | ------------- | ------------- | -------------| +| **name** | **String** | Name of the list | [default to null] | +| **pattern** | **String** | Pattern for 'generated' lists. | [optional] [default to null] | +| **type** | **String** | Indicates the type of the list values. | [optional] [default to null] | +| **validated** | **Boolean** | List was validated | [optional] [default to null] | +| **values** | **List** | Values of the list | [optional] [default to null] | + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + diff --git a/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_options_inner.md b/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_options_inner.md new file mode 100644 index 00000000000..b6d0acfc279 --- /dev/null +++ b/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_options_inner.md @@ -0,0 +1,10 @@ +# io_cilium_v1alpha1_TracingPolicy_spec_options_inner +## Properties + +| Name | Type | Description | Notes | +|------------ | ------------- | ------------- | -------------| +| **name** | **String** | Name of the option | [default to null] | +| **value** | **String** | Value of the option | [optional] [default to null] | + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + diff --git a/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_podSelector.md b/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_podSelector.md new file mode 100644 index 00000000000..ea1c2829ce8 --- /dev/null +++ b/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_podSelector.md @@ -0,0 +1,10 @@ +# io_cilium_v1alpha1_TracingPolicy_spec_podSelector +## Properties + +| Name | Type | Description | Notes | +|------------ | ------------- | ------------- | -------------| +| **matchExpressions** | [**List**](io_cilium_v1alpha1_TracingPolicy_spec_podSelector_matchExpressions_inner.md) | matchExpressions is a list of label selector requirements. The requirements are ANDed. | [optional] [default to null] | +| **matchLabels** | **Map** | matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed. | [optional] [default to null] | + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + diff --git a/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_podSelector_matchExpressions_inner.md b/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_podSelector_matchExpressions_inner.md new file mode 100644 index 00000000000..203a97e2057 --- /dev/null +++ b/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_podSelector_matchExpressions_inner.md @@ -0,0 +1,11 @@ +# io_cilium_v1alpha1_TracingPolicy_spec_podSelector_matchExpressions_inner +## Properties + +| Name | Type | Description | Notes | +|------------ | ------------- | ------------- | -------------| +| **key** | **String** | key is the label key that the selector applies to. | [default to null] | +| **operator** | **String** | operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. | [default to null] | +| **values** | **List** | values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. | [optional] [default to null] | + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + diff --git a/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_tracepoints_inner.md b/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_tracepoints_inner.md new file mode 100644 index 00000000000..ee2bdbb3ef1 --- /dev/null +++ b/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_tracepoints_inner.md @@ -0,0 +1,12 @@ +# io_cilium_v1alpha1_TracingPolicy_spec_tracepoints_inner +## Properties + +| Name | Type | Description | Notes | +|------------ | ------------- | ------------- | -------------| +| **args** | [**List**](io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_args_inner.md) | A list of function arguments to include in the trace output. | [optional] [default to null] | +| **event** | **String** | Tracepoint event | [default to null] | +| **selectors** | [**List**](io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner.md) | Selectors to apply before producing trace output. Selectors are ORed. | [optional] [default to null] | +| **subsystem** | **String** | Tracepoint subsystem | [default to null] | + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + diff --git a/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_uprobes_inner.md b/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_uprobes_inner.md new file mode 100644 index 00000000000..24d44edb590 --- /dev/null +++ b/docs/content/en/docs/reference/Models/io_cilium_v1alpha1_TracingPolicy_spec_uprobes_inner.md @@ -0,0 +1,11 @@ +# io_cilium_v1alpha1_TracingPolicy_spec_uprobes_inner +## Properties + +| Name | Type | Description | Notes | +|------------ | ------------- | ------------- | -------------| +| **path** | **String** | Name of the traced binary | [default to null] | +| **selectors** | [**List**](io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner.md) | Selectors to apply before producing trace output. Selectors are ORed. | [optional] [default to null] | +| **symbol** | **String** | Name of the traced symbol | [default to null] | + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + diff --git a/docs/content/en/docs/reference/tracing-policy-api.md b/docs/content/en/docs/reference/tracing-policy-api.md new file mode 100644 index 00000000000..45bdf4b4cc2 --- /dev/null +++ b/docs/content/en/docs/reference/tracing-policy-api.md @@ -0,0 +1,73 @@ +--- +title: Tracing Policy API +description: This reference is generated from an OpenAPI specification. +weight: 4 +--- + +# Documentation for Tracing Policy API + + +## Documentation for API Endpoints + + + +| Method | HTTP request | +| --- | --- | +| [**Create_namespaced_tracing_policy**](Apis/CiliumIoV1alpha1Api.md#create_namespaced_tracing_policy) | **POST** /apis/cilium.io/v1alpha1/namespaces/{namespace}/tracingpoliciesnamespaced | +| [**Create_tracing_policy**](Apis/CiliumIoV1alpha1Api.md#create_tracing_policy) | **POST** /apis/cilium.io/v1alpha1/tracingpolicies | +| [**Delete_collection_of_namespaced_tracing_policies**](Apis/CiliumIoV1alpha1Api.md#delete_collection_of_namespaced_tracing_policies) | **DELETE** /apis/cilium.io/v1alpha1/namespaces/{namespace}/tracingpoliciesnamespaced | +| [**Delete_collection_of_tracing_policies**](Apis/CiliumIoV1alpha1Api.md#delete_collection_of_tracing_policies) | **DELETE** /apis/cilium.io/v1alpha1/tracingpolicies | +| [**Delete_namespaced_tracing_policy**](Apis/CiliumIoV1alpha1Api.md#delete_namespaced_tracing_policy) | **DELETE** /apis/cilium.io/v1alpha1/namespaces/{namespace}/tracingpoliciesnamespaced/{name} | +| [**Delete_tracing_policy**](Apis/CiliumIoV1alpha1Api.md#delete_tracing_policy) | **DELETE** /apis/cilium.io/v1alpha1/tracingpolicies/{name} | +| [**List_namespaced_tracing_policies**](Apis/CiliumIoV1alpha1Api.md#list_namespaced_tracing_policies) | **GET** /apis/cilium.io/v1alpha1/namespaces/{namespace}/tracingpoliciesnamespaced | +| [**List_namespaced_tracing_policies_for_all_namespaces**](Apis/CiliumIoV1alpha1Api.md#list_namespaced_tracing_policies_for_all_namespaces) | **GET** /apis/cilium.io/v1alpha1/tracingpoliciesnamespaced | +| [**List_tracing_policies**](Apis/CiliumIoV1alpha1Api.md#list_tracing_policies) | **GET** /apis/cilium.io/v1alpha1/tracingpolicies | +| [**Patch_namespaced_tracing_policy**](Apis/CiliumIoV1alpha1Api.md#patch_namespaced_tracing_policy) | **PATCH** /apis/cilium.io/v1alpha1/namespaces/{namespace}/tracingpoliciesnamespaced/{name} | +| [**Patch_tracing_policy**](Apis/CiliumIoV1alpha1Api.md#patch_tracing_policy) | **PATCH** /apis/cilium.io/v1alpha1/tracingpolicies/{name} | +| [**Replace_namespaced_tracing_policy**](Apis/CiliumIoV1alpha1Api.md#replace_namespaced_tracing_policy) | **PUT** /apis/cilium.io/v1alpha1/namespaces/{namespace}/tracingpoliciesnamespaced/{name} | +| [**Replace_tracing_policy**](Apis/CiliumIoV1alpha1Api.md#replace_tracing_policy) | **PUT** /apis/cilium.io/v1alpha1/tracingpolicies/{name} | +| [**readCiliumIoV1alpha1NamespacedTracingPolicyNamespaced**](Apis/CiliumIoV1alpha1Api.md#readciliumiov1alpha1namespacedtracingpolicynamespaced) | **GET** /apis/cilium.io/v1alpha1/namespaces/{namespace}/tracingpoliciesnamespaced/{name} | +| [**readCiliumIoV1alpha1TracingPolicy**](Apis/CiliumIoV1alpha1Api.md#readciliumiov1alpha1tracingpolicy) | **GET** /apis/cilium.io/v1alpha1/tracingpolicies/{name} | + + + +## Documentation for Models + + - [io.cilium.v1alpha1.TracingPolicy](./Models/io.cilium.v1alpha1.TracingPolicy.md) + - [io.cilium.v1alpha1.TracingPolicyList](./Models/io.cilium.v1alpha1.TracingPolicyList.md) + - [io.cilium.v1alpha1.TracingPolicyNamespaced](./Models/io.cilium.v1alpha1.TracingPolicyNamespaced.md) + - [io.cilium.v1alpha1.TracingPolicyNamespacedList](./Models/io.cilium.v1alpha1.TracingPolicyNamespacedList.md) + - [io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions](./Models/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions.md) + - [io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta](./Models/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta.md) + - [io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry](./Models/io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry.md) + - [io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta](./Models/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta.md) + - [io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference](./Models/io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference.md) + - [io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions](./Models/io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions.md) + - [io.k8s.apimachinery.pkg.apis.meta.v1.Status](./Models/io.k8s.apimachinery.pkg.apis.meta.v1.Status.md) + - [io.k8s.apimachinery.pkg.apis.meta.v1.StatusCause](./Models/io.k8s.apimachinery.pkg.apis.meta.v1.StatusCause.md) + - [io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails](./Models/io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails.md) + - [io_cilium_v1alpha1_TracingPolicy_spec](./Models/io_cilium_v1alpha1_TracingPolicy_spec.md) + - [io_cilium_v1alpha1_TracingPolicy_spec_killers_inner](./Models/io_cilium_v1alpha1_TracingPolicy_spec_killers_inner.md) + - [io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner](./Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner.md) + - [io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_args_inner](./Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_args_inner.md) + - [io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_returnArg](./Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_returnArg.md) + - [io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner](./Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner.md) + - [io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchActions_inner](./Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchActions_inner.md) + - [io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchArgs_inner](./Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchArgs_inner.md) + - [io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchBinaries_inner](./Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchBinaries_inner.md) + - [io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchCapabilities_inner](./Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchCapabilities_inner.md) + - [io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchNamespaceChanges_inner](./Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchNamespaceChanges_inner.md) + - [io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchNamespaces_inner](./Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchNamespaces_inner.md) + - [io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchPIDs_inner](./Models/io_cilium_v1alpha1_TracingPolicy_spec_kprobes_inner_selectors_inner_matchPIDs_inner.md) + - [io_cilium_v1alpha1_TracingPolicy_spec_lists_inner](./Models/io_cilium_v1alpha1_TracingPolicy_spec_lists_inner.md) + - [io_cilium_v1alpha1_TracingPolicy_spec_options_inner](./Models/io_cilium_v1alpha1_TracingPolicy_spec_options_inner.md) + - [io_cilium_v1alpha1_TracingPolicy_spec_podSelector](./Models/io_cilium_v1alpha1_TracingPolicy_spec_podSelector.md) + - [io_cilium_v1alpha1_TracingPolicy_spec_podSelector_matchExpressions_inner](./Models/io_cilium_v1alpha1_TracingPolicy_spec_podSelector_matchExpressions_inner.md) + - [io_cilium_v1alpha1_TracingPolicy_spec_tracepoints_inner](./Models/io_cilium_v1alpha1_TracingPolicy_spec_tracepoints_inner.md) + - [io_cilium_v1alpha1_TracingPolicy_spec_uprobes_inner](./Models/io_cilium_v1alpha1_TracingPolicy_spec_uprobes_inner.md) + + + +## Documentation for Authorization + +All endpoints do not require authorization. diff --git a/netlify.toml b/netlify.toml index fd422d3f8d6..e35c7c11f14 100644 --- a/netlify.toml +++ b/netlify.toml @@ -22,4 +22,4 @@ command = "npm ci && hugo" ignore = "git diff --quiet $CACHED_COMMIT_REF $COMMIT_REF ." [build.environment] -HUGO_VERSION = "0.120.4" +HUGO_VERSION = "0.124.1"