Skip to content

Commit

Permalink
schema: Added OpenAPI schema for 1.29.0
Browse files Browse the repository at this point in the history
  • Loading branch information
manusa committed Jan 8, 2024
1 parent 16ca9d7 commit 2965919
Show file tree
Hide file tree
Showing 83 changed files with 81,563 additions and 1,551 deletions.
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ def availableSchemaNames = Arrays.asList(
"kubernetes-1.25.6.json",
"kubernetes-1.26.6.json",
"kubernetes-1.27.3.json",
"kubernetes-1.28.2.json"
"kubernetes-1.28.2.json",
"kubernetes-1.29.0.json"
)
def availableSchemas = availableSchemaNames.stream()
.map { s -> new File(schemaDir, s) }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ KubernetesCall<Status> deleteCollectionMutatingWebhookConfiguration(

final class DeleteCollectionMutatingWebhookConfiguration extends HashMap<String, Object> {
/**
* If 'true', then the output is pretty printed.
* If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
*/
public DeleteCollectionMutatingWebhookConfiguration pretty(String pretty) {
put("pretty", pretty);
Expand Down Expand Up @@ -242,7 +242,7 @@ KubernetesListCall<MutatingWebhookConfigurationList, MutatingWebhookConfiguratio

final class ListMutatingWebhookConfiguration extends HashMap<String, Object> {
/**
* If 'true', then the output is pretty printed.
* If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
*/
public ListMutatingWebhookConfiguration pretty(String pretty) {
put("pretty", pretty);
Expand Down Expand Up @@ -363,7 +363,7 @@ KubernetesCall<MutatingWebhookConfiguration> createMutatingWebhookConfiguration(

final class CreateMutatingWebhookConfiguration extends HashMap<String, Object> {
/**
* If 'true', then the output is pretty printed.
* If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
*/
public CreateMutatingWebhookConfiguration pretty(String pretty) {
put("pretty", pretty);
Expand Down Expand Up @@ -469,7 +469,7 @@ KubernetesCall<Status> deleteMutatingWebhookConfiguration(

final class DeleteMutatingWebhookConfiguration extends HashMap<String, Object> {
/**
* If 'true', then the output is pretty printed.
* If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
*/
public DeleteMutatingWebhookConfiguration pretty(String pretty) {
put("pretty", pretty);
Expand Down Expand Up @@ -542,7 +542,7 @@ KubernetesCall<MutatingWebhookConfiguration> readMutatingWebhookConfiguration(

final class ReadMutatingWebhookConfiguration extends HashMap<String, Object> {
/**
* If 'true', then the output is pretty printed.
* If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
*/
public ReadMutatingWebhookConfiguration pretty(String pretty) {
put("pretty", pretty);
Expand Down Expand Up @@ -589,7 +589,7 @@ KubernetesCall<MutatingWebhookConfiguration> patchMutatingWebhookConfiguration(

final class PatchMutatingWebhookConfiguration extends HashMap<String, Object> {
/**
* If 'true', then the output is pretty printed.
* If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
*/
public PatchMutatingWebhookConfiguration pretty(String pretty) {
put("pretty", pretty);
Expand Down Expand Up @@ -668,7 +668,7 @@ KubernetesCall<MutatingWebhookConfiguration> replaceMutatingWebhookConfiguration

final class ReplaceMutatingWebhookConfiguration extends HashMap<String, Object> {
/**
* If 'true', then the output is pretty printed.
* If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
*/
public ReplaceMutatingWebhookConfiguration pretty(String pretty) {
put("pretty", pretty);
Expand Down Expand Up @@ -762,7 +762,7 @@ KubernetesCall<Status> deleteCollectionValidatingWebhookConfiguration(

final class DeleteCollectionValidatingWebhookConfiguration extends HashMap<String, Object> {
/**
* If 'true', then the output is pretty printed.
* If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
*/
public DeleteCollectionValidatingWebhookConfiguration pretty(String pretty) {
put("pretty", pretty);
Expand Down Expand Up @@ -893,7 +893,7 @@ KubernetesListCall<ValidatingWebhookConfigurationList, ValidatingWebhookConfigur

final class ListValidatingWebhookConfiguration extends HashMap<String, Object> {
/**
* If 'true', then the output is pretty printed.
* If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
*/
public ListValidatingWebhookConfiguration pretty(String pretty) {
put("pretty", pretty);
Expand Down Expand Up @@ -1014,7 +1014,7 @@ KubernetesCall<ValidatingWebhookConfiguration> createValidatingWebhookConfigurat

final class CreateValidatingWebhookConfiguration extends HashMap<String, Object> {
/**
* If 'true', then the output is pretty printed.
* If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
*/
public CreateValidatingWebhookConfiguration pretty(String pretty) {
put("pretty", pretty);
Expand Down Expand Up @@ -1120,7 +1120,7 @@ KubernetesCall<Status> deleteValidatingWebhookConfiguration(

final class DeleteValidatingWebhookConfiguration extends HashMap<String, Object> {
/**
* If 'true', then the output is pretty printed.
* If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
*/
public DeleteValidatingWebhookConfiguration pretty(String pretty) {
put("pretty", pretty);
Expand Down Expand Up @@ -1193,7 +1193,7 @@ KubernetesCall<ValidatingWebhookConfiguration> readValidatingWebhookConfiguratio

final class ReadValidatingWebhookConfiguration extends HashMap<String, Object> {
/**
* If 'true', then the output is pretty printed.
* If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
*/
public ReadValidatingWebhookConfiguration pretty(String pretty) {
put("pretty", pretty);
Expand Down Expand Up @@ -1240,7 +1240,7 @@ KubernetesCall<ValidatingWebhookConfiguration> patchValidatingWebhookConfigurati

final class PatchValidatingWebhookConfiguration extends HashMap<String, Object> {
/**
* If 'true', then the output is pretty printed.
* If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
*/
public PatchValidatingWebhookConfiguration pretty(String pretty) {
put("pretty", pretty);
Expand Down Expand Up @@ -1319,7 +1319,7 @@ KubernetesCall<ValidatingWebhookConfiguration> replaceValidatingWebhookConfigura

final class ReplaceValidatingWebhookConfiguration extends HashMap<String, Object> {
/**
* If 'true', then the output is pretty printed.
* If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
*/
public ReplaceValidatingWebhookConfiguration pretty(String pretty) {
put("pretty", pretty);
Expand Down Expand Up @@ -1418,7 +1418,7 @@ public WatchMutatingWebhookConfigurationList limit(Number limit) {
}

/**
* If 'true', then the output is pretty printed.
* If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
*/
public WatchMutatingWebhookConfigurationList pretty(String pretty) {
put("pretty", pretty);
Expand Down Expand Up @@ -1539,7 +1539,7 @@ public WatchMutatingWebhookConfiguration limit(Number limit) {
}

/**
* If 'true', then the output is pretty printed.
* If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
*/
public WatchMutatingWebhookConfiguration pretty(String pretty) {
put("pretty", pretty);
Expand Down Expand Up @@ -1654,7 +1654,7 @@ public WatchValidatingWebhookConfigurationList limit(Number limit) {
}

/**
* If 'true', then the output is pretty printed.
* If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
*/
public WatchValidatingWebhookConfigurationList pretty(String pretty) {
put("pretty", pretty);
Expand Down Expand Up @@ -1775,7 +1775,7 @@ public WatchValidatingWebhookConfiguration limit(Number limit) {
}

/**
* If 'true', then the output is pretty printed.
* If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
*/
public WatchValidatingWebhookConfiguration pretty(String pretty) {
put("pretty", pretty);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ KubernetesCall<Status> deleteCollectionValidatingAdmissionPolicy(

final class DeleteCollectionValidatingAdmissionPolicy extends HashMap<String, Object> {
/**
* If 'true', then the output is pretty printed.
* If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
*/
public DeleteCollectionValidatingAdmissionPolicy pretty(String pretty) {
put("pretty", pretty);
Expand Down Expand Up @@ -242,7 +242,7 @@ KubernetesListCall<ValidatingAdmissionPolicyList, ValidatingAdmissionPolicy> lis

final class ListValidatingAdmissionPolicy extends HashMap<String, Object> {
/**
* If 'true', then the output is pretty printed.
* If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
*/
public ListValidatingAdmissionPolicy pretty(String pretty) {
put("pretty", pretty);
Expand Down Expand Up @@ -363,7 +363,7 @@ KubernetesCall<ValidatingAdmissionPolicy> createValidatingAdmissionPolicy(

final class CreateValidatingAdmissionPolicy extends HashMap<String, Object> {
/**
* If 'true', then the output is pretty printed.
* If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
*/
public CreateValidatingAdmissionPolicy pretty(String pretty) {
put("pretty", pretty);
Expand Down Expand Up @@ -469,7 +469,7 @@ KubernetesCall<Status> deleteValidatingAdmissionPolicy(

final class DeleteValidatingAdmissionPolicy extends HashMap<String, Object> {
/**
* If 'true', then the output is pretty printed.
* If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
*/
public DeleteValidatingAdmissionPolicy pretty(String pretty) {
put("pretty", pretty);
Expand Down Expand Up @@ -542,7 +542,7 @@ KubernetesCall<ValidatingAdmissionPolicy> readValidatingAdmissionPolicy(

final class ReadValidatingAdmissionPolicy extends HashMap<String, Object> {
/**
* If 'true', then the output is pretty printed.
* If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
*/
public ReadValidatingAdmissionPolicy pretty(String pretty) {
put("pretty", pretty);
Expand Down Expand Up @@ -589,7 +589,7 @@ KubernetesCall<ValidatingAdmissionPolicy> patchValidatingAdmissionPolicy(

final class PatchValidatingAdmissionPolicy extends HashMap<String, Object> {
/**
* If 'true', then the output is pretty printed.
* If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
*/
public PatchValidatingAdmissionPolicy pretty(String pretty) {
put("pretty", pretty);
Expand Down Expand Up @@ -668,7 +668,7 @@ KubernetesCall<ValidatingAdmissionPolicy> replaceValidatingAdmissionPolicy(

final class ReplaceValidatingAdmissionPolicy extends HashMap<String, Object> {
/**
* If 'true', then the output is pretty printed.
* If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
*/
public ReplaceValidatingAdmissionPolicy pretty(String pretty) {
put("pretty", pretty);
Expand Down Expand Up @@ -733,7 +733,7 @@ KubernetesCall<ValidatingAdmissionPolicy> readValidatingAdmissionPolicyStatus(

final class ReadValidatingAdmissionPolicyStatus extends HashMap<String, Object> {
/**
* If 'true', then the output is pretty printed.
* If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
*/
public ReadValidatingAdmissionPolicyStatus pretty(String pretty) {
put("pretty", pretty);
Expand Down Expand Up @@ -780,7 +780,7 @@ KubernetesCall<ValidatingAdmissionPolicy> patchValidatingAdmissionPolicyStatus(

final class PatchValidatingAdmissionPolicyStatus extends HashMap<String, Object> {
/**
* If 'true', then the output is pretty printed.
* If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
*/
public PatchValidatingAdmissionPolicyStatus pretty(String pretty) {
put("pretty", pretty);
Expand Down Expand Up @@ -859,7 +859,7 @@ KubernetesCall<ValidatingAdmissionPolicy> replaceValidatingAdmissionPolicyStatus

final class ReplaceValidatingAdmissionPolicyStatus extends HashMap<String, Object> {
/**
* If 'true', then the output is pretty printed.
* If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
*/
public ReplaceValidatingAdmissionPolicyStatus pretty(String pretty) {
put("pretty", pretty);
Expand Down Expand Up @@ -953,7 +953,7 @@ KubernetesCall<Status> deleteCollectionValidatingAdmissionPolicyBinding(

final class DeleteCollectionValidatingAdmissionPolicyBinding extends HashMap<String, Object> {
/**
* If 'true', then the output is pretty printed.
* If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
*/
public DeleteCollectionValidatingAdmissionPolicyBinding pretty(String pretty) {
put("pretty", pretty);
Expand Down Expand Up @@ -1084,7 +1084,7 @@ KubernetesListCall<ValidatingAdmissionPolicyBindingList, ValidatingAdmissionPoli

final class ListValidatingAdmissionPolicyBinding extends HashMap<String, Object> {
/**
* If 'true', then the output is pretty printed.
* If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
*/
public ListValidatingAdmissionPolicyBinding pretty(String pretty) {
put("pretty", pretty);
Expand Down Expand Up @@ -1205,7 +1205,7 @@ KubernetesCall<ValidatingAdmissionPolicyBinding> createValidatingAdmissionPolicy

final class CreateValidatingAdmissionPolicyBinding extends HashMap<String, Object> {
/**
* If 'true', then the output is pretty printed.
* If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
*/
public CreateValidatingAdmissionPolicyBinding pretty(String pretty) {
put("pretty", pretty);
Expand Down Expand Up @@ -1311,7 +1311,7 @@ KubernetesCall<Status> deleteValidatingAdmissionPolicyBinding(

final class DeleteValidatingAdmissionPolicyBinding extends HashMap<String, Object> {
/**
* If 'true', then the output is pretty printed.
* If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
*/
public DeleteValidatingAdmissionPolicyBinding pretty(String pretty) {
put("pretty", pretty);
Expand Down Expand Up @@ -1384,7 +1384,7 @@ KubernetesCall<ValidatingAdmissionPolicyBinding> readValidatingAdmissionPolicyBi

final class ReadValidatingAdmissionPolicyBinding extends HashMap<String, Object> {
/**
* If 'true', then the output is pretty printed.
* If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
*/
public ReadValidatingAdmissionPolicyBinding pretty(String pretty) {
put("pretty", pretty);
Expand Down Expand Up @@ -1431,7 +1431,7 @@ KubernetesCall<ValidatingAdmissionPolicyBinding> patchValidatingAdmissionPolicyB

final class PatchValidatingAdmissionPolicyBinding extends HashMap<String, Object> {
/**
* If 'true', then the output is pretty printed.
* If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
*/
public PatchValidatingAdmissionPolicyBinding pretty(String pretty) {
put("pretty", pretty);
Expand Down Expand Up @@ -1510,7 +1510,7 @@ KubernetesCall<ValidatingAdmissionPolicyBinding> replaceValidatingAdmissionPolic

final class ReplaceValidatingAdmissionPolicyBinding extends HashMap<String, Object> {
/**
* If 'true', then the output is pretty printed.
* If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
*/
public ReplaceValidatingAdmissionPolicyBinding pretty(String pretty) {
put("pretty", pretty);
Expand Down Expand Up @@ -1609,7 +1609,7 @@ public WatchValidatingAdmissionPolicyList limit(Number limit) {
}

/**
* If 'true', then the output is pretty printed.
* If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
*/
public WatchValidatingAdmissionPolicyList pretty(String pretty) {
put("pretty", pretty);
Expand Down Expand Up @@ -1730,7 +1730,7 @@ public WatchValidatingAdmissionPolicy limit(Number limit) {
}

/**
* If 'true', then the output is pretty printed.
* If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
*/
public WatchValidatingAdmissionPolicy pretty(String pretty) {
put("pretty", pretty);
Expand Down Expand Up @@ -1845,7 +1845,7 @@ public WatchValidatingAdmissionPolicyBindingList limit(Number limit) {
}

/**
* If 'true', then the output is pretty printed.
* If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
*/
public WatchValidatingAdmissionPolicyBindingList pretty(String pretty) {
put("pretty", pretty);
Expand Down Expand Up @@ -1966,7 +1966,7 @@ public WatchValidatingAdmissionPolicyBinding limit(Number limit) {
}

/**
* If 'true', then the output is pretty printed.
* If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).
*/
public WatchValidatingAdmissionPolicyBinding pretty(String pretty) {
put("pretty", pretty);
Expand Down
Loading

0 comments on commit 2965919

Please sign in to comment.