Skip to content
This repository was archived by the owner on Jan 13, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 15 additions & 22 deletions cmd/kubeapps-apis/docs/kubeapps-apis.swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -974,9 +974,8 @@
"description": "A user-provided description."
},
"interval": {
"type": "integer",
"format": "int64",
"title": "The interval at which to check the upstream for updates (in seconds)\nOptional. Defaults to 10m if not specified"
"type": "string",
"title": "The interval at which to check the upstream for updates (in time+unit)\nOptional. Defaults to 10m if not specified"
},
"tlsConfig": {
"$ref": "#/definitions/v1alpha1PackageRepositoryTlsConfig",
Expand Down Expand Up @@ -1919,9 +1918,8 @@
"description": "A user-provided description."
},
"interval": {
"type": "integer",
"format": "int64",
"title": "The interval at which to check the upstream for updates (in seconds)\nOptional. Defaults to 10m if not specified"
"type": "string",
"title": "The interval at which to check the upstream for updates (in time+unit)\nOptional. Defaults to 10m if not specified"
},
"tlsConfig": {
"$ref": "#/definitions/v1alpha1PackageRepositoryTlsConfig",
Expand Down Expand Up @@ -2919,9 +2917,8 @@
"description": "A user-provided description."
},
"interval": {
"type": "integer",
"format": "int64",
"title": "The interval at which to check the upstream for updates (in seconds)\nOptional. Defaults to 10m if not specified"
"type": "string",
"title": "The interval at which to check the upstream for updates (in time+unit)\nOptional. Defaults to 10m if not specified"
},
"tlsConfig": {
"$ref": "#/definitions/v1alpha1PackageRepositoryTlsConfig",
Expand Down Expand Up @@ -3837,9 +3834,8 @@
"description": "A user-provided description."
},
"interval": {
"type": "integer",
"format": "int64",
"title": "The interval at which to check the upstream for updates (in seconds)\nOptional. Defaults to 10m if not specified"
"type": "string",
"title": "The interval at which to check the upstream for updates (in time+unit)\nOptional. Defaults to 10m if not specified"
},
"tlsConfig": {
"$ref": "#/definitions/v1alpha1PackageRepositoryTlsConfig",
Expand Down Expand Up @@ -4254,7 +4250,7 @@
}
},
"additionalProperties": {},
"description": "`Any` contains an arbitrary serialized protocol buffer message along with a\nURL that describes the type of the serialized message.\n\nProtobuf library provides support to pack/unpack Any values in the form\nof utility functions or additional generated methods of the Any type.\n\nExample 1: Pack and unpack a message in C++.\n\n Foo foo = ...;\n Any any;\n any.PackFrom(foo);\n ...\n if (any.UnpackTo(\u0026foo)) {\n ...\n }\n\nExample 2: Pack and unpack a message in Java.\n\n Foo foo = ...;\n Any any = Any.pack(foo);\n ...\n if (any.is(Foo.class)) {\n foo = any.unpack(Foo.class);\n }\n\n Example 3: Pack and unpack a message in Python.\n\n foo = Foo(...)\n any = Any()\n any.Pack(foo)\n ...\n if any.Is(Foo.DESCRIPTOR):\n any.Unpack(foo)\n ...\n\n Example 4: Pack and unpack a message in Go\n\n foo := \u0026pb.Foo{...}\n any, err := anypb.New(foo)\n if err != nil {\n ...\n }\n ...\n foo := \u0026pb.Foo{}\n if err := any.UnmarshalTo(foo); err != nil {\n ...\n }\n\nThe pack methods provided by protobuf library will by default use\n'type.googleapis.com/full.type.name' as the type URL and the unpack\nmethods only use the fully qualified type name after the last '/'\nin the type URL, for example \"foo.bar.com/x/y.z\" will yield type\nname \"y.z\".\n\n\nJSON\n====\nThe JSON representation of an `Any` value uses the regular\nrepresentation of the deserialized, embedded message, with an\nadditional field `@type` which contains the type URL. Example:\n\n package google.profile;\n message Person {\n string first_name = 1;\n string last_name = 2;\n }\n\n {\n \"@type\": \"type.googleapis.com/google.profile.Person\",\n \"firstName\": \u003cstring\u003e,\n \"lastName\": \u003cstring\u003e\n }\n\nIf the embedded message type is well-known and has a custom JSON\nrepresentation, that representation will be embedded adding a field\n`value` which holds the custom JSON in addition to the `@type`\nfield. Example (for message [google.protobuf.Duration][]):\n\n {\n \"@type\": \"type.googleapis.com/google.protobuf.Duration\",\n \"value\": \"1.212s\"\n }"
"description": "`Any` contains an arbitrary serialized protocol buffer message along with a\nURL that describes the type of the serialized message.\n\nProtobuf library provides support to pack/unpack Any values in the form\nof utility functions or additional generated methods of the Any type.\n\nExample 1: Pack and unpack a message in C++.\n\n Foo foo = ...;\n Any any;\n any.PackFrom(foo);\n ...\n if (any.UnpackTo(\u0026foo)) {\n ...\n }\n\nExample 2: Pack and unpack a message in Java.\n\n Foo foo = ...;\n Any any = Any.pack(foo);\n ...\n if (any.is(Foo.class)) {\n foo = any.unpack(Foo.class);\n }\n\nExample 3: Pack and unpack a message in Python.\n\n foo = Foo(...)\n any = Any()\n any.Pack(foo)\n ...\n if any.Is(Foo.DESCRIPTOR):\n any.Unpack(foo)\n ...\n\nExample 4: Pack and unpack a message in Go\n\n foo := \u0026pb.Foo{...}\n any, err := anypb.New(foo)\n if err != nil {\n ...\n }\n ...\n foo := \u0026pb.Foo{}\n if err := any.UnmarshalTo(foo); err != nil {\n ...\n }\n\nThe pack methods provided by protobuf library will by default use\n'type.googleapis.com/full.type.name' as the type URL and the unpack\nmethods only use the fully qualified type name after the last '/'\nin the type URL, for example \"foo.bar.com/x/y.z\" will yield type\nname \"y.z\".\n\n\nJSON\n\nThe JSON representation of an `Any` value uses the regular\nrepresentation of the deserialized, embedded message, with an\nadditional field `@type` which contains the type URL. Example:\n\n package google.profile;\n message Person {\n string first_name = 1;\n string last_name = 2;\n }\n\n {\n \"@type\": \"type.googleapis.com/google.profile.Person\",\n \"firstName\": \u003cstring\u003e,\n \"lastName\": \u003cstring\u003e\n }\n\nIf the embedded message type is well-known and has a custom JSON\nrepresentation, that representation will be embedded adding a field\n`value` which holds the custom JSON in addition to the `@type`\nfield. Example (for message [google.protobuf.Duration][]):\n\n {\n \"@type\": \"type.googleapis.com/google.protobuf.Duration\",\n \"value\": \"1.212s\"\n }"
},
"rpcStatus": {
"type": "object",
Expand Down Expand Up @@ -4302,9 +4298,8 @@
"title": "A URL identifying the package repository location. Must contain at\nleast a protocol and host"
},
"interval": {
"type": "integer",
"format": "int64",
"title": "The interval at which to check the upstream for updates (in seconds)\nOptional. Defaults to 10m if not specified"
"type": "string",
"title": "The interval at which to check the upstream for updates (in time+unit)\nOptional. Defaults to 10m if not specified"
},
"tlsConfig": {
"$ref": "#/definitions/v1alpha1PackageRepositoryTlsConfig",
Expand Down Expand Up @@ -5150,9 +5145,8 @@
"description": "A URL identifying the package repository location."
},
"interval": {
"type": "integer",
"format": "int64",
"title": "The interval at which to check the upstream for updates (in seconds)"
"type": "string",
"title": "The interval at which to check the upstream for updates (in time+unit)"
},
"tlsConfig": {
"$ref": "#/definitions/v1alpha1PackageRepositoryTlsConfig",
Expand Down Expand Up @@ -5321,9 +5315,8 @@
"type": "object",
"properties": {
"interval": {
"type": "integer",
"format": "int32",
"description": "The interval with which the package is checked for reconciliation (in seconds)",
"type": "string",
"description": "The interval with which the package is checked for reconciliation (in time+unit)",
"title": "Reconciliation Interval"
},
"suspend": {
Expand Down
10 changes: 5 additions & 5 deletions cmd/kubeapps-apis/gen/core/packages/v1alpha1/packages.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 15 additions & 15 deletions cmd/kubeapps-apis/gen/core/packages/v1alpha1/repositories.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading