json_schema
stringlengths
43
1.28M
unique_id
stringlengths
2
41
{ "definitions": { "null": { "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "additionalProperties": false, "properties": { "Id": { "type": "integer" }, "Type": { "type": "null" }, "View": { "type": "null" } }, "required": [ "Id", "Type", "View" ] } }, "properties": { "null": { "$ref": "#/definitions/null" } }, "required": [ "null" ] }
o43248
{ "properties": { "location": { "description": "The location of the meeting", "type": "string" }, "meeting_date": { "description": "The date and time of the meeting", "format": "date-time", "type": "string" }, "meeting_title": { "description": "The title of the meeting", "type": "string" }, "participants": { "description": "The email addresses of the participants", "items": { "type": "string" }, "type": "array" } }, "required": [ "meeting_title", "participants", "meeting_date", "location" ], "type": "object" }
schedule_meeting_e883bf27
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the triangle", "type": "number" }, "height": { "description": "The height of the triangle", "type": "number" }, "length": { "description": "The length of the rectangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "required": [ "radius", "length", "width", "base", "height" ], "type": "object" }, "shape": { "description": "The shape for which area is to be calculated", "enum": [ "circle", "rectangle", "triangle" ], "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_46f371a2
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "type": { "enum": [ "free", "premium" ], "description": "We have a couple of types available" } }, "additionalProperties": false }
o25793
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Gateway set", "type": "array", "items": { "title": "Gateway", "type": "object", "properties": { "apiVersion": { "enum": [ "v1beta1", "v1.0", "v1" ] }, "kind": { "enum": [ "Gateway", "gateway" ], "readOnly": true }, "metadata": { "type": "object", "properties": { "name": { "type": "string", "minLength": 3, "maxLength": 30 }, "createdOn": { "type": "string", "readOnly": true }, "modifiedOn": { "type": "string", "readOnly": true }, "ref": { "type": "string", "readOnly": true, "minLength": 3, "maxLength": 24 } }, "required": [ "name" ] }, "spec": { "type": "object", "properties": { "credentials": { "type": "object", "properties": { "username": { "type": "string", "minLength": 3, "maxLength": 30 }, "secret": { "type": "string", "writeOnly": true } }, "required": [ "username", "secret" ] }, "expires": { "type": "integer", "minimum": 0 }, "host": { "type": "string", "minLength": 1 }, "port": { "type": "integer" }, "transport": { "enum": [ "tcp", "udp" ] }, "registries": { "type": "array", "items": { "type": "string" }, "minItems": 1, "_uniqueItems": true } }, "required": [ "host", "transport" ] } }, "required": [ "apiVersion", "kind", "metadata", "spec" ] } }
o68601
{ "$schema": "http://json-schema.org/draft-06/schema", "type": "object", "properties": { "hazelcast": { "type": "object", "additionalProperties": false, "properties": { "import": { "$ref": "#/definitions/Import" }, "config-replacers": { "$ref": "#/definitions/ConfigReplacers" }, "cluster-name": { "type": "string" }, "license-key": { "type": "string" }, "instance-name": { "type": "string" }, "management-center": { "$ref": "#/definitions/ManagementCenter" }, "properties": { "description": "The \"properties\" mapping lets you add properties to some of the Hazelcast elements used to configure some of the Hazelcast modules. You can define the name and value of these properties. You can use \"properties\" for the following Hazelcast configuration elements: \\n * discovery-strategy \\n * map-store \\n * queue-store \\n * wan-replication \\n * ssl \\n * service \\n * login-module \\n * security-object \\n * socket-interceptor ", "type": "object" }, "wan-replication": { "$ref": "#/definitions/WanReplication" }, "network": { "$ref": "#/definitions/Network" }, "partition-group": { "$ref": "#/definitions/PartitionGroup" }, "executor-service": { "$ref": "#/definitions/ExecutorService" }, "durable-executor-service": { "$ref": "#/definitions/DurableExecutorService" }, "scheduled-executor-service": { "$ref": "#/definitions/ScheduledExecutorService" }, "cardinality-estimator": { "$ref": "#/definitions/CardinalityEstimator" }, "queue": { "$ref": "#/definitions/Queue" }, "map": { "$ref": "#/definitions/Map" }, "multimap": { "$ref": "#/definitions/Multimap" }, "replicatedmap": { "$ref": "#/definitions/ReplicatedMap" }, "cache": { "$ref": "#/definitions/Cache" }, "list": { "$ref": "#/definitions/List" }, "set": { "$ref": "#/definitions/Set" }, "topic": { "$ref": "#/definitions/Topic" }, "reliable-topic": { "$ref": "#/definitions/ReliableTopic" }, "ringbuffer": { "$ref": "#/definitions/Ringbuffer" }, "flake-id-generator": { "$ref": "#/definitions/FlakeIdGenerator" }, "listeners": { "$ref": "#/definitions/Listeners" }, "serialization": { "$ref": "#/definitions/Serialization" }, "native-memory": { "$ref": "#/definitions/NativeMemory" }, "security": { "$ref": "#/definitions/Security" }, "member-attributes": { "$ref": "#/definitions/MemberAttributes" }, "split-brain-protection": { "$ref": "#/definitions/SplitBrainProtection" }, "lite-member": { "$ref": "#/definitions/LiteMember" }, "hot-restart-persistence": { "$ref": "#/definitions/HotRestartPersistence" }, "persistence": { "$ref": "#/definitions/Persistence" }, "user-code-deployment": { "$ref": "#/definitions/UserCodeDeployment" }, "crdt-replication": { "$ref": "#/definitions/CrdtReplication" }, "pn-counter": { "$ref": "#/definitions/PNCounter" }, "advanced-network": { "$ref": "#/definitions/AdvancedNetwork" }, "cp-subsystem": { "$ref": "#/definitions/CPSubsystem" }, "metrics": { "$ref": "#/definitions/Metrics" }, "sql": { "$ref": "#/definitions/Sql" }, "auditlog": { "$ref": "#/definitions/Auditlog" }, "instance-tracking": { "$ref": "#/definitions/InstanceTracking" }, "jet": { "$ref": "#/definitions/Jet" }, "local-device": { "$ref": "#/definitions/LocalDevice" }, "dynamic-configuration": { "$ref": "#/definitions/DynamicConfiguration" }, "integrity-checker": { "$ref": "#/definitions/IntegrityChecker" }, "data-connection": { "$ref": "#/definitions/DataConnectionConfig" }, "tpc": { "$ref": "#/definitions/TpcConfig" } } }, "hazelcast-client": { "type": "object", "additionalProperties": false, "properties": { "import": { "$ref": "#/definitions/Import" }, "config-replacers": { "$ref": "#/definitions/ConfigReplacers" }, "cluster-name": { "type": "string", "description": "Specifies the cluster name. It's sent as part of the client authentication message to Hazelcast member(s)." }, "instance-name": { "$ref": "#/properties/hazelcast/properties/instance-name" }, "properties": { "$ref": "#/properties/hazelcast/properties/properties" }, "client-labels": { "description": "The 'client-labels' sequence lets you define labels in your Java client, similar to the way it can be done for the members. Through the client labels, you can assign special roles for your clients and use these roles to perform some actions specific to those client connections. You can also group your clients using the client labels. These client groups can be blacklisted in the Hazelcast Management Center so that they can be prevented from connecting to a cluster. See the related section in the Hazelcast Management Center Reference Manual for more information on this topic.", "type": "array", "uniqueItems": true, "items": { "type": "string" } }, "backup-ack-to-client-enabled": { "type": "boolean", "default": true, "description": "The 'backup-ack-to-client-enabled' element lets you enable/disable backups ack to client. This feature reduces number of hops and increase performance for smart clients. It is enabled by default for smart clients. This config has no effect for unisocket clients." }, "listeners": { "$ref": "#/definitions/Listeners" }, "serialization": { "$ref": "#/definitions/Serialization" }, "native-memory": { "$ref": "#/definitions/NativeMemory" }, "proxy-factories": { "$ref": "#/definitions/ProxyFactories" }, "load-balancer": { "$ref": "#/definitions/LoadBalancer" }, "near-cache": { "$ref": "#/definitions/ClientNearCache" }, "flake-id-generator": { "$ref": "#/definitions/ClientFlakeIdGenerator" }, "query-caches": { "$ref": "#/definitions/Map/additionalProperties/properties/query-caches" }, "reliable-topic": { "$ref": "#/definitions/ClientReliableTopic" }, "user-code-deployment": { "$ref": "#/definitions/ClientUserCodeDeployment" }, "instance-tracking": { "$ref": "#/definitions/InstanceTracking" }, "metrics": { "$ref": "#/definitions/ClientMetrics" }, "connection-strategy": { "$ref": "#/definitions/ConnectionStrategy" }, "security": { "$ref": "#/definitions/ClientSecurity" }, "network": { "$ref": "#/definitions/ClientNetwork" }, "sql": { "$ref": "#/definitions/ClientSql" }, "tpc": { "$ref": "#/definitions/ClientTpc" } } }, "hazelcast-client-failover": { "type": "object", "additionalProperties": false, "description": "The Hazelcast client can configurations that the client is using to connect to a Hazelcast cluster in the case of a disconnect is listed under the \"clients\" array. You can list client configurations as many as you want.", "properties": { "clients": { "type": "array", "minItems": 1, "items": { "type": "string" } }, "try-count": { "type": "integer", "minimum": 0, "default": 2147483647 } } } }, "definitions": { "Import": { "type": "array", "items": { "type": "string" } }, "ConfigReplacers": { "type": "object", "properties": { "fail-if-value-missing": { "type": "boolean", "default": false }, "replacers": { "type": "array", "items": { "type": "object", "properties": { "class-name": { "type": "string" }, "properties": { "type": "object" } }, "required": [ "class-name" ] } } } }, "ManagementCenter": { "type": "object", "additionalProperties": false, "properties": { "scripting-enabled": { "description": "Set to true to allow scripting on the member, false to disallow.", "type": "boolean", "default": false }, "console-enabled": { "description": "Set to true to allow console commands execution on the member, false to disallow.", "type": "boolean", "default": false }, "data-access-enabled": { "description": "Set to true to allow Management Center access to contents of Hazelcast data structures (for instance map entries), false to disallow. Management Center can't access the data if at least one member has the data access disabled.", "type": "boolean", "default": true }, "trusted-interfaces": { "type": "array", "items": { "type": "string" } } } }, "NetworkJoin": { "type": "object", "description": "This configuration lets you choose a discovery mechanism that Hazelcast will use to form a cluster. Hazelcast can find members by multicast, TCP/IP lists and by various discovery mechanisms provided by different cloud APIs.", "additionalProperties": false, "properties": { "multicast": { "type": "object", "additionalProperties": false, "description": "Set its \"enabled\" attribute to true for discovery by multicast. It has another attribute (\"loopback-mode-enabled\") which enables or disables the loopback mode in the multicast discovery mechanism. ", "properties": { "enabled": { "type": "boolean", "default": true, "description": "Specifies whether multicast discovery is enabled." }, "loopback-mode-enabled": { "type": "boolean", "default": false, "description": "Specifies if the loopback mode is enabled for multicast discovery." }, "loopbackModeEnabled": { "type": "boolean", "default": false, "description": "Alias for loopback-mode-enabled" }, "multicast-group": { "type": "string", "default": "224.2.2.3", "description": "Specifies the multicast group IP address when you want to create clusters within the same network." }, "multicast-port": { "type": "integer", "default": 54327, "description": "Specifies the multicast socket port that the Hazelcast member listens to and sends discovery messages through." }, "multicast-time-to-live": { "type": "integer", "minimum": 0, "maximum": 255, "default": 32, "description": "Time-to-live value for multicast packets sent out to control the scope of multicasts." }, "multicast-timeout-seconds": { "type": "integer", "default": 2, "description": "Only when the members are starting up, this timeout (in seconds) specifies the period during which a member waits for a multicast response from another node. For example, if you set it as 60 seconds, each node will wait for 60 seconds until a leader node is selected." }, "trusted-interfaces": { "type": "array", "description": "Includes IP addresses of trusted members. When a node wants to join to the cluster, its join request will be rejected if it is not a trusted member. You can give an IP addresses range using the wildcard (*) on the last digit of IP address (e.g. 192.168.1.* or 192.168.1.100-110).", "items": { "type": "string" } } } }, "auto-detection": { "$ref": "#/definitions/AutoDetection" }, "tcp-ip": { "type": "object", "additionalProperties": false, "properties": { "enabled": { "type": "boolean", "default": false, "description": "Specifies whether the TCP/IP discovery is enabled or not." }, "connection-timeout-seconds": { "type": "integer", "minimum": 0, "default": 5, "description": "The maximum amount of time Hazelcast is going to try to connect to a well known member before giving up. Setting it to a too low value could mean that a member is not able to connect to a cluster. Setting it to a too high value means that member startup could slow down because of longer timeouts (e.g. when a well known member is not up). Increasing this value is recommended if you have many IPs listed and the members cannot properly build up the cluster." }, "required-member": { "type": "string", "description": "IP address of the required member. Cluster will only be formed if the member with this IP address is found." }, "member": { "type": "string", "description": "IP address(es) of one or more well known members. Once members are connected to these well known ones, all member addresses will be communicated with each other. You can also give comma separated IP addresses using the \"members\" element or list the members with the \"member\" element under \"member-list\"." }, "members": { "type": "string", "description": "Comma separated IP addresses of one or more well known members." }, "member-list": { "type": "array", "description": "Sequence of IP address(es) of one or more well known members.", "items": { "type": "string" } }, "interface": { "type": "string", "description": "IP address(es) of one or more well known members." } } }, "aws": { "$ref": "#/definitions/AwsDiscovery" }, "gcp": { "$ref": "#/definitions/GcpDiscovery" }, "azure": { "$ref": "#/definitions/AzureDiscovery" }, "kubernetes": { "$ref": "#/definitions/KubernetesDiscovery" }, "eureka": { "$ref": "#/definitions/EurekaDiscovery" }, "discovery-strategies": { "$ref": "#/definitions/DiscoveryStrategies" } } }, "MemberAddressProvider": { "type": "object", "description": "IMPORTANT\\nThis configuration is not intended to provide addresses of other cluster members with which the Hazelcast instance will form a cluster. This is an SPI for advanced use in cases where the DefaultAddressPicker does not pick suitable addresses to bind to and publish to other cluster members. For instance, this could allow easier deployment in some cases when running on Docker, AWS or other cloud environments. That said, if you are just starting with Hazelcast, you will probably want to set the member addresses by using the tcp-ip or multicast configuration or adding a discovery strategy. Member address provider allows to plug in own strategy to customize:\\n1. What address Hazelcast will bind to\\n2. What address Hazelcast will advertise to other members on which they can bind to\\nIn most environments you don't need to customize this and the default strategy will work just fine. However in some cloud environments the default strategy does not make the right choice and the member address provider delegates the process of address picking to external code.", "additionalProperties": false, "properties": { "enabled": { "type": "boolean", "default": false, "description": "Specifies whether the member address provider SPI is enabled or not." }, "class-name": { "type": "string", "description": "The name of the class implementing the com.hazelcast.spi.MemberAddressProvider interface." }, "properties": { "type": "object", "description": "The properties that will be provided when constructing the provided MemberAddressProvider. Hazelcast will first try instantiating the provided class by invoking a constructor accepting a single java.util.Properties instance. In the case where there is no such constructor and there are also no properties defined by this configuration, Hazelcast will exceptionally try to use the no-arg constructor." } } }, "Interfaces": { "type": "object", "additionalProperties": false, "properties": { "enabled": { "type": "boolean", "default": false, "description": "You need to set it to true to be able to use your defined interfaces." }, "interfaces": { "type": "array", "items": { "type": "string" } } }, "description": "You can define multiple interfaces. By default, it is disabled." }, "FailureDetector": { "type": "object", "description": "A failure detector is responsible to determine if a member in the cluster is unreachable or crashed. Please refer to https://docs.hazelcast.org/docs/latest/manual/html-single/index.html#failure-detector-configuration for the failure detectors implemented by Hazelcast.", "additionalProperties": false, "properties": { "icmp": { "type": "object", "description": "ICMP can be used in addition to the other detectors. It operates at layer 3 and detects network and hardware issues more quickly.", "additionalProperties": false, "properties": { "enabled": { "type": "boolean", "default": false }, "timeout-milliseconds": { "type": "integer", "minimum": 1, "default": 1000, "description": "Timeout in milliseconds before declaring a failed ping." }, "fail-fast-on-startup": { "type": "boolean", "default": true, "description": "Cluster Member will fail to start if it is unable to action an ICMP ping command when ICMP is enabled. Failure is usually due to OS level restrictions." }, "interval-milliseconds": { "type": "integer", "minimum": 1000, "default": 1000, "description": "Time in milliseconds between each ICMP ping." }, "max-attempts": { "type": "integer", "minimum": 0, "default": 2, "description": "Maximum number of consecutive failed attempts before declaring a member suspect." }, "parallel-mode": { "type": "boolean", "default": true, "description": "Run ICMP detection in parallel with the Heartbeat failure detector." }, "ttl": { "type": "integer", "minimum": 0, "default": 255, "description": "Maximum number of times the IP Datagram (ping) can be forwarded, in most cases all Hazelcast cluster members would be within one network switch/router therefore default of 0 is usually sufficient." } } } } }, "AwsDiscovery": { "type": "object", "description": "Please refer to https://github.com/hazelcast/hazelcast-aws/#configuration for the configuration details.", "properties": { "enabled": { "type": "boolean", "default": false, "description": "Specifies whether AWS discovery is enabled or not." } } }, "GcpDiscovery": { "type": "object", "description": "Please refer to https://github.com/hazelcast/hazelcast-gcp/#configuration for the configuration details.", "properties": { "enabled": { "type": "boolean", "default": false, "description": "Specifies whether Google Cloud Platform discovery is enabled or not." } } }, "AzureDiscovery": { "type": "object", "description": "Please refer to https://github.com/hazelcast/hazelcast-azure/#configuring-at-hazelcast-side for the configuration details.", "properties": { "enabled": { "type": "boolean", "default": false, "description": "Specifies whether Microsoft Azure discovery is enabled or not." } } }, "KubernetesDiscovery": { "type": "object", "description": "Please refer to https://github.com/hazelcast/hazelcast-azure/#configuring-at-hazelcast-side for the configuration details.", "properties": { "enabled": { "type": "boolean", "default": false, "description": "Specifies whether Microsoft Azure discovery is enabled or not." } } }, "EurekaDiscovery": { "type": "object", "description": "Please refer to https://github.com/hazelcast/hazelcast-eureka#hazelcast-configuration for the configuration details.", "properties": { "enabled": { "type": "boolean", "default": false, "description": "Specifies whether Eureka Service Registry discovery is enabled or not." } } }, "DiscoveryStrategies": { "type": "object", "additionalProperties": false, "properties": { "node-filter": { "type": "object", "properties": { "class": { "type": "string" } } }, "discovery-strategies": { "type": "array", "items": { "type": "object", "additionalProperties": false, "description": "Set its \"enabled\" sub-element to true for discovery in various cloud infrastructures. You also need to set the value of \"hazelcast.discovery.enabled\" property to true. See the description of the \"properties\" element to learn how to do this. You can define multiple discovery strategies using the \"discovery-strategy\" sub-element and its properties. Please refer to http://docs.hazelcast.org/docs/latest/manual/html-single/index.html#discovering-cluster-members to see the properties you can use.", "properties": { "enabled": { "type": "boolean", "default": true }, "class": { "type": "string" }, "properties": { "type": "object" } } } } } }, "RestEndpointGroups": { "allOf": [ { "type": "object", "propertyNames": { "enum": [ "CLUSTER_READ", "CLUSTER_WRITE", "HEALTH_CHECK", "PERSISTENCE", "HOT_RESTART", "WAN", "DATA", "CP" ] }, "additionalProperties": { "type": "object", "additionalProperties": false, "properties": { "enabled": { "type": "boolean" } } } }, { "patternProperties": { "^(CLUSTER_READ|HEALTH_CHECK)$": { "default": { "enabled": true } } }, "additionalProperties": { "default": { "enabled": false } } } ] }, "Network": { "type": "object", "additionalProperties": false, "properties": { "public-address": { "type": "string", "description": "Overrides the public address of a node. By default, a node selects its socket address as its public address. But behind a network address translation (NAT), two endpoints (nodes) may not be able to see/access each other. If both nodes set their public addresses to their defined addresses on NAT, then they can communicate with each other. In this case, their public addresses are not an address of a local network interface but a virtual address defined by NAT. This is optional to set and useful when you have a private cloud." }, "reuse-address": { "type": "boolean", "default": false, "description": "When you shutdown a cluster member, the server socket port will be in the TIME_WAIT state for the next couple of minutes. If you start the member right after shutting it down, you may not be able to bind it to the same port because it is in the TIME_WAIT state. If you set reuse-address to true, the TIME_WAIT state is ignored and you can bind the member to the same port again." }, "port": { "type": "object", "additionalProperties": false, "description": "Specifies the ports that Hazelcast will use to communicate between cluster members.", "properties": { "port": { "type": "integer", "minimum": 0, "maximum": 65536, "default": 5701 }, "port-count": { "type": "integer", "default": 100, "minimum": 1, "description": "By default, Hazelcast will try 100 ports to bind (i.e. the ports between 5701 and 5801). You can change the port count in such cases as having large instances on a single machine or you are willing to have only a few ports assigned." }, "auto-increment": { "type": "boolean", "default": true, "description": "By default, Hazelcast tries to find a port by automatically incrementing the port numbers. If you don't want this (for example, you want to use a specific port), set auto-increment to false. If it is set to false, the port-count attribute is ignored." } } }, "outbound-ports": { "$ref": "#/definitions/OutboundPorts" }, "join": { "$ref": "#/definitions/NetworkJoin" }, "member-address-provider": { "$ref": "#/definitions/MemberAddressProvider" }, "failure-detector": { "$ref": "#/definitions/FailureDetector" }, "interfaces": { "$ref": "#/definitions/Interfaces" }, "memcache-protocol": { "type": "object", "additionalProperties": false, "properties": { "enabled": { "type": "boolean", "default": false } }, "description": "Allows to configure Memcache text protocol support in Hazelcast." }, "ssl": { "$ref": "#/definitions/SSL" }, "rest-api": { "type": "object", "additionalProperties": false, "properties": { "enabled": { "type": "boolean", "default": false }, "endpoint-groups": { "$ref": "#/definitions/RestEndpointGroups" } } }, "symmetric-encryption": { "type": "object", "additionalProperties": false, "description": "Lets you encrypt the entire socket level communication among all Hazelcast members. This feature is available only in Hazelcast Enterprise. Its configuration contains the encryption properties and the same configuration must be placed to all members. By default, it is disabled.", "properties": { "enabled": { "type": "boolean", "default": false }, "algorithm": { "type": "string", "default": "PBEWithMD5AndDES" }, "password": { "type": "string" }, "salt": { "type": "string" }, "iteration-count": { "type": "integer", "default": 19 } } }, "socket-interceptor": { "$ref": "#/definitions/SocketInterceptor" }, "tpc-socket": { "$ref": "#/definitions/TpcSocketConfig" } } }, "AdvancedNetwork": { "type": "object", "additionalProperties": false, "properties": { "enabled": { "type": "boolean", "default": false, "description": "Indicates whether the advanced network configuration is enabled or not." }, "join": { "$ref": "#/definitions/NetworkJoin" }, "member-address-provider": { "$ref": "#/definitions/MemberAddressProvider" }, "failure-detector": { "$ref": "#/definitions/FailureDetector" }, "interfaces": { "$ref": "#/definitions/Interfaces" }, "memcache-server-socket-endpoint-config": { "$ref": "#/definitions/SocketEndpointConfig" }, "wan-server-socket-endpoint-config": { "description": "Configures the server sockets used for the WAN replication's inbound WAN connections. Multiple WAN server sockets can be configured to allow configuring separate server sockets for each inbound WAN connection.", "$ref": "#/definitions/SocketEndpointConfig" }, "client-server-socket-endpoint-config": { "description": "Configures the server socket used for the member-client communication.", "$ref": "#/definitions/SocketEndpointConfig" }, "member-server-socket-endpoint-config": { "description": "Configures the server socket used for the member-member communication.", "$ref": "#/definitions/SocketEndpointConfig" }, "wan-endpoint-config": { "type": "object", "description": "This element configures socket settings for the outgoing WAN connections.", "additionalProperties": { "$ref": "#/definitions/WanEndpointConfig" } }, "rest-server-socket-endpoint-config": { "description": "Controls access to Hazelcast HTTP REST API. The methods available through REST API are grouped to several REST endpoint groups, which can be specified in this section.", "allOf": [ { "$ref": "#/definitions/SocketEndpointConfig" }, { "properties": { "endpoint-groups": { "$ref": "#/definitions/RestEndpointGroups" } }, "propertyNames": { "enum": [ "endpoint-groups", "port", "public-address", "reuse-address", "name", "outbound-ports", "interfaces", "ssl", "socket-interceptor", "symmetric-encryption", "socket-options", "tpc-socket" ] } } ] } } }, "PartitionGroup": { "type": "object", "properties": { "enabled": { "type": "boolean", "default": false }, "group-type": { "enum": [ "HOST_AWARE", "NODE_AWARE", "CUSTOM", "PER_MEMBER", "ZONE_AWARE", "PLACEMENT_AWARE", "SPI" ], "default": "PER_MEMBER" }, "member-group": { "type": "array", "items": { "type": "array", "items": { "type": "string" } } } }, "additionalProperties": false }, "ExecutorService": { "type": "object", "additionalProperties": { "type": "object", "properties": { "statistics-enabled": { "type": "boolean", "default": true }, "pool-size": { "$ref": "#/definitions/executorServicePoolSize" }, "queue-capacity": { "type": "integer", "minimum": 0, "default": 2147483647 }, "split-brain-protection-ref": { "type": "string" } } } }, "DurableExecutorService": { "type": "object", "additionalProperties": { "pool-size": { "$ref": "#/definitions/executorServicePoolSize" }, "durability": { "type": "integer", "minimum": 0, "default": 1 }, "capacity": { "type": "integer", "minimum": 1, "default": 100 }, "split-brain-protection-ref": { "type": "string" } } }, "ScheduledExecutorService": { "type": "object", "additionalProperties": { "pool-size": { "$ref": "#/definitions/executorServicePoolSize" }, "durability": { "type": "integer", "minimum": 0, "default": 1 }, "capacity": { "type": "integer", "minimum": 1, "default": 100 }, "capacity-policy": { "enum": [ "PER_NODE", "PER_PARTITION" ] }, "split-brain-protection-ref": { "type": "string" }, "merge-policy": { "$ref": "#/definitions/MergePolicy" } } }, "executorServicePoolSize": { "type": "integer", "minimum": 1, "default": 16 }, "MergePolicyClassName": { "type": "string", "examples": [ "ExpirationTimeMergePolicy", "HyperLogLogMergePolicy", "HigherHitsMergePolicy", "PutIfAbsentMergePolicy", "DiscardMergePolicy", "LatestUpdateMergePolicy", "PassThroughMergePolicy", "LatestAccessMergePolicy" ], "default": "PutIfAbsentMergePolicy" }, "MergePolicy": { "type": "object", "additionalProperties": false, "properties": { "batch-size": { "type": "integer", "minimum": 0, "default": 100 }, "class-name": { "$ref": "#/definitions/MergePolicyClassName" } } }, "CardinalityEstimator": { "additionalProperties": { "type": "object", "additionalProperties": false, "properties": { "backup-count": { "$ref": "#/definitions/BackupCount" }, "async-backup-count": { "$ref": "#/definitions/AsyncBackupCount" }, "split-brain-protection-ref": { "type": "string", "description": " Adds the Split Brain Protection for this data-structure which you configure using the \"split-brain-protection\" element. You should set the \"split-brain-protection-ref\"'s value as the \"split-brain-protection\"'s name." }, "merge-policy": { "allOf": [ { "$ref": "#/definitions/MergePolicy" }, { "default": { "batch-site": 100, "class-name": "HyperLogLogMergePolicy" } } ] } } } }, "InMemoryFormat": { "enum": [ "BINARY", "OBJECT", "NATIVE" ], "default": "BINARY", "description": "Binary type that will be used for storing records. Possible values: BINARY (default): keys and values will be stored as binary data. OBJECT: values will be stored in their object forms. NATIVE: values will be stored in non-heap region of JVM (Hazelcast Enterprise only)" }, "Eviction": { "type": "object", "additionalProperties": false, "properties": { "eviction-policy": { "enum": [ "LRU", "LFU", "NONE", "RANDOM" ], "default": "NONE" }, "max-size-policy": { "enum": [ "PER_NODE", "PER_PARTITION", "USED_HEAP_PERCENTAGE", "USED_HEAP_SIZE", "FREE_HEAP_PERCENTAGE", "FREE_HEAP_SIZE", "ENTRY_COUNT", "USED_NATIVE_MEMORY_SIZE", "USED_NATIVE_MEMORY_PERCENTAGE", "FREE_NATIVE_MEMORY_SIZE", "FREE_NATIVE_MEMORY_PERCENTAGE" ], "default": "PER_NODE" }, "size": { "type": "integer", "minimum": 0, "default": 2147483647 }, "comparator-class-name": { "type": "string" } } }, "IndexConfig": { "type": "object", "additionalProperties": false, "properties": { "type": { "enum": [ "SORTED", "BITMAP", "HASH" ], "default": "SORTED" }, "name": { "type": "string" }, "attributes": { "type": "array", "items": { "type": "string" }, "minItems": 1 }, "bitmap-index-options": { "type": "object", "additionalProperties": false, "properties": { "unique-key": { "type": "string", "default": "__key" }, "unique-key-transformation": { "enum": [ "OBJECT", "LONG", "RAW" ], "default": "OBJECT", "description": "Defines an assortment of transformations which can be applied to unique-key values. OBJECT: Extracted unique key value is interpreted as an object value. Non-negative unique ID is assigned to every distinct object value. LONG: Extracted unique key value is interpreted as a whole integer value of byte, short, int or long type. The extracted value is upcasted to long (if necessary) and unique non-negative ID is assigned to every distinct value. RAW: Extracted unique key value is interpreted as a whole integer value of byte, short, int or long type. The extracted value is upcasted to long (if necessary) and the resulting value is used directly as an ID." } } }, "btree-index": { "type": "object", "additionalProperties": false, "properties": { "page-size": { "$ref": "#/definitions/Capacity", "description": "Page size of the index B+ Tree. Default value is 16 kB.", "default": { "value": 16, "unit": "KILOBYTES" } }, "memory-tier": { "type": "object", "description": "Memory tier.", "additionalProperties": false, "properties": { "capacity": { "$ref": "#/definitions/Capacity", "description": "Memory tier capacity, i.e., how much main memory should this tier consume at most. The default is 256 megabytes." } }, "default": { "capacity": { "default": { "value": 16, "unit": "KILOBYTES" } } } } } } }, "required": [ "attributes" ] }, "Map": { "type": "object", "additionalProperties": { "type": "object", "additionalProperties": false, "properties": { "in-memory-format": { "$ref": "#/definitions/InMemoryFormat" }, "metadata-policy": { "enum": [ "CREATE_ON_UPDATE", "OFF" ], "default": "OFF" }, "statistics-enabled": { "type": "boolean", "default": true }, "per-entry-stats-enabled": { "type": "boolean", "default": false }, "cache-deserialized-values": { "enum": [ "INDEX_ONLY", "INDEX-ONLY", "NEVER", "ALWAYS" ], "default": "INDEX_ONLY" }, "backup-count": { "$ref": "#/definitions/BackupCount" }, "async-backup-count": { "$ref": "#/definitions/AsyncBackupCount" }, "time-to-live-seconds": { "description": "The maximum number of seconds for each entry to stay in the map.", "type": "integer", "minimum": 0, "default": 0 }, "max-idle-seconds": { "type": "integer", "minimum": 0, "default": 0 }, "eviction": { "$ref": "#/definitions/Eviction" }, "merge-policy": { "$ref": "#/definitions/MergePolicy" }, "read-backup-data": { "description": "Sets if read-backup-data (reading local backup entries) is enabled for this map.", "type": "boolean", "default": false }, "hot-restart": { "type": "object", "additionalProperties": false, "properties": { "enabled": { "description": "Sets whether hot restart is enabled on related data structure.", "type": "boolean", "default": false }, "fsync": { "description": "Sets whether disk write should be followed by an fsync() system call.", "type": "boolean", "default": false } } }, "data-persistence": { "type": "object", "additionalProperties": false, "properties": { "enabled": { "description": "Sets whether persistence is enabled on related data structure.", "type": "boolean", "default": false }, "fsync": { "description": "Sets whether disk write should be followed by an fsync() system call.", "type": "boolean", "default": false } } }, "event-journal": { "type": "object", "additionalProperties": false, "properties": { "enabled": { "type": "boolean", "default": false }, "capacity": { "type": "integer", "minimum": 1, "default": 10000, "description": "The capacity is the total number of items that the event journal can hold at any moment. The actual number of items contained in the journal can be lower. NOTE: The capacity is shared equally between all partitions. This is done by assigning each partition {capacity / partitionCount} available slots in the event journal. Because of this, the effective total capacity may be somewhat lower and you must make sure that the configured capacity is at least greater than the partition count." }, "time-to-live-seconds": { "type": "integer", "minimum": 0, "default": 0, "description": "Time to live is the time the event journal retains items before removing them from the journal. The events are removed on journal read and write actions, not while the journal is idle. Time to live can be disabled by setting timeToLiveSeconds to 0. This means that the events never expire but they can be overwritten when the capacity of the journal is exceeded." } } }, "merkle-tree": { "type": "object", "additionalProperties": false, "properties": { "enabled": { "type": "boolean", "default": false }, "depth": { "type": "integer", "minimum": 2, "maximum": 27, "default": 10 } } }, "map-store": { "type": "object", "additionalProperties": false, "properties": { "enabled": { "type": "boolean", "default": true }, "initial-mode": { "enum": [ "LAZY", "EAGER" ], "default": "LAZY", "description": "LAZY: Default load mode where load is async; EAGER: load mode where load is blocked till all partitions are loaded." }, "offload": { "type": "boolean", "default": true, "description": "Set true to offload map-store interacting code parts from partition threads, otherwise interaction is executed inside partition thread" }, "write-delay-seconds": { "type": "integer", "minimum": 0, "default": 0, "description": "The number of seconds to delay before writing (storing) the dirty records." }, "write-batch-size": { "type": "integer", "minimum": 1, "default": 1, "description": "The number of operations to be included in each batch processing round." }, "write-coalescing": { "type": "boolean", "default": true, "description": " Setting writeCoalescing is meaningful if you are using write-behind MapStore. When writeCoalescing is true, only the latest store operation on a key in the writeDelaySeconds time-window will be reflected to MapStore." }, "class-name": { "type": "string", "description": "The name for the MapStore implementation class" }, "factory-class-name": { "type": "string", "description": "The name for the MapStoreFactory implementation class" }, "properties": { "type": "object", "default": {} } }, "default": { "enabled": false } }, "near-cache": { "type": "object", "additionalProperties": false, "properties": { "name": { "type": "string", "default": "default" }, "time-to-live-seconds": { "type": "integer", "minimum": 0, "default": 0, "description": "The maximum number of seconds for each entry to stay in the Near Cache (time to live). Entries that are older than timeToLiveSeconds will automatically be evicted from the Near Cache." }, "max-idle-seconds": { "type": "integer", "minimum": 0, "default": 0, "description": "The maximum number of seconds each entry can stay in the Near Cache as untouched (not-read). Entries that are not read (touched) more than maxIdleSeconds value will get removed from the Near Cache. Accepts any integer between 0 and Integer#MAX_VALUE. The value 0 means Integer#MAX_VALUE. The default is 0." }, "invalidate-on-change": { "type": "boolean", "default": true, "description": "Sets if Near Cache entries are invalidated when the entries in the backing data structure are changed. When this setting is enabled, a Hazelcast instance with a Near Cache listens for cluster-wide changes on the entries of the backing data structure and invalidates its corresponding Near Cache entries. Changes done on the local Hazelcast instance always invalidate the Near Cache immediately." }, "in-memory-format": { "$ref": "#/definitions/InMemoryFormat" }, "cache-local-entries": { "type": "boolean", "default": false, "description": "Sets if local entries are also cached in the Near Cache. This is useful when the in-memory format of the Near Cache is different from the backing data structure. This setting has no meaning on Hazelcast clients, since they have no local entries." }, "local-update-policy": { "description": "Defines how to reflect local updates to the Near Cache. Possible values:\\n * INVALIDATE: Local put and local remove immediately invalidate Near Cache.\\n * CACHE_ON_UPDATE: While local remove immediately invalidates Near Cache, local put adds new value to it.", "enum": [ "INVALIDATE", "CACHE_ON_UPDATE" ], "default": "INVALIDATE" }, "eviction": { "$ref": "#/definitions/Eviction" }, "serialize-keys": { "type": "boolean", "default": false } } }, "wan-replication-ref": { "type": "object", "additionalProperties": { "type": "object", "additionalProperties": false, "properties": { "merge-policy-class-name": { "$ref": "#/definitions/MergePolicyClassName" }, "republishing-enabled": { "type": "boolean", "default": true, "description": "Sets if incoming WAN events to this member should be republished (forwarded) to this WAN replication reference." }, "filters": { "type": "array", "items": { "type": "string" }, "description": "Array of class names implementing the CacheWanEventFilter or MapWanEventFilter for filtering outbound WAN replication events. NOTE: EE only" } } } }, "indexes": { "type": "array", "items": { "$ref": "#/definitions/IndexConfig" } }, "attributes": { "type": "object", "additionalProperties": { "type": "object", "additionalProperties": false, "properties": { "extractor-class-name": { "type": "string", "description": "Fully qualified class name of the extractor used to extract the value of the attribute." } }, "required": [ "extractor-class-name" ], "description": "Contains the configuration of a custom attribute that will be extracted from a Map's entry using a given ValueExtractor." } }, "entry-listeners": { "type": "array", "items": { "$ref": "#/definitions/EntryListener" }, "description": "Adds listeners (listener classes) for the map entries using the \"entry-listener\" sub-elements" }, "partition-lost-listeners": { "type": "array", "items": { "type": "string" } }, "split-brain-protection-ref": { "type": "string" }, "query-caches": { "type": "object", "additionalProperties": { "type": "object", "additionalProperties": false, "properties": { "map-name": { "type": "string", "description": "In client configurations it is used to identify the map to which this query cache belongs to." }, "include-value": { "type": "boolean", "default": true, "description": "Enables value caching." }, "predicate": { "type": "object", "additionalProperties": false, "properties": { "class-name": { "type": "string" }, "sql": { "type": "string" } }, "oneOf": [ { "required": [ "class-name" ] }, { "required": [ "sql" ] } ], "description": "Predicate to filter events which will be applied to the query cache." }, "entry-listeners": { "type": "array", "items": { "$ref": "#/definitions/EntryListener" } }, "in-memory-format": { "$ref": "#/definitions/InMemoryFormat" }, "populate": { "type": "boolean", "default": true, "description": "Flag to enable/disable initial population of the QueryCache." }, "coalesce": { "type": "boolean", "default": false }, "serialize-keys": { "description": "Defines if the Query Cache keys should be serialized or not. Keys are better to be serialized if they are mutable and need to be cloned via serialization. Default value is false.", "type": "boolean", "default": false }, "delay-seconds": { "type": "integer", "minimum": 0, "default": 0, "description": "Minimum time in seconds that an event waits in the member's buffer." }, "batch-size": { "type": "integer", "minimum": 1, "default": 1, "description": "The batch size which will be used to determine number of events to be sent in a batch to QueryCache." }, "buffer-size": { "type": "integer", "minimum": 1, "default": 16, "description": "Maximum number of events which can be stored in a buffer of partition." }, "eviction": { "$ref": "#/definitions/Eviction" }, "indexes": { "type": "array", "items": { "$ref": "#/definitions/IndexConfig" } } } } }, "tiered-store": { "type": "object", "additionalProperties": false, "properties": { "enabled": { "type": "boolean", "description": "True if Tiered-Store is enabled, false otherwise." }, "memory-tier": { "type": "object", "description": "Memory tier.", "additionalProperties": false, "properties": { "capacity": { "$ref": "#/definitions/Capacity", "description": "Memory tier capacity, i.e., how much main memory should this tier consume at most. The default is 256 megabytes." } } }, "disk-tier": { "type": "object", "description": "Disk tier.", "additionalProperties": false, "properties": { "enabled": { "type": "boolean", "description": "True to enable using disk as the second memory tier, false otherwise." }, "device-name": { "type": "string", "default": "default-tiered-store-device", "description": "Name of the device for a given disk tier." } }, "required": ["enabled"] } }, "required": ["enabled"] }, "partition-strategy": { "type": "string" }, "partition-attributes": { "type": "array", "description": "List of key attributes to use for partitioning the data in the maps. Providing this list automatically sets the strategy to `com.hazelcast.partition.strategy.AttributePartitioningStrategy` regardless of the class name provided in the `partition-strategy` property.", "items": { "$ref": "#/definitions/PartitionAttribute" }, "minItems": 1 } } } }, "EntryListener": { "type": "object", "additionalProperties": false, "properties": { "class-name": { "type": "string" }, "include-value": { "type": "boolean", "default": false, "description": "True if you want the entry event to contain the item values." }, "local": { "type": "boolean", "default": false, "description": "True if you want to listen to the entries on the local member." } }, "required": [ "class-name" ] }, "Set": { "type": "object", "additionalProperties": { "type": "object", "additionalProperties": false, "properties": { "backup-count": { "$ref": "#/definitions/BackupCount" }, "async-backup-count": { "$ref": "#/definitions/AsyncBackupCount" }, "max-size": { "type": "integer", "minimum": 0, "description": "Maximum size of the set (item count). Its default value is 0, meaning Integer.MAX_VALUE." }, "item-listeners": { "type": "array", "items": { "$ref": "#/definitions/ItemListener" } }, "split-brain-protection-ref": { "type": "string" }, "merge-policy": { "$ref": "#/definitions/MergePolicy" }, "statistics-enabled": { "type": "boolean", "default": true, "description": "True if statistics gathering is enabled on the set, false otherwise." } } } }, "Topic": { "type": "object", "additionalProperties": { "type": "object", "additionalProperties": false, "properties": { "global-ordering-enabled": { "type": "boolean", "default": false, "description": "When it is set to true, all cluster members that listen to a topic will receive the messages in the same order they were published by all members. This way, Hazelcast guarantees that all members will see the in the same order. Its default value is false." }, "statistics-enabled": { "type": "boolean", "default": "true", "description": "When you enable it, you can retrieve topic statistics such as total number of published and received messages. Its default value is true." }, "multi-threading-enabled": { "type": "boolean", "default": false, "description": "Enable multi-threaded message handling. When enabled any thread from events thread pool can be used for incoming message processing. Otherwise only one dedicated thread will be used to handle topic messages. Note: it can be enabled only in case when global ordering is disabled. Moreover, the local message ordering is not supported in this mode also. This means the messages produced by local publisher can be processed by several threads with no ordering guarantee." }, "message-listeners": { "type": "array", "items": { "type": "string" } } }, "not": { "properties": { "global-ordering-enabled": { "const": true }, "multi-threading-enabled": { "const": true } }, "required": [ "global-ordering-enabled", "multi-threading-enabled" ] } } }, "ReliableTopic": { "type": "object", "additionalProperties": { "type": "object", "additionalProperties": false, "properties": { "statistics-enabled": { "type": "boolean", "default": true, "description": "Enables or disables statistics for this reliable topic. Collects the creation time, total number of published and received messages for each member locally." }, "topic-overload-policy": { "enum": [ "DISCARD_OLDEST", "DISCARD_NEWEST", "BLOCK", "ERROR" ], "default": "BLOCK", "description": "A policy to deal with an overloaded topic; so topic where there is no place to store new messages. This policy can only be used in combination with the com.hazelcast.core.HazelcastInstance#getReliableTopic(String). The reliable topic uses a com.hazelcast.ringbuffer.Ringbuffer to store the messages. A ringbuffer doesn't track where readers are, so it has no concept of a slow consumers. This provides many advantages like high performance reads, but it also gives the ability to the reader to re-read the same message multiple times in case of an error. A ringbuffer has a limited, fixed capacity. A fast producer may overwrite old messages that are still being read by a slow consumer. To prevent this, we may configure a time-to-live on the ringbuffer (see com.hazelcast.config.RingbufferConfig#setTimeToLiveSeconds(int). Once the time-to-live is configured, the TopicOverloadPolicy controls how the publisher is going to deal with the situation that a ringbuffer is full and the oldest item in the ringbuffer is not old enough to get overwritten. Keep in mind that this retention period (time-to-live) can keep messages from being overwritten, even though all readers might have already completed reading. Its default value is BLOCK. Available values are as follows: - DISCARD_OLDEST: Using this policy, a message that has not expired can be overwritten. No matter the retention period set, the overwrite will just overwrite the item. This can be a problem for slow consumers because they were promised a certain time window to process messages. But it will benefit producers and fast consumers since they are able to continue. This policy sacrifices the slow producer in favor of fast producers/consumers. - DISCARD_NEWEST: Message that was to be published is discarded. - BLOCK: The caller will wait until there is space in the Ringbuffer. - ERROR: The publish call fails immediately. " }, "read-batch-size": { "type": "integer", "default": 10, "minimum": 1, "description": "Sets the read batch size. The ReliableTopic tries to read a batch of messages from the ringbuffer. It will get at least one, but if there are more available, then it will try to get more to increase throughput. The maximum read batch size can be influenced using the read batch size. Apart from influencing the number of messages to retrieve, the readBatchSize also determines how many messages will be processed by the thread running the MessageListener before it returns back to the pool to look for other MessageListeners that need to be processed. The problem with returning to the pool and looking for new work is that interacting with an executor is quite expensive due to contention on the work-queue. The more work that can be done without retuning to the pool, the smaller the overhead. If the readBatchSize is 10 and there are 50 messages available, 10 items are retrieved and processed consecutively before the thread goes back to the pool and helps out with the processing of other messages. If the readBatchSize is 10 and there are 2 items available, 2 items are retrieved and processed consecutively. If the readBatchSize is an issue because a thread will be busy too long with processing a single MessageListener and it can't help out other MessageListeners, increase the size of the threadpool so the other MessageListeners don't need to wait for a thread, but can be processed in parallel. " }, "message-listeners": { "type": "array", "items": { "type": "string" } } } } }, "Ringbuffer": { "type": "object", "additionalProperties": { "type": "object", "additionalProperties": false, "properties": { "capacity": { "type": "integer", "minimum": 1, "default": 10000, "description": "Number of items in the Ringbuffer. If no \"time-to-live-seconds\" is set, this value will always be equal to the capacity after the head completes the first loop around the ring. This is because no items are being expired." }, "time-to-live-seconds": { "type": "integer", "default": 0, "description": "Sets the time to live in seconds which is the maximum number of seconds for each item to stay in the ringbuffer before being removed. Entries that are older than time-to-live-seconds are removed from the ringbuffer on the next ringbuffer operation (read or write). Time to live can be disabled by setting time-to-live-seconds to 0. It means that items won't get removed because they expire. They may only be overwritten. When time-to-live-seconds is disabled and after the tail does a full loop in the ring, the ringbuffer size will always be equal to the capacity. The time-to-live-seconds can be any integer between 0 and Integer#MAX_VALUE. 0 means infinite. The default is 0. " }, "backup-count": { "$ref": "#/definitions/BackupCount" }, "async-backup-count": { "$ref": "#/definitions/AsyncBackupCount" }, "in-memory-format": { "enum": [ "OBJECT", "BINARY" ], "default": "BINARY", "description": "Sets the in-memory format. Setting the in-memory format controls the format of the stored item in the ringbuffer: - OBJECT: the item is stored in deserialized format (a regular object) - BINARY (default): the item is stored in serialized format (a binary blob) The object in-memory format is useful when: - the object stored in object format has a smaller footprint than in binary format - if there are readers using a filter. Since for every filter invocation, the object needs to be available in object format." }, "ringbuffer-store": { "type": "object", "additionalProperties": false, "properties": { "class-name": { "type": "string", "description": "Fully qualified class name." }, "factory-class-name": { "type": "string", "description": "Fully qualified name of the RingbufferStoreFactory implementation class." }, "properties": { "type": "object" }, "enabled": { "type": "boolean", "default": true } } }, "split-brain-protection-ref": { "type": "string", "description": "Adds the Split Brain Protection for this data-structure which you configure using the \"split-brain-protection\" element. You should set the \"split-brain-protection-ref\"'s value as the \"split-brain-protection\"'s name." }, "merge-policy": { "$ref": "#/definitions/MergePolicy" } } } }, "FlakeIdGenerator": { "type": "object", "additionalProperties": { "type": "object", "additionalProperties": false, "properties": { "prefetch-count": { "type": "integer", "default": 100, "minimum": 1, "maximum": 100000, "description": "Sets how many IDs are pre-fetched on the background when one call to FlakeIdGenerator.newId() is made. Value must be in the range 1..100,000. This setting pertains only to newId() calls made on the member that configured it." }, "prefetch-validity-millis": { "type": "integer", "default": 600000, "minimum": 0, "description": "Sets for how long the pre-fetched IDs can be used. If this time elapses, a new batch of IDs will be fetched. Time unit is milliseconds, default is 10 minutes. The IDs contain timestamp component, which ensures rough global ordering of IDs. If an ID is assigned to an object that was created much later, it will be much out of order. If you don't care about ordering, set this value to 0. This setting pertains only to newId() calls made on the member that configured it." }, "epoch-start": { "description": "Sets the offset of timestamp component. Time unit is milliseconds, default is 1.1.2018 0:00 UTC. If you set the epoch start to a future instant, negative IDs will be generated until that time occurs.", "type": "integer", "default": 1514764800000 }, "node-id-offset": { "type": "integer", "minimum": 0, "default": 0, "description": "Sets the offset that will be added to the node ID assigned to cluster member for this generator. Might be useful in A/B deployment scenarios where you have cluster A which you want to upgrade. You create cluster B and for some time both will generate IDs and you want to have them unique. In this case, configure node ID offset for generators on cluster B." }, "bits-sequence": { "type": "integer", "default": 6, "minimum": 0, "maximum": 63, "description": "Sets the bit-length of the sequence component" }, "bits-node-id": { "type": "integer", "minimum": 0, "maximum": 63, "default": 16, "description": "Sets the bit-length of node id component." }, "allowed-future-millis": { "type": "integer", "default": 15000, "minimum": 0, "description": "Sets how far to the future is the generator allowed to go to generate IDs without blocking." }, "statistics-enabled": { "type": "boolean", "default": true, "description": "When you enable it, you can retrieve the Flake ID generators statistics." } } } }, "Queue": { "type": "object", "additionalProperties": { "type": "object", "additionalProperties": false, "properties": { "statistics-enabled": { "type": "boolean", "default": true, "description": "When you enable it, you can retrieve queue statistics." }, "max-size": { "type": "integer", "minimum": 0, "description": "Maximum size of the queue. When a JVM's local queue size reaches the maximum, all put/offer operations will be blocked until the queue size of the JVM goes below this maximum. Its default value is 0, meaning Integer.MAX_VALUE" }, "backup-count": { "$ref": "#/definitions/BackupCount" }, "async-backup-count": { "$ref": "#/definitions/AsyncBackupCount" }, "empty-queue-ttl": { "type": "integer", "default": -1, "description": "Used to purge unused or empty queues. If you define a value (time in seconds) for this element, then your queue will be destroyed if it stays empty or unused for that time." }, "item-listeners": { "type": "array", "items": { "$ref": "#/definitions/ItemListener" } }, "queue-store": { "type": "object", "additionalProperties": false, "description": "Includes configuration elements and attributes for your queue store implementation. When you want to load/store the distributed queue items from/to a persistent datastore, first implement Hazelcast's QueueStore interface and then configure it using this element", "properties": { "enabled": { "type": "boolean", "default": true }, "class-name": { "description": "The fully qualified name of the QueueStore implementation you want to use", "type": "string" }, "factory-class-name": { "description": "The fully qualified name of the QueueStoreFactory which will be created by Hazelcast to instantiate QueueStores.", "type": "string" }, "properties": { "type": "object", "properties": { "binary": { "type": "boolean", "default": false, "description": "If you do not reach the queue store from an external application, you might prefer to insert the items in binary form. To do so, set this property to true and skip the deserialization step, which is a performance optimization." }, "memory-limit": { "type": "integer", "default": 1000, "description": "Number of items after which Hazelcast will store items only to datastore. For example, if the memory limit is 1000, then the 1001st item will be put only to datastore. This feature is useful when you want to avoid out-of-memory conditions. If you want to always use memory, you can set it to Integer.MAX_VALUE." }, "bulk-load": { "type": "integer", "default": 250, "description": "Size of the bulks loaded from QueueStore when the queue is initialized." } } } } }, "split-brain-protection-ref": { "type": "string" }, "merge-policy": { "$ref": "#/definitions/MergePolicy" }, "priority-comparator-class-name": { "type": "string", "description": "Fully-qualified comparator's class name to be used for the priority queue. If nothing is provided, then queue behaves as a FIFO queue." } } } }, "ItemListener": { "type": "object", "additionalProperties": false, "properties": { "include-value": { "type": "boolean", "default": true, "description": "Set to true if you want the item event to contain the item values." }, "class-name": { "type": "string" } }, "required": [ "class-name" ] }, "Multimap": { "type": "object", "additionalProperties": { "type": "object", "additionalProperties": false, "properties": { "backup-count": { "$ref": "#/definitions/BackupCount" }, "async-backup-count": { "$ref": "#/definitions/AsyncBackupCount" }, "value-collection-type": { "enum": [ "SET", "LIST" ] }, "binary": { "type": "boolean", "default": true, "description": "The in-memory format being used for representing the multimap. If it is false, the OBJECT in-memory format will be used." }, "entry-listeners": { "type": "array", "items": { "$ref": "#/definitions/EntryListener" } }, "split-brain-protection-ref": { "type": "string" }, "merge-policy": { "$ref": "#/definitions/MergePolicy" }, "statistics-enabled": { "type": "boolean", "default": true } } } }, "ReplicatedMap": { "type": "object", "additionalProperties": { "type": "object", "additionalProperties": false, "properties": { "in-memory-format": { "$ref": "#/definitions/InMemoryFormat", "default": "OBJECT" }, "async-fillup": { "type": "boolean", "default": true, "description": "Specifies whether the replicated map is available for reads before the initial replication is completed. If false, no Exception will be thrown when the replicated map is not yet ready, but call is blocked until the initial replication is completed." }, "statistics-enabled": { "type": "boolean", "default": true, "description": "When you enable it, you can retrieve replicated map entry statistics such as creation time, expiration time, number of hits, key, value, etc." }, "entry-listeners": { "type": "array", "items": { "$ref": "#/definitions/EntryListener" } }, "split-brain-protection-ref": { "type": "string" }, "merge-policy": { "$ref": "#/definitions/MergePolicy" } } } }, "Cache": { "type": "object", "additionalProperties": { "type": "object", "additionalProperties": false, "properties": { "key-type": { "$ref": "#/definitions/ClassNameObj" }, "value-type": { "$ref": "#/definitions/ClassNameObj" }, "statistics-enabled": { "type": "boolean", "default": false, "description": "When you enable it, you can retrieve cache entry statistics such as creation time, expiration time, number of hits, key, value, etc." }, "management-enabled": { "type": "boolean", "default": false, "description": "If set to true, JMX beans are enabled and collected statistics are provided. It doesn't automatically enable statistics collection." }, "read-through": { "type": "boolean", "default": false, "description": "If set to true, enables read-through behavior of the cache to an underlying configured javax.cache.integration.CacheLoader which is also known as lazy-loading." }, "write-through": { "type": "boolean", "default": false, "description": "If set to true, enables write-through behavior of the cache to an underlying configured javax.cache.integration.CacheWriter which passes any changed value to the external backend resource." }, "cache-loader-factory": { "description": "Fully qualified class name of the javax.cache.configuration.Factory implementation providing a javax.cache.integration.CacheLoader instance to the cache.", "$ref": "#/definitions/ClassNameObj" }, "cache-loader": { "type": "string", "description": "Name of the cache loader class." }, "cache-writer-factory": { "$ref": "#/definitions/ClassNameObj", "description": "Fully qualified class name of the javax.cache.configuration.Factory implementation providing a javax.cache.integration.CacheWriter instance to the cache." }, "cache-writer": { "type": "string", "description": "Name of the cache writer class." }, "expiry-policy-factory": { "anyOf": [ { "$ref": "#/definitions/ClassNameObj", "description": "Fully qualified class name of the javax.cache.configuration.Factory implementation providing a javax.cache.expiry.ExpiryPolicy instance to the cache." }, { "type": "object", "additionalProperties": false, "properties": { "timed-expiry-policy-factory": { "type": "object", "additionalProperties": false, "properties": { "expiry-policy-type": { "enum": [ "CREATED", "MODIFIED", "ACCESSED", "TOUCHED", "ETERNAL" ] }, "duration-amount": { "type": "integer", "minimum": 0 }, "time-unit": { "enum": [ "NANOSECONDS", "MICROSECONDS", "MILLISECONDS", "SECONDS", "MINUTES", "HOURS", "DAYS" ] } } } }, "required": [ "timed-expiry-policy-factory" ] } ] }, "cache-entry-listeners": { "type": "array", "items": { "type": "object", "additionalProperties": false, "properties": { "old-value-required": { "type": "boolean", "default": false, "description": "If set to true, previously assigned values for the affected keys will be sent to the javax.cache.event.CacheEntryListener implementation. Setting this attribute to true creates additional traffic." }, "synchronous": { "type": "boolean", "default": false, "description": "If set to true, the javax.cache.event.CacheEntryListener implementation will be called in a synchronous manner." }, "cache-entry-listener-factory": { "$ref": "#/definitions/ClassNameObj", "description": "Fully qualified class name of the javax.cache.configuration.Factory implementation providing a javax.cache.event.CacheEntryListener instance." }, "cache-entry-event-filter-factory": { "$ref": "#/definitions/ClassNameObj", "description": "Fully qualified class name of the javax.cache.configuration.Factory implementation providing a javax.cache.event.CacheEntryEventFilter instance." } } }, "description": "List of cache entry listeners." }, "in-memory-format": { "$ref": "#/definitions/InMemoryFormat", "default": "BINARY" }, "backup-count": { "$ref": "#/definitions/BackupCount" }, "async-backup-count": { "$ref": "#/definitions/AsyncBackupCount" }, "eviction": { "$ref": "#/definitions/Eviction" }, "wan-replication-ref": { "type": "object", "additionalProperties": false, "properties": { "name": { "type": "string", "description": "Name of the WAN replication configuration" }, "republishing-enabled": { "type": "boolean", "default": true, "description": "When enabled, an incoming event to a member is forwarded to target cluster of that member. " }, "filters": { "type": "array", "items": { "type": "string" }, "description": "Filters to intercept WAN replication events before they are placed to WAN event replication queues by providing a filtering API. Just implement Hazelcast's CacheWanEventFilter interface to create your filters." }, "merge-policy-class-name": { "enum": [ "HigherHitsMergePolicy", "PassThroughMergePolicy" ], "description": "Resolve conflicts that occurred when target cluster already has the replicated entry key." } } }, "split-brain-protection-ref": { "type": "string", "description": "Adds the split brain protection for this cache. The value should be a \"split-brain-protection\"'s name." }, "partition-lost-listeners": { "type": "array", "items": { "type": "string" }, "description": "Adds the partition lost listeners that you created by implementing Hazelcast's PartitionLostListener interface." }, "merge-policy": { "$ref": "#/definitions/MergePolicy" }, "hot-restart": { "type": "object", "additionalProperties": false, "description": "Used to enable Hazelcast's Hot Restart Persistence feature for the cache. It is available only in Hazelcast Enterprise HD. Set its \"enabled\" to true to enable the feature. By default, it is disabled.", "properties": { "enabled": { "type": "boolean", "default": false }, "fsync": { "type": "boolean", "default": false, "description": "Set as true if the writing to disk should be followed by an fsync() system call." } } }, "data-persistence": { "type": "object", "additionalProperties": false, "description": "Used to enable Hazelcast's Persistence feature for the cache. It is available only in Hazelcast Enterprise HD. Set its \"enabled\" to true to enable the feature. By default, it is disabled.", "properties": { "enabled": { "type": "boolean", "default": false }, "fsync": { "type": "boolean", "default": false, "description": "Set as true if the writing to disk should be followed by an fsync() system call." } } }, "event-journal": { "type": "object", "additionalProperties": false, "properties": { "enabled": { "type": "boolean", "default": false }, "capacity": { "type": "integer", "minimum": 0, "default": 10000, "description": "The capacity of the event journal. The capacity is the total number of items that the event journal can hold at any moment. The actual number of items contained in the journal can be lower. The capacity is shared equally between all partitions. This is done by assigning each partition capacity / partitionCount available slots in the event journal. Because of this, the effective total capacity may be somewhat lower and you must take into account that the configured capacity is at least greater than the partition count." }, "time-to-live-seconds": { "type": "integer", "minimum": 0, "default": 0, "description": "Sets the time to live in seconds. Time to live is the time the event journal retains items before removing them from the journal. The events are removed on journal read and write actions, not while the journal is idle. Time to live can be disabled by setting timeToLiveSeconds to 0. This means that the events never expire but they can be overwritten when the capacity of the journal is exceeed. Any integer between 0 and Integer.MAX_VALUE. 0 means infinite." } } }, "merkle-tree": { "type": "object", "additionalProperties": false, "properties": { "enabled": { "type": "boolean", "default": false }, "depth": { "type": "integer", "minimum": 2, "maximum": 27, "default": 10 } } }, "disable-per-entry-invalidation-events": { "type": "boolean", "default": false, "description": "Disables invalidation events for each entry; but full-flush invalidation events are still enabled. Full-flush invalidation means the invalidation of events for all entries when clear is called." } } } }, "ClassNameObj": { "type": "object", "additionalProperties": false, "properties": { "class-name": { "type": "string", "description": "Fully qualified class name." } }, "required": [ "class-name" ] }, "ClassNameWithProps": { "type": "object", "additionalProperties": false, "properties": { "class-name": { "type": "string", "description": "Fully qualified class name." }, "properties": { "type": "object" } }, "required": [ "class-name" ] }, "Metrics": { "type": "object", "allOf": [ { "properties": { "management-center": { "type": "object", "description": "Defines the Hazelcast Management Center related metrics configuration.", "additionalProperties": false, "properties": { "enabled": { "type": "boolean", "default": true, "description": "Controls whether the metrics collected are exposed to Hazelcast Management Center. Please note that the metrics are polled by the Hazelcast Management Center, hence the members need to buffer the collected metrics between two polls. The aim for this switch is to reduce memory consumption of the metrics system if the Hazelcast Management Center is not used." }, "retention-seconds": { "type": "integer", "minimum": 1, "default": 5, "description": "Sets the number of seconds the metrics will be retained on the instance. More retention means more heap memory, but allows for longer client hiccups without losing a value (for example to restart the Management Center)." } } } }, "propertyNames": { "enum": [ "enabled", "management-center", "jmx", "collection-frequency-seconds" ] } }, { "$ref": "#/definitions/BaseMetrics" } ] }, "ClientMetrics": { "allOf": [ { "$ref": "#/definitions/BaseMetrics" }, { "propertyNames": { "enum": [ "enabled", "jmx", "collection-frequency-seconds" ] } } ] }, "BaseMetrics": { "type": "object", "properties": { "enabled": { "type": "boolean", "default": true, "description": "The master-switch for the metrics collection. If this is set to false no metrics collection is done, regardless of the other settings." }, "jmx": { "type": "object", "description": "Defines the JMX related metrics configuration.", "additionalProperties": false, "properties": { "enabled": { "type": "boolean", "default": true, "description": "Controls whether the metrics collected are exposed to through JMX. It is enabled by default. In order to expose the metrics, the metrics system need to be enabled via the enabled master-switch attribute." } } }, "collection-frequency-seconds": { "type": "integer", "minimum": 1, "default": 5, "description": "Sets the metrics collection frequency in seconds." } } }, "LiteMember": { "type": "object", "additionalProperties": false, "properties": { "enabled": { "type": "boolean" } }, "required": [ "enabled" ], "description": "When you want to use a Hazelcast member as a lite member, set this element's \"enabled\" attribute to true in that member's YAML configuration. Lite members do not store data, do not have partitions and are used mainly to execute tasks and register listeners." }, "CPSubsystem": { "type": "object", "additionalProperties": false, "properties": { "cp-member-count": { "default": 0, "anyOf": [ { "const": 0 }, { "type": "integer", "minimum": 3 } ], "description": "Number of CP Members to initialize the CP Subsystem. The CP subsystem is enabled when a positive value is set. After the CP subsystem is initialized successfully, more CP members can be added at run-time and number of active CP members can go beyond the configured CP member count. Number of CP members can be smaller than total size of the Hazelcast cluster. For instance, you can run 5 CP members in a 20-member Hazelcast cluster. If set, must be greater than or equal to \"group-size\"." }, "group-size": { "anyOf": [ { "const": 0 }, { "type": "integer", "minimum": 3, "maximum": 7, "not": { "multipleOf": 2 } } ], "description": "Number of CP members to run CP groups. If set, it must be an odd number between 3 and 7. Otherwise, \"cp-member-count\" is respected. If set, must be smaller than or equal to \"cp-member-count\"." }, "session-time-to-live-seconds": { "type": "integer", "minimum": 1, "default": 300, "description": "Duration for a CP session to be kept alive after the last received heartbeat. The session will be closed if there is no new heartbeat this duration. Session TTL must be decided wisely. If a very low value is set, CP session of a Hazelcast instance can be closed prematurely if the instance temporarily loses connectivity to the CP subsystem because of a network partition or a GC pause. In such an occasion, all CP resources of this Hazelcast instance, such as FencedLock or ISemaphore, are released. On the other hand, if a very large value is set, CP resources can remain assigned to an actually crashed Hazelcast instance for too long and liveliness problems can occur. The CP subsystem offers an API, CPSessionManagementService, to deal with liveliness issues related to CP sessions. In order to prevent premature session expires, session TTL configuration can be set a relatively large value and CPSessionManagementService#forceCloseSession() can be manually called to close CP session of a crashed Hazelcast instance. Must be greater than \"session-heartbeat-interval-seconds\", and smaller than or equal to \"missing-cp-member-auto-removal-seconds\"." }, "session-heartbeat-interval-seconds": { "type": "integer", "minimum": 1, "default": 5, "description": "Interval for the periodically-committed CP session heartbeats. A CP session is started on a CP group with the first session-based request of a Hazelcast instance. After that moment, heartbeats are periodically committed to the CP group. Must be smaller than \"session-time-to-live-seconds\"." }, "missing-cp-member-auto-removal-seconds": { "type": "integer", "minimum": 0, "default": 14400, "description": "Duration to wait before automatically removing a missing CP member from the CP subsystem. When a CP member leaves the cluster, it is not automatically removed from the CP subsystem, since it could be still alive and left the cluster because of a network partition. On the other hand, if a missing CP member is actually crashed, it creates a danger for its CP groups, because it will be still part of majority calculations. This situation could lead to losing majority of CP groups if multiple CP members leave the cluster over time. With the default configuration, missing CP members will be automatically removed from the CP subsystem after 4 hours. This feature is very useful in terms of fault tolerance when CP member count is also configured to be larger than group size. In this case, a missing CP member will be safely replaced in its CP groups with other available CP members in the CP subsystem. This configuration also implies that no network partition is expected to be longer than the configured duration. Must be greater than or equal to \"session-time-to-live-seconds\". If a missing CP member comes back alive after it is automatically removed from the CP subsystem with this feature, that CP member must be terminated manually. The default is 4 hours." }, "fail-on-indeterminate-operation-state": { "type": "boolean", "default": false, "description": "Offers a choice between at-least-once and at-most-once execution of the operations on top of the Raft consensus algorithm. It is disabled by default and offers at-least-once execution guarantee. If enabled, it switches to at-most-once execution guarantee. When you invoke an API method on a CP data structure proxy, it replicates an internal operation to the corresponding CP group. After this operation is committed to majority of this CP group by the Raft leader node, it sends a response for the public API call. If a failure causes loss of the response, then the calling side cannot determine if the operation is committed on the CP group or not. In this case, if this configuration is disabled, the operation is replicated again to the CP group, and hence could be committed multiple times. If it is enabled, the public API call fails with com.hazelcast.core.IndeterminateOperationStateException" }, "persistence-enabled": { "type": "boolean", "default": false, "description": " Flag to denote whether or not CP Subsystem Persistence is enabled. If enabled, CP members persist their local CP data to stable storage and can recover from crashes." }, "base-dir": { "type": "string", "default": "cp-data", "description": "Base directory to store all CP data when persistence-enabled is true. This directory can be shared between multiple CP members. Each CP member creates a unique directory for itself under the base directory. This is especially useful for cloud environments where CP members generally use a shared filesystem." }, "data-load-timeout-seconds": { "type": "integer", "minimum": 1, "default": 120, "description": "Timeout duration for CP members to restore their data from disk. CP member fails its startup if it cannot complete its CP data restore rocess in the configured duration." }, "cp-member-priority": { "type": "integer", "default": 0, "description": "The CP member priority. The CP groups' leadership will be eventually transferred to members with higher priorities within the CP group." }, "raft-algorithm": { "type": "object", "additionalProperties": false, "properties": { "leader-election-timeout-in-millis": { "type": "integer", "default": 2000, "minimum": 1, "description": "Leader election timeout in milliseconds. If a candidate cannot win majority of the votes in time, a new election round is initiated." }, "leader-heartbeat-period-in-millis": { "type": "integer", "default": 5000, "minimum": 1, "description": "Period in milliseconds for a leader to send heartbeat messages to its followers." }, "max-missed-leader-heartbeat-count": { "type": "integer", "default": 5, "minimum": 1, "description": "Maximum number of missed leader heartbeats to trigger a new leader election." }, "append-request-max-entry-count": { "type": "integer", "default": 100, "minimum": 1, "description": "Maximum number of entries that can be sent in a single batch of append entries request." }, "commit-index-advance-count-to-snapshot": { "type": "integer", "default": 10000, "minimum": 1, "description": "Number of new commits to initiate a new snapshot after the last snapshot." }, "uncommitted-entry-count-to-reject-new-appends": { "type": "integer", "default": 100, "minimum": 1, "description": "Maximum number of uncommitted entries in the leader's Raft log before temporarily rejecting new requests of callers." }, "append-request-backoff-timeout-in-millis": { "type": "integer", "minimum": 1, "default": 100, "description": "Timeout in milliseconds for append request backoff. After the leader sends an append request to a follower, it will not send a subsequent append request until the follower responds to the former request or this timeout occurs." } } }, "semaphores": { "type": "object", "additionalProperties": { "type": "object", "additionalProperties": false, "properties": { "jdk-compatible": { "type": "boolean", "default": false, "description": " Enables / disables JDK compatibility of the CP ISemaphore. When it is JDK compatible, just as in the Semaphore#release() method, a permit can be released without acquiring it first, because acquired permits are not bound to threads. However, there is no auto-cleanup of acquired permits upon Hazelcast server / client failures. If a permit holder fails, its permits must be released manually. When JDK compatibility is disabled, a HazelcastInstance must acquire permits before releasing them and it cannot release a permit that it has mot acquired. It means, you can acquire a permit from one thread and release it from another thread using the same HazelcastInstance, but not different HazelcastInstances. In this mode, acquired permits are automatically released upon failure of the holder HazelcastInstance. So there is a minor behavioral difference to the Semaphore#release() method." }, "initial-permits": { "type": "integer", "minimum": 0, "default": 0, "description": "Number of permits to initialize the Semaphore. If a positive value is set, the Semaphore is initialized with the given number of permits." } } }, "description": "Configurations for CP Semaphore instances. The CP Semaphores can be configured with mappings under keys as their names." }, "locks": { "type": "object", "description": "Configurations for FencedLock instances. The FencedLocks can be configured with mappings under keys as their names.", "additionalProperties": { "type": "object", "additionalProperties": false, "properties": { "lock-acquire-limit": { "type": "integer", "default": 0, "minimum": 0, "description": " Maximum number of reentrant lock acquires. Once a caller acquires the lock this many times, it will not be able to acquire the lock again, until it makes at least one unlock() call. By default, no upper bound is set for the number of reentrant lock acquires, which means that once a caller acquires a FencedLock, all of its further lock() calls will succeed. However, for instance, if you set lock-acquire-limit to 2, once a caller acquires the lock, it will be able to acquire it once more, but its third lock() call will not succeed. If lock-acquire-limit is set to 1, then the lock becomes non-reentrant." } } } } } }, "BackupCount": { "description": "Number of synchronous backups. For example, if 1 is set as the backup count, then all entries of the map will be copied to another JVM for fail-safety. 0 means no sync backup. The sum of backup-count and async-backup-count can't be larger than than 6.", "type": "integer", "minimum": 0, "default": 1, "maximum": 6 }, "AsyncBackupCount": { "description": "The number of asynchronous backups. 0 means no backups. The sum of backup-count and async-backup-count can't be larger than than 6.", "type": "integer", "minimum": 0, "default": 0, "maximum": 6 }, "List": { "type": "object", "description": "Name-value pairs of list configurations", "additionalProperties": { "type": "object", "additionalProperties": false, "properties": { "statistics-enabled": { "type": "boolean", "default": true, "description": "When you enable it, you can retrieve list statistics." }, "max-size": { "type": "integer", "default": 0, "description": "Maximum size of the list (item count). 0 means Integer.MAX_VALUE." }, "backup-count": { "$ref": "#/definitions/BackupCount" }, "async-backup-count": { "$ref": "#/definitions/AsyncBackupCount" }, "item-listeners": { "type": "array", "items": { "$ref": "#/definitions/ItemListener" } }, "split-brain-protection-ref": { "type": "string", "description": "Adds the Split Brain Protection for this data-structure. You should set this value as a \"split-brain-protection\"'s name." }, "merge-policy": { "$ref": "#/definitions/MergePolicy" } } } }, "LdapSearchScope": { "enum": [ "object", "one-level", "subtree" ], "default": "subtree" }, "Security": { "type": "object", "additionalProperties": false, "properties": { "enabled": { "type": "boolean", "default": false, "description": "Set to true to enable Hazelcast's security features." }, "realms": { "type": "array", "description": "Defines set of named security realms. Security realms are named security configurations which can be referenced from Hazelcast security configuration. Currently, the realms support configuring \"authentication\", and/or \"identity\". Only one type of authentication configuration and one type of identity configuration is allowed per the realm.", "items": { "type": "object", "additionalProperties": false, "properties": { "name": { "type": "string" }, "authentication": { "type": "object", "propertyNames": { "enum": [ "jaas", "tls", "ldap", "kerberos", "simple" ] }, "maxProperties": 1, "minProperties": 1, "properties": { "jaas": { "type": "array", "description": "Defines JAAS authentication - i.e. list of login-module descriptions and optional \"properties\"", "items": { "type": "object", "additionalProperties": false, "properties": { "class-name": { "type": "string" }, "usage": { "enum": [ "REQUIRED", "REQUISITE", "SUFFICIENT", "OPTIONAL" ], "default": "REQUIRED" }, "properties": { "type": "object" } }, "required": [ "class-name" ] } }, "tls": { "type": "object", "additionalProperties": false, "description": "TLS defines X.509 based authentication (for cases when SSL mutual authentication is configured in Hazelcast network configuration)", "properties": { "roleAttribute": { "type": "string" } } }, "ldap": { "type": "object", "additionalProperties": false, "properties": { "url": { "type": "string" }, "socket-factory-class-name": { "type": "string" }, "parse-dn": { "type": "boolean" }, "role-context": { "type": "string" }, "role-filter": { "type": "string" }, "role-mapping-attribute": { "type": "string" }, "role-mapping-mode": { "enum": [ "attribute", "reverse", "direct" ], "default": "reverse" }, "role-name-attribute": { "type": "string" }, "role-recursion-max-depth": { "type": "integer", "minimum": 0 }, "role-search-scope": { "$ref": "#/definitions/LdapSearchScope" }, "user-name-attribute": { "type": "string" }, "system-user-dn": { "type": "string" }, "system-user-password": { "type": "string" }, "password-attribute": { "type": "string" }, "user-context": { "type": "string" }, "user-filter": { "type": "string" }, "user-search-scope": { "$ref": "#/definitions/LdapSearchScope" }, "system-authentication": { "type": "string" }, "security-realm": { "type": "string" } } }, "simple": { "type": "object", "additionalProperties": true, "properties": { "role-separator": { "type": "string" }, "users": { "type": "array", "items": { "additionalProperties": false, "properties": { "username": { "type": "string" }, "password": { "type": "string" }, "roles": { "type": "array", "items": { "type": "string" } } }, "required": [ "username", "password" ] } } } } } }, "identity": { "type": "object", "propertyNames": { "enum": [ "username-password", "kerberos", "token", "credentials-factory" ] }, "minProperties": 1, "maxProperties": 1, "properties": { "username-password": { "$ref": "#/definitions/UsernamePasswordIdentity" }, "token": { "$ref": "#/definitions/TokenIdentity" }, "credentials-factory": { "$ref": "#/definitions/CredentialsFactoryIdentity" } } } } } }, "member-authentication": { "type": "object", "additionalProperties": false, "description": "Maps member authentication to a realm name.", "properties": { "realm": { "type": "string" } }, "required": [ "realm" ] }, "client-authentication": { "type": "object", "additionalProperties": false, "description": "Maps client authentication to a realm name.", "properties": { "realm": { "type": "string" } }, "required": [ "realm" ] }, "client-permission-policy": { "description": "Specifies the name and properties of your class that you developed by implementing Hazelcast's IPermissionPolicy interface, which is the default permission policy (com.hazelcast.security.IPermissionPolicy). This policy defines the client authorization specifications.", "$ref": "#/definitions/ClassNameWithProps" }, "security-interceptors": { "description": "Specifies the security interceptor class that you developed by implementing Hazelcast's SecurityInterceptor interface to intercept every remote operation executed by a client.", "type": "array", "items": { "type": "string" } }, "client-block-unmapped-actions": { "type": "boolean", "default": true, "description": "Specifies whether to block (true) or allow (false) actions, submitted as tasks in an Executor from the clients and have no permission mappings." }, "client-permissions": { "description": "Lists the client permissions that can be accessed by the client permission policy. For each permission, you need to provide the end points and actions to be permitted. Also, the name and principal for each permission should be given using the \"name\" and \"principal\" attributes. Please see http://docs.hazelcast.org/docs/latest/manual/html-single/index.html#permissions for all permissions and actions.", "type": "object", "propertyNames": { "enum": [ "on-join-operation", "all", "config", "transaction", "map", "queue", "topic", "multimap", "list", "set", "flake-id-generator", "lock", "atomic-long", "countdown-latch", "semaphore", "executor-service", "durable-executor-service", "cardinality-estimator", "scheduled-executor", "cache", "user-code-deployment", "pn-counter", "atomic-reference", "ring-buffer", "reliable-topic", "replicatedmap", "management", "job", "connector", "sql" ] }, "properties": { "on-join-operation": { "enum": [ "RECEIVE", "SEND", "NONE" ] }, "all": { "$ref": "#/definitions/SecurityPermission" }, "config": { "$ref": "#/definitions/SecurityPermission" }, "transaction": { "$ref": "#/definitions/SecurityPermission" } }, "additionalProperties": { "type": "array", "items": { "$ref": "#/definitions/SecurityPermission" } } } } }, "SecurityPermission": { "type": "object", "properties": { "name": { "type": "string" }, "principal": { "type": "string" }, "endpoints": { "type": "array", "items": { "type": "string" } }, "actions": { "anyOf": [ { "type": "array", "items": { "$ref": "#/definitions/SecurityPermissionAction" } }, { "type": "object", "patternProperties": { ".*": { "$ref": "#/definitions/SecurityPermissionAction" } } } ] } } }, "SecurityPermissionAction": { "enum": [ "all", "create", "destroy", "modify", "read", "remove", "lock", "listen", "release", "acquire", "put", "add", "index", "intercept", "publish", "aggregate", "projection", "deploy", "submit", "cancel", "restart", "export-snapshot", "add-resources", "write", "instance", "member", "migration", "create-view", "drop-view", "create-type", "drop-type", "view-dataconnection", "create-dataconnection", "drop-dataconnection" ] }, "Capacity": { "type": "object", "properties": { "unit": { "enum": [ "BYTES", "KILOBYTES", "MEGABYTES", "GIGABYTES" ], "default": "MEGABYTES", "description": "Unit can be bytes, kilobytes, megabytes and gigabytes. Default unit is MEGABYTES." }, "value": { "type": "number", "default": 128, "minimum": 1, "description": "Default value is 128." } } }, "NativeMemory": { "description": "This feature is available only in Hazelcast Enterprise HD.", "properties": { "enabled": { "type": "boolean", "default": false, "description": "Set as true to enable the High-Density Memory Store usage." }, "allocator-type": { "enum": [ "STANDARD", "POOLED" ], "default": "POOLED", "description": "Type of the memory allocator. The default value is POOLED. Available values are as follows: \\n- STANDARD: Allocates/frees the memory using default OS memory manager, \\n- POOLED: Manages memory blocks in thread local pools" }, "size": { "$ref": "#/definitions/Capacity", "description": "Deprecated, use 'capacity' instead." }, "capacity": { "$ref": "#/definitions/Capacity" }, "min-block-size": { "type": "integer", "default": 16, "minimum": 1, "enum": [ 1, 2, 4, 6, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768, 65536 ], "description": "Minimum size of the blocks in bytes to split and fragment a page block to assign to an allocation request.\\n It is used only by the POOLED memory allocator. The value has to be power of two. Default value is 16." }, "page-size": { "type": "integer", "default": 4194304, "minimum": 1, "description": "Size of the page in bytes to allocate memory as a block. \\n It is used only by the POOLED memory allocator. Its default value is 1 << 22 (about 4 MB)" }, "metadata-space-percentage": { "type": "number", "default": 12.5, "minimum": 1, "description": "Percentage of the allocated native memory that is used for the metadata such as indexes, offsets, etc. \\n It is used only by the POOLED memory allocator. Its default value is 12.5." }, "persistent-memory-directory": { "type": "string", "description": "Specifies the directory where the non-volatile memory (e.g. Intel Optane) is mounted. \\n If this element is not defined, the RAM is used as a native memory. \\n This directory will be created automatically if it does not exist.\\n To avoid collisions, every member of the cluster will create its own subfolder to work with the non-volatile memory." } } }, "CrdtReplication": { "description": "Configures the replication mechanism for all CRDT implementations.\\n The CRDT states are replicated in rounds (the period is configurable) and \\n in each round the state is replicated up to the configured number of members", "type": "object", "additionalProperties": false, "properties": { "max-concurrent-replication-targets": { "description": "The maximum number of target members that we replicate the CRDT states to in one period. \\n A higher count will lead to states being disseminated more rapidly at the expense of burst-like behaviour - \\n one update to a CRDT will lead to a sudden burst in the number of replication messages in a short time interval.", "type": "integer", "minimum": 1, "default": 1 }, "replication-period-millis": { "description": "The period between two replications of CRDT states in milliseconds. \\n A lower value will increase the speed at which changes are disseminated to other cluster members at the expense of burst-like behaviour - \\n less updates will be batched together in one replication message and \\n one update to a CRDT may cause a sudden burst of replication messages in a short time interval. \\n The value must be a positive non-null integer.", "type": "integer", "minimum": 1, "default": 1000 } } }, "PNCounter": { "type": "object", "additionalProperties": { "type": "object", "additionalProperties": false, "properties": { "replica-count": { "description": "Number of replicas on which the CRDT state will be kept.", "type": "integer", "minimum": 1, "maximum": 2147483647, "default": 2147483647 }, "split-brain-protection-ref": { "description": "Adds the Split Brain Protection for this data-structure which you configure using the \"split-brain-protection\" element.", "type": "string" }, "statistics-enabled": { "description": "When you enable it, you can retrieve the PN counter statistics.", "type": "boolean", "default": true } } } }, "Listeners": { "type": "array", "items": { "type": "string" }, "description": "Configuration used to register the listeners that you created by implementing Hazelcast's MembershipListener, DistributedObjectListener, MigrationListener and PartitionLostListener interfaces." }, "MemberAttributes": { "type": "object", "description": "You can define member attributes for your Hazelcast members to tag your members according to your business logic requirements. Configuration element's name is \"member-attributes\". You can list each member attribute by their name. For each attribute, you need to provide its type and value.", "additionalProperties": { "type": "object", "properties": { "type": { "type": "string" }, "value": true }, "required": [ "value" ] } }, "Serialization": { "type": "object", "additionalProperties": false, "properties": { "portable-version": { "type": "integer", "description": "Version of the portable serialization. Portable version is used to differentiate two of the same classes that have changes such as a new field or a new field type." }, "use-native-byte-order": { "type": "boolean", "description": "Set as true if you want to use the native byte order of the underlying platform.", "default": false }, "byte-order": { "enum": [ "BIG_ENDIAN", "LITTLE_ENDIAN" ], "description": "Specifies the byte order that the serialization will use.", "default": "BIG_ENDIAN" }, "enable-compression": { "type": "boolean", "default": false, "description": "Set as true to enable compression when default Java serialization is used. Its default value is false." }, "enable-shared-object": { "type": "boolean", "default": false, "description": "Set as true to enable shared object when default Java serialization is used." }, "allow-unsafe": { "type": "boolean", "default": false, "description": "Set as true to allow the usage of unsafe." }, "data-serializable-factories": { "description": "Lists your class implementations of Hazelcast's DataSerializableFactory. Each factory has the required", "type": "array", "items": { "$ref": "#/definitions/ClassWithFactoryId" } }, "portable-factories": { "description": "Lists your class implementations of Hazelcast's PortableFactory. Each factory has the required \"factory-id\" attribute that you should give as the ID of your factory.", "type": "array", "items": { "$ref": "#/definitions/ClassWithFactoryId" } }, "global-serializer": { "description": "Global serializer should be defined with \"global-serializer\" element. It has an optional boolean \"override-java-serialization\" attribute. If you set it as true, the Java serialization step will be handled by the global serializer, not by the Java Serializable or Externalizable", "type": "object", "additionalProperties": false, "properties": { "class-name": { "type": "string" }, "override-java-serialization": { "type": "boolean", "default": false, "description": "If you set it as true, the Java serialization step will be handled by the global serializer, not by the Java Serializable or Externalizable" } }, "required": [ "class-name" ] }, "serializers": { "description": "Lists the serializers (classes) that you implement using Hazelcast's StreamSerializer, ByteArraySerializer etc.", "type": "array", "items": { "type": "object", "additionalProperties": false, "properties": { "type-class": { "type": "string", "description": "The type of the class that will be serialized via this implementation." }, "class-name": { "type": "string", "description": "The class name of the serializer implementation." } }, "required": [ "type-class", "class-name" ] } }, "check-class-def-errors": { "type": "boolean", "default": true, "description": "If set to true, serialization system will check the class definitions error at the start of serialization process and throw a Serialization Exception with the error definition.s" }, "java-serialization-filter": { "type": "object", "additionalProperties": false, "description": "Allows to configure blacklisting and whitelisting for deserialized classes when Java serialization is used.", "properties": { "defaults-disabled": { "type": "boolean", "default": false }, "whitelist": { "$ref": "#/definitions/ClassFilter" }, "blacklist": { "$ref": "#/definitions/ClassFilter" } } }, "allow-override-default-serializers": { "type": "boolean", "default": false }, "compact-serialization": { "type": "object", "additionalProperties": false, "description": "Contains configuration elements and attributes for the compact serialization.", "properties": { "serializers": { "type": "array", "description": "Contains the Compact serializers to be registered.", "items": { "type": "object", "additionalProperties": false, "properties": { "serializer": { "type": "string", "description": "Fully qualified class name of the Compact serializer." } } } }, "classes": { "type": "array", "description": "Contains the classes to be serialized with Compact serialization, which will override any other serialization mechanisms.", "items": { "type": "object", "additionalProperties": false, "properties": { "class": { "type": "string", "description": "Fully qualified name of the class." } } } } } } } }, "ClassWithFactoryId": { "type": "object", "additionalProperties": false, "properties": { "factory-id": { "type": "integer" }, "class-name": { "type": "string" } }, "required": [ "factory-id", "class-name" ] }, "ClassFilter": { "type": "object", "additionalProperties": false, "properties": { "class": { "type": "array", "items": { "type": "string" } }, "package": { "type": "array", "items": { "type": "string" } }, "prefix": { "type": "array", "items": { "type": "string" } } } }, "SplitBrainProtection": { "type": "object", "additionalProperties": { "type": "object", "additionalProperties": false, "properties": { "enabled": { "type": "boolean", "default": false, "description": "Specifies whether this split brain protection is enabled." }, "minimum-cluster-size": { "type": "integer", "minimum": 2, "description": "The minimum number of members required in a cluster for the cluster to remain in an operational state. If the number of members is below the defined minimum at any time, the operations are rejected and the rejected operations return a SplitBrainProtectionException to their callers." }, "protect-on": { "enum": [ "READ", "WRITE", "READ_WRITE" ], "default": "READ_WRITE", "description": "Specifies for which operations the split brain protection will be applied. Available values are READ, WRITE and READ_WRITE." }, "function-class-name": { "type": "string", "description": "Name of the class that you develop by implementing Hazelcast's SplitBrainProtectionFunction interface to conclude the absence/presence of your split brain protection. This function is triggered when any change happens to the member list." }, "listeners": { "type": "array", "description": "Provides the list of split brain protection listeners that you can register to be notified about split brain protection results. Split brain protection listeners are local to the member that they are registered, so they receive only events occurred on that local member.", "items": { "type": "string" } }, "member-count-split-brain-protection": { "enabled": { "type": "boolean", "default": false }, "protect-on": { "enum": [ "READ", "WRITE", "READ_WRITE" ] }, "minimum-cluster-size": { "type": "integer" }, "member-count-split-brain-protection": { "type": "object" } }, "recently-active-split-brain-protection": { "type": "object", "additionalProperties": false, "properties": { "heartbeat-tolerance-millis": { "type": "integer", "description": "Overrides the hazelcast.max.no.heartbeat.seconds system property." } } }, "probabilistic-split-brain-protection": { "type": "object", "additionalProperties": false, "properties": { "acceptable-heartbeat-pause-millis": { "type": "integer", "description": "Default duration in milliseconds corresponding to number of potentially lost/delayed heartbeats that will be accepted before considering it to be an anomaly. Overrides the hazelcast.max.no.heartbeat.seconds system property." }, "suspicion-threshold": { "type": "number", "description": "Threshold for suspicion (��) level. A low threshold is prone to generate many wrong suspicions but ensures a quick detection in the event of a real crash. Conversely, a high threshold generates fewer mistakes but needs more time to detect actual crashes. Overrides the hazelcast.heartbeat.phiaccrual.failuredetector.threshold system property." }, "max-sample-size": { "type": "integer", "description": "Number of samples to use for calculations. Overrides the hazelcast.heartbeat.phiaccrual.failuredetector.sample.size system property." }, "min-std-deviation-millis": { "type": "integer", "description": "Minimum standard deviation (in milliseconds) to use for the normal distribution used when calculating phi. Overrides the hazelcast.heartbeat.phiaccrual.failuredetector.min.std.dev.millis system propery." }, "heartbeat-interval-millis": { "type": "integer", "description": "Value of heartbeat interval in milliseconds. Overrides the hazelcast.heartbeat.interval.seconds system property." } } } } } }, "HotRestartPersistence": { "type": "object", "additionalProperties": false, "properties": { "enabled": { "type": "boolean", "default": false }, "auto-remove-stale-data": { "type": "boolean", "default": true, "description": "Sets whether or not automatic removal of stale Hot Restart data is enabled. When a member terminates or crashes when cluster state is ACTIVE, remaining members redistributes data among themselves and data persisted on terminated member's storage becomes stale. That terminated member cannot rejoin the cluster without removing Hot Restart data. When auto-removal of stale Hot Restart data is enabled, while restarting that member, Hot Restart data is automatically removed and it joins the cluster as a completely new member. Otherwise, Hot Restart data should be removed manually." }, "base-dir": { "type": "string", "description": "Specifies the directory where the Hot Restart data will be stored. This directory will be created automatically if it does not exist.", "default": "hot-restart" }, "backup-dir": { "type": "string", "description": "Specifies the directory where the Hot backup data will be stored. If this element is not defined, hot backup will be disabled. If a directory is defined which does not exist, it will be created on first backup. To avoid clashing data on multiple backups, each backup has a unique sequence ID which determines the name of the directory which will contain all hot restart data. This unique directory is created as a subdirectory of the configured `backup-dir`." }, "parallelism": { "type": "integer", "minimum": 1, "default": 1, "description": "Level of parallelism in Hot Restart Persistence. There will be this many IO threads, each writing in parallel to its own files. During the Hot Restart procedure, this many IO threads will be reading the files and this many Rebuilder threads will be rebuilding the Hot Restart metadata." }, "validation-timeout-seconds": { "type": "integer", "minimum": 1, "default": 120, "description": " Validation timeout for the Hot Restart process when validating the cluster members expected to join and the partition table on the whole cluster." }, "data-load-timeout-seconds": { "type": "integer", "minimum": 1, "default": 900, "description": "Data load timeout for the Hot Restart process. All members in the cluster should finish restoring their local data before this timeout period." }, "cluster-data-recovery-policy": { "enum": [ "FULL_RECOVERY_ONLY", "PARTIAL_RECOVERY_MOST_RECENT", "PARTIAL_RECOVERY_MOST_COMPLETE" ], "default": "FULL_RECOVERY_ONLY", "description": " Specifies the data recovery policy that will be respected during Hot Restart cluster start. Valid values are:\\n FULL_RECOVERY_ONLY: Starts the cluster only when all expected members are present and correct. Otherwise, it fails. This is the default value.\\n PARTIAL_RECOVERY_MOST_RECENT: Starts the cluster with the members which have most up-to-date partition table and successfully restored their data. All other members will leave the cluster and force start themselves. If no member restores its data successfully, cluster start fails.\\n PARTIAL_RECOVERY_MOST_COMPLETE: Starts the cluster with the largest group of members which have the same partition table version and successfully restored their data. All other members will leave the cluster and force start themselves. If no member restores its data successfully, cluster start fails." }, "encryption-at-rest": { "type": "object", "description": "Specifies the (optional) encryption settings for Hot Restart persistence. It has the required attribute \"enabled\" to specify whether encryption is enabled. In addition to that, it specifies the symmetric cipher to use (such as AES/CBC/PKCS5Padding), the encryption salt, the key size for generating encryption keys and, in the \"secure-store\" sub-element, the configuration of the Secure Store that it will be used to retrieve the encryption keys.\\n \"keystore\": Provides integration with Java KeyStore. Specifies the path to the KeyStore file, the KeyStore type (such as PKCS12 or JCEKS), the KeyStore password, an (optional) alias for the current encryption key entry, and (optionally) a polling interval for checking for changes in the KeyStore.\\n \"vault\": Provides integration with HashiCorp Vault. Specifies the address of the Vault server, the (optional) secrets engine path, the secret path where the encryption key is stored, the access token, the (optional) namespace, the (optional) <ssl> configuration for HTTPS support, and an (optional) polling interval for checking for changes in Vault.", "properties": { "enabled": { "type": "boolean", "default": false }, "algorithm": { "type": "string", "description": "Symmetric encryption algorithm", "default": "AES/CBC/PKCS5Padding" }, "salt": { "type": "string", "default": "thesalt" }, "key-size": { "type": "integer" }, "secure-store": { "type": "object", "oneOf": [ { "additionalProperties": false, "properties": { "keystore": { "description": "Provides integration with Java KeyStore. Specifies the path to the KeyStore file, the KeyStore type (such as PKCS12 or JCEKS), the KeyStore password, an (optional) alias for the current encryption key entry, and (optionally) a polling interval for checking for changes in the KeyStore.", "type": "object", "additionalProperties": false, "properties": { "path": { "type": "string" }, "type": { "type": "string", "default": "PKCS12", "description": "For information about standard keystore types see https://docs.oracle.com/javase/8/docs/technotes/guides/security/StandardNames.html#KeyStore" }, "password": { "type": "string", "description": "The keystore password" }, "current-key-alias": { "type": "string" }, "polling-interval": { "type": "integer", "minimum": 0, "default": 0, "description": "Interval (in seconds) for polling for changes in the KeyStore. 0 (default) means no polling" } }, "required": [ "path", "password" ] } } }, { "additionalProperties": false, "properties": { "vault": { "description": "Provides integration with HashiCorp Vault. Specifies the address of the Vault server, the (optional) secrets engine path, the secret path where the encryption key is stored, the access token, the (optional) namespace, the (optional) \"ssl\" configuration for HTTPS support, and an (optional) polling interval for checking for changes in Vault.", "type": "object", "additionalProperties": false, "properties": { "address": { "type": "string" }, "secret-path": { "type": "string" }, "token": { "type": "string" }, "polling-interval": { "type": "integer", "default": 0, "description": "Interval (in seconds) for polling for changes to the encryption key. 0 (default) means polling disabled." }, "ssl": { "type": "object", "additionalProperties": false, "properties": { "enabled": { "type": "boolean", "default": false }, "factory-class-name": { "type": "string", "examples": [ "com.hazelcast.nio.ssl.BasicSSLContextFactory" ] }, "properties": { "type": "object", "examples": [ { "protocol": "TLS", "mutualAuthentication": "REQUIRED", "keyStore": "/opt/hazelcast.keystore", "keyStorePassword": "secret.97531", "keyStoreType": "JKS", "trustStore": "/opt/hazelcast.truststore", "trustStorePassword": "changeit", "trustStoreType": "JKS" } ] } } } }, "required": [ "address", "secret-path", "token" ] } } } ] } } } } }, "Persistence": { "type": "object", "additionalProperties": false, "properties": { "enabled": { "type": "boolean", "default": false }, "auto-remove-stale-data": { "type": "boolean", "default": true, "description": "Sets whether or not automatic removal of stale Hot Restart data is enabled. When a member terminates or crashes when cluster state is ACTIVE, remaining members redistributes data among themselves and data persisted on terminated member's storage becomes stale. That terminated member cannot rejoin the cluster without removing Hot Restart data. When auto-removal of stale Hot Restart data is enabled, while restarting that member, Hot Restart data is automatically removed and it joins the cluster as a completely new member. Otherwise, Hot Restart data should be removed manually." }, "base-dir": { "type": "string", "description": "Specifies the directory where the Persistence data will be stored. This directory will be created automatically if it does not exist.", "default": "persistence" }, "backup-dir": { "type": "string", "description": "Specifies the directory where the Persistence backup data will be stored. If this element is not defined, backup will be disabled. If a directory is defined which does not exist, it will be created on first backup. To avoid clashing data on multiple backups, each backup has a unique sequence ID which determines the name of the directory which will contain all persistence data. This unique directory is created as a subdirectory of the configured `backup-dir`." }, "parallelism": { "type": "integer", "minimum": 1, "default": 1, "description": "Level of parallelism in Persistence. There will be this many IO threads, each writing in parallel to its own files. During the restart procedure, this many IO threads will be reading the files and this many Rebuilder threads will be rebuilding the Persistence metadata." }, "validation-timeout-seconds": { "type": "integer", "minimum": 1, "default": 120, "description": " Validation timeout for the restart process when validating the cluster members expected to join and the partition table on the whole cluster." }, "data-load-timeout-seconds": { "type": "integer", "minimum": 1, "default": 900, "description": "Data load timeout for the restart process. All members in the cluster should finish restoring their local data before this timeout period." }, "cluster-data-recovery-policy": { "enum": [ "FULL_RECOVERY_ONLY", "PARTIAL_RECOVERY_MOST_RECENT", "PARTIAL_RECOVERY_MOST_COMPLETE" ], "default": "FULL_RECOVERY_ONLY", "description": " Specifies the data recovery policy that will be respected during restart cluster start. Valid values are:\\n FULL_RECOVERY_ONLY: Starts the cluster only when all expected members are present and correct. Otherwise, it fails. This is the default value.\\n PARTIAL_RECOVERY_MOST_RECENT: Starts the cluster with the members which have most up-to-date partition table and successfully restored their data. All other members will leave the cluster and force start themselves. If no member restores its data successfully, cluster start fails.\\n PARTIAL_RECOVERY_MOST_COMPLETE: Starts the cluster with the largest group of members which have the same partition table version and successfully restored their data. All other members will leave the cluster and force start themselves. If no member restores its data successfully, cluster start fails." }, "encryption-at-rest": { "type": "object", "description": "Specifies the (optional) encryption settings for persistence. It has the required attribute \"enabled\" to specify whether encryption is enabled. In addition to that, it specifies the symmetric cipher to use (such as AES/CBC/PKCS5Padding), the encryption salt, the key size for generating encryption keys and, in the \"secure-store\" sub-element, the configuration of the Secure Store that it will be used to retrieve the encryption keys.\\n \"keystore\": Provides integration with Java KeyStore. Specifies the path to the KeyStore file, the KeyStore type (such as PKCS12 or JCEKS), the KeyStore password, an (optional) alias for the current encryption key entry, and (optionally) a polling interval for checking for changes in the KeyStore.\\n \"vault\": Provides integration with HashiCorp Vault. Specifies the address of the Vault server, the (optional) secrets engine path, the secret path where the encryption key is stored, the access token, the (optional) namespace, the (optional) <ssl> configuration for HTTPS support, and an (optional) polling interval for checking for changes in Vault.", "properties": { "enabled": { "type": "boolean", "default": false }, "algorithm": { "type": "string", "description": "Symmetric encryption algorithm", "default": "AES/CBC/PKCS5Padding" }, "salt": { "type": "string", "default": "thesalt" }, "key-size": { "type": "integer" }, "secure-store": { "type": "object", "oneOf": [ { "additionalProperties": false, "properties": { "keystore": { "description": "Provides integration with Java KeyStore. Specifies the path to the KeyStore file, the KeyStore type (such as PKCS12 or JCEKS), the KeyStore password, an (optional) alias for the current encryption key entry, and (optionally) a polling interval for checking for changes in the KeyStore.", "type": "object", "additionalProperties": false, "properties": { "path": { "type": "string" }, "type": { "type": "string", "default": "PKCS12", "description": "For information about standard keystore types see https://docs.oracle.com/javase/8/docs/technotes/guides/security/StandardNames.html#KeyStore" }, "password": { "type": "string", "description": "The keystore password" }, "current-key-alias": { "type": "string" }, "polling-interval": { "type": "integer", "minimum": 0, "default": 0, "description": "Interval (in seconds) for polling for changes in the KeyStore. 0 (default) means no polling" } }, "required": [ "path", "password" ] } } }, { "additionalProperties": false, "properties": { "vault": { "description": "Provides integration with HashiCorp Vault. Specifies the address of the Vault server, the (optional) secrets engine path, the secret path where the encryption key is stored, the access token, the (optional) namespace, the (optional) \"ssl\" configuration for HTTPS support, and an (optional) polling interval for checking for changes in Vault.", "type": "object", "additionalProperties": false, "properties": { "address": { "type": "string" }, "secret-path": { "type": "string" }, "token": { "type": "string" }, "polling-interval": { "type": "integer", "default": 0, "description": "Interval (in seconds) for polling for changes to the encryption key. 0 (default) means polling disabled." }, "ssl": { "type": "object", "additionalProperties": false, "properties": { "enabled": { "type": "boolean", "default": false }, "factory-class-name": { "type": "string", "examples": [ "com.hazelcast.nio.ssl.BasicSSLContextFactory" ] }, "properties": { "type": "object", "examples": [ { "protocol": "TLS", "mutualAuthentication": "REQUIRED", "keyStore": "/opt/hazelcast.keystore", "keyStorePassword": "secret.97531", "keyStoreType": "JKS", "trustStore": "/opt/hazelcast.truststore", "trustStorePassword": "changeit", "trustStoreType": "JKS" } ] } } } }, "required": [ "address", "secret-path", "token" ] } } } ] } } }, "rebalance-delay-seconds": { "type": "integer", "minimum": 0, "default": 0, "description": "Time (in seconds) to wait before triggering automatic partition rebalancing after a member leaves the cluster unexpectedly. Unexpectedly in this context means that a member leaves the cluster by means other than graceful shutdown: programmatic termination (eg LifecycleService.terminate()), a process crash or network partition. Default is 0, which means rebalancing is triggered immediately. Setting this to a higher value will allow some time for members that are gone to rejoin the cluster. The benefit is that partition rebalancing in this case will be avoided, saving the burden of migrating partition data over the network. Do not use this option if your cluster also stores in-memory data. This option stops the cluster from migrating in-memory data. As a result any data that is not persisted will be lost if the member restarts within the configured delay, including backups. While members are gone, operations on partitions for which the owner is missing may fail immediately or will be retried until the member rejoins or operation timeout is exceeded. Notice that this delay only applies when cluster members leave the cluster; when the cluster is being scaled up and members are being added, partition rebalancing will be triggered immediately (subject to limitations imposed by the current cluster state)." } } }, "LocalDevice": { "type": "object", "additionalProperties": { "type": "object", "additionalProperties": false, "properties": { "base-dir": { "type": "string", "default": "tiered-store", "description": "Device base directory that will be used for tiered-store." }, "capacity": { "$ref": "#/definitions/Capacity", "description": "Device capacity, i.e., what is the soft upper bound capacity of the device. The default is 256 gigabytes." }, "block-size": { "type": "integer", "minimum": 512, "default": 4096, "description": "Device block/sector size in bytes. The default is 4096. The minimum is 512." }, "read-io-thread-count": { "type": "integer", "minimum": 1, "default": 4, "description": "Read IO thread count. The default is 4." }, "write-io-thread-count": { "type": "integer", "minimum": 1, "default": 4, "description": "Write IO thread count. The default is 4." } } } }, "DynamicConfiguration": { "type": "object", "additionalProperties": false, "properties": { "persistence-enabled": { "type": "boolean", "description": "True if dynamic configuration persistence is enabled." }, "backup-dir": { "type": "string", "description": "Directory for dynamic configuration persistence file backups. Each new backup will be created inside this directory. Can be an absolute or relative path to the node startup directory. If not set, new folder will be created at the node startup directory." }, "backup-count": { "type": "integer", "minimum": 0, "description": "How many backups will be kept. Default is 5. You can set this to zero to disable backups." } } }, "SocketEndpointConfig": { "allOf": [ { "$ref": "#/definitions/WanEndpointConfig" }, { "type": "object", "properties": { "port": { "type": "object", "description": "The ports which Hazelcast will use to communicate between cluster members.", "additionalProperties": false, "properties": { "port": { "type": "integer", "default": 5701 }, "port-count": { "type": "integer", "default": 100, "description": "The default value is 100, meaning that Hazelcast will try to bind 100 ports. If you set the value of port as 5701, as members join the cluster, Hazelcast tries to find ports between 5701 and 5801. You can change the port count in cases like having large instances on a single machine or you are willing to have only a few ports assigned." }, "auto-increment": { "type": "boolean", "default": true, "description": "If port is set to 5701, Hazelcast will try to find free ports between 5701 and 5801. Normally, you will not need to change this value, but it comes in handy when needed. You may also want to choose to use only one port. In that case, you can disable the auto-increment feature of port by setting its value as false." } } }, "public-address": { "type": "string", "description": "Overrides the public address of a node. By default, a node selects its socket address as its public address. But behind a network address translation (NAT), two endpoints (nodes) may not be able to see/access each other. If both nodes set their public addresses to their defined addresses on NAT, then they can communicate with each other. In this case, their public addresses are not an address of a local network interface but a virtual address defined by NAT. This is optional to set and useful when you have a private cloud." }, "reuse-address": { "type": "boolean", "default": false, "description": "When you shutdown a cluster member, the server socket port will be in the TIME_WAIT state for the next couple of minutes. If you start the member right after shutting it down, you may not be able to bind it to the same port because it is in the TIME_WAIT state. If you set reuse-address to true, the TIME_WAIT state is ignored and you can bind the member to the same port again." } } } ] }, "WanEndpointConfig": { "properties": { "name": { "type": "string", "description": "Name of the endpoint configuration. Only relevant when defining WAN server sockets." }, "outbound-ports": { "$ref": "#/definitions/OutboundPorts" }, "interfaces": { "type": "object", "additionalProperties": false, "description": "Specifies which network interfaces Hazelcast should use. You need to set its \"enabled\" sub-element to true to be able to use your defined interfaces. By default, it is disabled. You can define multiple interfaces using a nested \"interfaces\" sequence.", "properties": { "enabled": { "type": "boolean", "default": false }, "interfaces": { "type": "array", "items": { "type": "string" } } } }, "ssl": { "type": "object", "additionalProperties": false, "description": "Lets you configure SSL using the SSL context factory. This feature is available only in Hazelcast Enterprise. To be able to use it, encryption should NOT be enabled and you should first implement your SSLContextFactory class. Its configuration contains the factory class and SSL properties.", "properties": { "enabled": { "type": "boolean", "default": false }, "factory-class-name": { "type": "string" }, "properties": { "type": "object" } } }, "socket-interceptor": { "type": "object", "additionalProperties": false, "description": "Lets you add custom hooks to join and perform connection procedures (like identity checking using Kerberos, etc.). This feature is available only in Hazelcast Enterprise. To be able to use it, you should first implement the MemberSocketInterceptor (for members joining to a cluster) or SocketInterceptor (for clients connecting to a member) class. Its configuration contains the class you implemented and socket interceptor properties.", "properties": { "enabled": { "type": "boolean", "default": false }, "class-name": { "type": "string" }, "properties": { "type": "object" } } }, "symmetric-encryption": { "type": "object", "additionalProperties": false, "description": "Lets you encrypt the entire socket level communication among all Hazelcast members. This feature is available only in Hazelcast Enterprise. Its configuration contains the encryption properties and the same configuration must be placed to all members.", "properties": { "enabled": { "type": "boolean", "default": false }, "algorithm": { "type": "string", "default": "PBEWithMD5AndDES" }, "salt": { "type": "string", "default": "thesalt" }, "password": { "type": "string", "default": "thepassword" }, "iteration-count": { "type": "integer", "minimum": 0, "default": 19 } } }, "socket-options": { "$ref": "#/definitions/SocketOptions" }, "tpc-socket": { "$ref": "#/definitions/TpcSocketConfig" } } }, "SocketOptions": { "type": "object", "additionalProperties": false, "properties": { "buffer-direct": { "type": "boolean", "default": false, "description": "Specifies whether direct or non-direct buffers should be allocated for the socket." }, "tcp-no-delay": { "type": "boolean", "default": true, "description": "Specifies whether Nagle's algorithm should be disabled. The default value is true meaning that Nagle's algorithm is disabled." }, "keep-alive": { "type": "boolean", "default": true, "description": "Specifies whether TCP keep-alive should be enabled." }, "connect-timeout-seconds": { "type": "integer", "minimum": 0, "default": 0, "description": "Specifies the TCP timeout in seconds." }, "send-buffer-size-kb": { "type": "integer", "minimum": 0, "default": 128, "description": "Specifies the size of the send buffer." }, "receive-buffer-size-kb": { "type": "integer", "default": 128, "description": "Specifies the size of the receive buffer." }, "linger-seconds": { "type": "integer", "default": 0, "description": "Specifies the TCP linger seconds." }, "keep-idle-seconds": { "type": "integer", "default": 7200, "description": "Specifies the TCP Keep-Alive idle time: the number of seconds of idle time before keep-alive initiates a probe. Valid values are 1 to 32767." }, "keep-interval-seconds": { "type": "integer", "default": 75, "description": "Specifies the TCP keep-alive interval: the number of seconds between keep-alive probes. Valid values are 1 to 32767." }, "keep-count": { "type": "integer", "default": 8, "description": "Specifies the TCP Keep-Alive count: the maximum number of TCP keep-alive probes to send before giving up and closing the connection if no response is obtained from the other side. Valid values are 1 to 127." } } }, "WanReplication": { "type": "object", "additionalProperties": { "type": "object", "additionalProperties": false, "properties": { "batch-publisher": { "type": "object", "additionalProperties": { "type": "object", "additionalProperties": false, "properties": { "cluster-name": { "type": "string", "description": "Sets the cluster name used as an endpoint cluster name for authentication on the target endpoint. If there is no separate publisher ID property defined, this cluster name will also be used as a WAN publisher ID. This ID is then used for identifying the publisher in a WanReplicationConfig." }, "batch-size": { "type": "integer", "default": 500, "description": "Changes the maximum size of events that are sent to the target cluster in a single batch. The batch of events is not sent until this size is reached." }, "batch-max-delay-millis": { "type": "integer", "default": 1000, "description": " If the number of events generated does not reach the \"batch-size\", they are sent to the target cluster after a certain amount of time is passed. You can set this time in milliseconds using this element." }, "response-timeout-millis": { "type": "integer", "default": 60000, "description": " After a replication event is sent to the target cluster, the source member waits for a confirmation that says the event has reached the target. If confirmation is not received for a period of `response-timeout-millis`, the event is resent to the target cluster." }, "acknowledge-type": { "enum": [ "ACK_ON_RECEIPT", "ACK_ON_OPERATION_COMPLETE" ], "default": "ACK_ON_OPERATION_COMPLETE", "description": "Acknowledgment type for each target cluster when the events are replicated. You can set it to the following values: \\n * ACK_ON_RECEIPT: Guarantees that events are received by the target cluster. It does not guarantee that the received event is actually applied, but it is faster. \\n * ACK_ON_OPERATION_COMPLETE (default): Guarantees that the event is both received and applied by the target cluster. It is more time consuming, but it is the best way if you have strong consistency requirements." }, "initial-publisher-state": { "enum": [ "REPLICATING", "PAUSED", "STOPPED" ], "default": "REPLICATING", "description": "Defines the initial state in which a WAN publisher is started. \\n * REPLICATING (default): State where both enqueuing new events is allowed, enqueued events are replicated to the target cluster and WAN sync is enabled. \\n * PAUSED: State where new events are enqueued but they not are dequeued. Some events which have been dequeued before the state was switched may still be replicated to the target cluster but further events will not be replicated. WAN sync is enabled. \\n * STOPPED: State where neither new events are enqueued nor dequeued. As with the PAUSED state, some events might still be replicated after the publisher has switched to this state. WAN sync is enabled." }, "snapshot-enabled": { "type": "boolean", "default": false, "description": "Sets if key-based coalescing is configured for this WAN publisher. When enabled, only the latest WanReplicationEvent of a key is sent to target." }, "idle-max-park-ns": { "type": "integer", "default": 250000000, "description": "Sets the maximum duration in nanoseconds that the WAN replication thread will be parked if there are no events to replicate." }, "idle-min-park-ns": { "type": "integer", "default": 10000000, "description": " Sets the minimum duration in nanoseconds that the WAN replication thread will be parked if there are no events to replicate." }, "max-concurrent-invocations": { "type": "integer", "default": -1, "description": "Sets the maximum number of WAN event batches being sent to the target cluster concurrently. Setting this property to anything less than 2 will only allow a single batch of events to be sent to each target endpoint and will maintain causality of events for a single partition. Setting this property to 2 or higher will allow multiple batches of WAN events to be sent to each target endpoint. Since this allows reordering or batches due to network conditions, causality and ordering of events for a single partition is lost and batches for a single partition are now sent randomly to any available target endpoint. This, however, does present faster WAN replication for certain scenarios such as replicating immutable, independent map entries which are only added once and where ordering of when these entries are added is not necessary. Keep in mind that if you set this property to a value which is less than the target endpoint count, you will lose performance as not all target endpoints will be used at any point in time to process WAN event batches. So, for instance, if you have a target cluster with 3 members (target endpoints) and you want to use this property, it makes sense to set it to a value higher than 3. Otherwise, you can simply disable it by setting it to less than 2 in which case WAN will use the default replication strategy and adapt to the target endpoint count while maintaining causality." }, "discovery-period-seconds": { "type": "integer", "default": 10, "description": " Sets the period in seconds in which WAN tries to discover new target endpoints and reestablish connections to failed endpoints." }, "use-endpoint-private-address": { "type": "boolean", "default": false, "description": " Sets whether the WAN connection manager should connect to the endpoint on the private address returned by the discovery SPI. By default this property is false which means the WAN connection manager will always use the public address." }, "queue-full-behavior": { "enum": [ "DISCARD_AFTER_MUTATION", "THROW_EXCEPTION", "THROW_EXCEPTION_ONLY_IF_REPLICATION_ACTIVE" ], "default": "DISCARD_AFTER_MUTATION", "description": "Policy to be applied when WAN Replication event queues are full. You can set it to the following values: \\n - DISCARD_AFTER_MUTATION (default): The new WAN events generated are dropped and not replicated to the target cluster." }, "properties": { "type": "object" }, "max-target-endpoints": { "type": "integer", "default": 2147483647, "description": "The maximum number of endpoints that WAN will connect to when using a discovery mechanism to define endpoints. This property has no effect when static endpoint addresses are defined using target-endpoints." }, "queue-capacity": { "type": "integer", "default": 10000, "description": " Size of the queue of events. If you exceed this queue size, then the oldest, not yet replicated updates might get lost. Therefore, if you have a large rate of put/update/remove operations, you should increase queue capacity." }, "target-endpoints": { "type": "string", "description": "Comma separated list of IP addresses of the target cluster members for which the WAN replication is implemented." }, "endpoint": { "type": "string" }, "sync": { "type": "object", "additionalProperties": false, "properties": { "consistency-check-strategy": { "enum": [ "NONE", "MERKLE_TREES" ], "description": "Sets the strategy for checking consistency of data between source and target cluster. Any inconsistency will not be reconciled, it will be merely reported via the usual mechanisms (e.g. statistics, diagnostics). The user must initiate WAN sync to reconcile there differences. For the check procedure to work properly, the target cluster should support the chosen strategy." } } }, "aws": { "$ref": "#/definitions/AwsDiscovery" }, "gcp": { "$ref": "#/definitions/GcpDiscovery" }, "azure": { "$ref": "#/definitions/AzureDiscovery" }, "kubernetes": { "$ref": "#/definitions/KubernetesDiscovery" }, "eureka": { "$ref": "#/definitions/EurekaDiscovery" }, "discovery-strategies": { "$ref": "#/definitions/DiscoveryStrategies" } } } }, "custom-publisher": { "type": "object", "additionalProperties": { "$ref": "#/definitions/ClassNameWithProps" } }, "consumer": { "type": "object", "additionalProperties": false, "description": "Config for processing WAN events received from a target cluster. You can configure certain behaviour when processing incoming WAN events or even configure your own implementation for a WAN consumer. A custom WAN consumer allows you to define custom processing logic and is usually used in combination with a custom WAN publisher. A custom consumer is optional and you may simply omit defining it which will cause the default processing logic to be used.", "properties": { "class-name": { "type": "string", "description": "Sets the fully qualified class name of the class implementing a custom WAN consumer (WanConsumer). If you don't define a class name, the default processing logic for incoming WAN events will be used." }, "properties": { "type": "object", "description": "Properties for the custom WAN consumer. These properties are accessible when initalizing the WAN consumer." }, "persist-wan-replicated-data": { "type": "boolean", "default": false, "description": "When true, an incoming event over WAN replication can be persisted to a database for example, otherwise it will not be persisted. Default value is true." } } } } } }, "UserCodeDeployment": { "type": "object", "additionalProperties": false, "properties": { "enabled": { "type": "boolean", "default": false }, "class-cache-mode": { "enum": [ "ETERNAL", "OFF" ], "default": "ETERNAL", "description": " Controls the local caching behavior for the classes loaded from the remote class repository. Available values are as follows:\\n * ETERNAL: Cache the loaded classes locally. This is the default value and suitable when you load long-living objects, such as domain objects stored in a map. \\n * OFF: Do not cache the loaded classes locally." }, "provider-mode": { "enum": [ "OFF", "LOCAL_CLASSES_ONLY", "LOCAL_AND_CACHED_CLASSES" ], "default": "LOCAL_AND_CACHED_CLASSES", "description": "Controls how the classes are served to the other cluster members. Available values are as follows: \\n * LOCAL_AND_CACHED_CLASSES: Serve classes loaded from both local classpath and from other members. This is the default value. \\n * LOCAL_CLASSES_ONLY: Serve classes from the local classpath only. Classes loaded from other members will be used locally, but they are not served to other members. \\n * OFF: Never serve classes to other members." }, "blacklist-prefixes": { "type": "string", "description": "Comma separated name prefixes of classes/packages to be prevented from dynamic class loading. For example, if you set it as \"com.foo\", remote loading of all classes from the \"com.foo\" package will be blacklisted, including the classes from all its sub-packages. If you set it as \"com.foo.Class\", then the \"Class\" and all classes having the \"Class\" as prefix in the \"com.foo\" package will be blacklisted." }, "whitelist-prefixes": { "type": "string", "description": "Comma separated name prefixes of classes/packages only from which the classes will be loaded. It allows to quickly configure remote loading only for classes from selected packages. It can be used together with blacklisting. For example, you can whitelist the prefix \"com.foo\" and blacklist the prefix \"com.foo.secret\"." }, "provider-filter": { "type": "string", "description": "Filter to constraint members to be used for a class loading request when a class is not available locally. The value is in the format \"HAS_ATTRIBUTE:foo\". When it is set as \"HAS_ATTRIBUTE:foo\", the class loading request will only be sent to the members which have \"foo\" as a member attribute." } } }, "Sql": { "type": "object", "additionalProperties": false, "properties": { "statement-timeout-millis": { "type": "integer", "default": 0, "description": "Defines the timeout in milliseconds that is applied to queries without an explicit timeout." }, "catalog-persistence-enabled": { "type": "boolean", "default": false, "description": "Sets whether SQL Catalog persistence is enabled for the node. With SQL Catalog persistence enabled you can restart the whole cluster without losing schema definition objects (such as MAPPINGs, TYPEs, VIEWs and DATA CONNECTIONs). The feature is implemented on top of the Hot Restart feature of Hazelcast which persists the data to disk. If enabled, you have to also configure Hot Restart. Feature is disabled by default. If you enable this option in open-source, the member will fail to start, you need Enterprise to run it and obtain a license from Hazelcast." } } }, "Auditlog": { "type": "object", "additionalProperties": false, "properties": { "enabled": { "type": "boolean", "default": false }, "factory-class-name": { "type": "string" }, "properties": { "type": "object" } } }, "InstanceTracking": { "type": "object", "additionalProperties": false, "properties": { "enabled": { "type": "boolean", "default": false }, "file-name": { "type": "string" }, "format-pattern": { "type": "string" } } }, "ClientSql": { "type": "object", "additionalProperties": false, "properties": { "resubmission-mode": { "enum": [ "NEVER", "RETRY_SELECTS", "RETRY_SELECTS_ALLOW_DUPLICATES", "RETRY_ALL" ], "default": "NEVER", "description": "The configuration when to retry query that fails with reasons CONNECTION_PROBLEM, PARTITION_DISTRIBUTION, TOPOLOGY_CHANGE." } } }, "ClientTpc": { "type": "object", "additionalProperties": false, "properties": { "enabled": { "type": "boolean", "description": "Enables or disables the TPC-aware mode." } }, "required": ["enabled"], "description": "Configures the client for TPC, which is the next generation Hazelcast that uses thread-per-core model. TPC-aware clients will maintain connections to all cores of all cluster members. The client will route partition-specific invocations to the correct core of the correct member in the best effort basis. This configuration is introduced as BETA, and it might be subject to changes, or it can be removed in future releases without a prior notice." }, "OutboundPortDefinition": { "anyOf": [ { "type": "integer", "minimum": 0, "maximum": 65536 }, { "type": "string" } ] }, "OutboundPorts": { "description": "By default, Hazelcast lets the system pick up an ephemeral port during socket bind operation. But security policies/firewalls may require you to restrict outbound ports to be used by Hazelcast-enabled applications. You can specify these ports under the element \"outbound-ports\". You can give a single port number, comma separated multiple ports or port ranges.", "anyOf": [ { "type": "array", "items": { "$ref": "#/definitions/OutboundPortDefinition" } }, { "type": "object", "additionalProperties": { "$ref": "#/definitions/OutboundPortDefinition" } } ] }, "Jet": { "type": "object", "additionalProperties": false, "properties": { "enabled": { "type": "boolean", "default": false }, "resource-upload-enabled": { "type": "boolean", "default": false }, "instance": { "type": "object", "additionalProperties": false, "properties": { "cooperative-thread-count": { "type": "integer", "description": "the number of threads each cluster member will use to execute Jet jobs. This refers only to threads executing `cooperative` processors; each `blocking` processor is assigned its own thread. By default it is the same as the number of available processors." }, "flow-control-period": { "type": "integer", "default": 100, "description": "While executing a Jet job there is the issue of regulating the rate at which one member of the cluster sends data to another member. The receiver will regularly report to each sender how much more data it is allowed to send over a given DAG edge. This property sets the length (in milliseconds) of the interval between flow-control (\"ack\") packets." }, "backup-count": { "type": "integer", "default": 1, "maximum": 6, "description": "Sets the number of backups that Jet will maintain for the job metadata and snapshots. Each backup is on another cluster member; all backup write operations must complete before the overall write operation can complete. The maximum allowed number of backups is 6 and the default is 1. For example, if you set the backup count to 2, Jet will replicate all the job metadata and snapshot data to two other members. If one or two members of the cluster fail, Jet can recover the data from the snapshot and continue executing the job on the remaining members without loss." }, "scale-up-delay-millis": { "type": "integer", "default": 10000, "description": "Sets the delay after which auto-scaled jobs will restart if a new member is added to the cluster. Has no effect on jobs with auto scaling disabled." }, "lossless-restart-enabled": { "type": "boolean", "default": false, "description": "Sets whether lossless job restart is enabled for the node. With lossless restart you can restart the whole cluster without losing the jobs and their state. The feature is implemented on top of the Hot Restart feature of Hazelcast which persists the data to disk. If enabled, you have to also configure Hot Restart. Note: the snapshots exported using `Job#exportSnapshot` will also have Hot Restart storage enabled. Feature is disabled by default. If you enable this option in open-source, the member will fail to start, you need Enterprise to run it and obtain a license from Hazelcast." }, "max-processor-accumulated-records": { "type": "integer", "default": 9223372036854775807, "description": "Specifies the maximum number of records that can be accumulated by any single processor instance. Operations like grouping, sorting or joining require certain amount of records to be accumulated before they can proceed. You can set this option to reduce the probability of `OutOfMemoryError`. It applies to each processor instance separately, hence the effective limit of records accumulated by each cluster member is influenced by the vertex's `localParallelism` and the number of jobs in the cluster. Currently, this option limits: number of items sorted by the sort operation, number of distinct keys accumulated by aggregation operations, number of entries in each hash-join lookup table, number of entries in stateful transforms and number of distinct items in distinct operation. The limit does not apply to streaming aggregations." } }, "description": "Deprecated, use `/hazelcast/jet` to configure the fields directly. General configuration options pertaining to a Jet instance." }, "cooperative-thread-count": { "type": "integer", "description": "the number of threads each cluster member will use to execute Jet jobs. This refers only to threads executing `cooperative` processors; each `blocking` processor is assigned its own thread. By default it is the same as the number of available processors." }, "flow-control-period": { "type": "integer", "default": 100, "description": "While executing a Jet job there is the issue of regulating the rate at which one member of the cluster sends data to another member. The receiver will regularly report to each sender how much more data it is allowed to send over a given DAG edge. This property sets the length (in milliseconds) of the interval between flow-control (\"ack\") packets." }, "backup-count": { "type": "integer", "default": 1, "maximum": 6, "description": "Sets the number of backups that Jet will maintain for the job metadata and snapshots. Each backup is on another cluster member; all backup write operations must complete before the overall write operation can complete. The maximum allowed number of backups is 6 and the default is 1. For example, if you set the backup count to 2, Jet will replicate all the job metadata and snapshot data to two other members. If one or two members of the cluster fail, Jet can recover the data from the snapshot and continue executing the job on the remaining members without loss." }, "scale-up-delay-millis": { "type": "integer", "default": 10000, "description": "Sets the delay after which auto-scaled jobs will restart if a new member is added to the cluster. Has no effect on jobs with auto scaling disabled." }, "lossless-restart-enabled": { "type": "boolean", "default": false, "description": "Sets whether lossless job restart is enabled for the node. With lossless restart you can restart the whole cluster without losing the jobs and their state. The feature is implemented on top of the Hot Restart feature of Hazelcast which persists the data to disk. If enabled, you have to also configure Hot Restart. Note: the snapshots exported using `Job#exportSnapshot` will also have Hot Restart storage enabled. Feature is disabled by default. If you enable this option in open-source, the member will fail to start, you need Enterprise to run it and obtain a license from Hazelcast." }, "max-processor-accumulated-records": { "type": "integer", "default": 9223372036854775807, "description": "Specifies the maximum number of records that can be accumulated by any single processor instance. Operations like grouping, sorting or joining require certain amount of records to be accumulated before they can proceed. You can set this option to reduce the probability of `OutOfMemoryError`. It applies to each processor instance separately, hence the effective limit of records accumulated by each cluster member is influenced by the vertex's `localParallelism` and the number of jobs in the cluster. Currently, this option limits: number of items sorted by the sort operation, number of distinct keys accumulated by aggregation operations, number of entries in each hash-join lookup table, number of entries in stateful transforms and number of distinct items in distinct operation. The limit does not apply to streaming aggregations." }, "edge-defaults": { "type": "object", "additionalProperties": false, "properties": { "queue-size": { "type": "integer", "default": 1024, "description": "Sets the capacity of processor-to-processor concurrent queues. The value is rounded upwards to the next power of 2. When data needs to travel between two processors on the same cluster member, Jet sends it over a concurrent single-producer, single-consumer (SPSC) queue of fixed capacity. Since there are several processors executing the logic of each vertex, and since the queues are SPSC, there will be `senderParallelism input.txt receiverParallelism` queues representing the edge on each member. The edge capacity should strike a balance between performance and memory usage." }, "packet-size-limit": { "type": "integer", "default": 16384, "description": "For a distributed edge, data is sent to a remote member via Hazelcast network packets. Each packet is dedicated to the data of a single edge, but may contain any number of data items. This setting limits the size of the packet in bytes. Packets should be large enough to drown out any fixed overheads, but small enough to allow good interleaving with other packets. Note that a single item cannot straddle packets, therefore the maximum packet size can exceed the value configured here by the size of a single data item. This setting has no effect on a non-distributed edge. " }, "receive-window-multiplier": { "type": "integer", "default": 3, "description": "Sets the scaling factor used by the adaptive receive window sizing function. For each distributed edge the receiving member regularly sends flow-control (\"ack\") packets to its sender which prevent it from sending too much data and overflowing the buffers. The sender is allowed to send the data one `receive window` further than the last acknowledged byte and the receive window is sized in proportion to the rate of processing at the receiver. Ack packets are sent in regular intervals (InstanceConfig#setFlowControlPeriodMs) and the `receive window multiplier` sets the factor of the linear relationship between the amount of data processed within one such interval and the size of the receive window. To put it another way, let us define an `ackworth` as the amount of data processed between two consecutive ack packets. The receive window multiplier determines the number of ackworths the sender can be ahead of the last acked byte. This setting has no effect on a non-distributed edge." } } } } }, "ConnectionStrategy": { "type": "object", "additionalProperties": false, "properties": { "async-start": { "type": "boolean", "default": false, "description": "If set to true, creating Hazelcast client does not wait for connecting to the cluster." }, "reconnect-mode": { "description": "Defines the reconnection mode. The valid values are:\\n * \"ON\": Enables reconnection in a blocking manner where all the waiting invocations are blocked until a cluster connection is established or failed. This is the default value.\\n * \"OFF\": Disables the reconnection.\\n * \"ASYNC\": Enables reconnection in a non-blocking manner where all the waiting invocations receive a HazelcastClientOfflineException.", "enum": [ "ASYNC", "ON", "OFF" ], "default": "ON" }, "connection-retry": { "type": "object", "additionalProperties": false, "description": "Defines the configuration used when retrying to connect to the cluster.", "properties": { "initial-backoff-millis": { "type": "integer", "default": 1000, "minimum": 0, "description": "Specifies how long to wait (backoff) after the first failure before retrying in milliseconds." }, "max-backoff-millis": { "type": "integer", "minimum": 0, "default": 30000, "description": "Specifies the upper limit for the backoff in milliseconds." }, "multiplier": { "type": "number", "default": 1.05, "minimum": 1.0, "description": "Factor to multiply the backoff after a failed retry." }, "cluster-connect-timeout-millis": { "type": "integer", "default": -1, "minimum": -1, "description": "Timeout value in milliseconds for the client to give up to connect to the current cluster Depending on FailoverConfig, a client can shutdown or start trying on alternative cluster after reaching the timeout. Its default value is -1. For the default value, the client will not stop trying to connect to the cluster. If the failover client is used, the client will start trying to connect alternative clusters after 120000 ms. For any other value, both the failover and non-failover client will use that as it is." }, "jitter": { "type": "number", "default": 0, "minimum": 0, "maximum": 1, "description": "Specifies by how much to randomize backoffs." } } } } }, "ClientUserCodeDeployment": { "type": "object", "additionalProperties": false, "properties": { "enabled": { "type": "boolean", "default": false, "description": "If set to true, user code deployment is enabled." }, "jarPaths": { "type": "array", "items": { "type": "string" }, "description": "Sequence lists the jar files containing the classes to load." }, "classNames": { "type": "array", "items": { "type": "string" }, "description": "Sequence lists the classes available in the client class path to load." } } }, "ProxyFactories": { "type": "array", "items": { "type": "object", "additionalProperties": false, "properties": { "class-name": { "type": "string" }, "service": { "type": "string" } }, "required": [ "class-name", "service" ] } }, "LoadBalancer": { "description": "The load balancer can be configured with the \"load-balancer\" mapping. It has a scalar sub-node called \"type\". The valid values for the type of the load balancer are:\\n * \"random\": The member the operations to be sent to is chosen randomly.\\n * \"round-robin\": The member the operations to be sent to is chosen in a round-robin fashion.\\n * \"custom\": The member the operations to be sent to is chosen by provided load balancer implementation. The implementation class name is specified in additional \"class-name\" key. ", "type": "object", "additionalProperties": false, "properties": { "type": { "enum": [ "random", "round-robin", "custom" ] }, "class-name": { "type": "string" } }, "anyOf": [ { "not": { "properties": { "type": { "const": "custom" } } } }, { "required": [ "class-name" ] } ] }, "ClientNearCache": { "type": "object", "additionalProperties": { "type": "object", "additionalProperties": false, "properties": { "time-to-live-seconds": { "$ref": "#/definitions/Map/additionalProperties/properties/near-cache/properties/time-to-live-seconds" }, "max-idle-seconds": { "$ref": "#/definitions/Map/additionalProperties/properties/near-cache/properties/max-idle-seconds" }, "invalidate-on-change": { "$ref": "#/definitions/Map/additionalProperties/properties/near-cache/properties/invalidate-on-change" }, "in-memory-format": { "$ref": "#/definitions/Map/additionalProperties/properties/near-cache/properties/in-memory-format" }, "serialize-keys": { "$ref": "#/definitions/Map/additionalProperties/properties/near-cache/properties/serialize-keys" }, "local-update-policy": { "$ref": "#/definitions/Map/additionalProperties/properties/near-cache/properties/local-update-policy" }, "eviction": { "$ref": "#/definitions/Eviction" }, "preloader": { "type": "object", "additionalProperties": false, "properties": { "enabled": { "type": "boolean", "default": false }, "directory": { "type": "string", "default": "" }, "store-initial-delay-seconds": { "type": "integer", "minimum": 0, "default": 600 }, "store-interval-seconds": { "type": "integer", "minimum": 0, "default": 600 } } } } } }, "ClientFlakeIdGenerator": { "type": "object", "additionalProperties": { "type": "object", "additionalProperties": false, "properties": { "prefetch-count": { "type": "integer", "minimum": 1, "maximum": 100000, "default": 100, "description": "Sets how many IDs are pre-fetched on the background when one call to FlakeIdGenerator#newId() is made." }, "prefetch-validity-millis": { "type": "integer", "minimum": 1, "default": 600000, "description": "Sets for how long the pre-fetched IDs can be used. If this time elapses, a new batch of IDs will be fetched. Time unit is milliseconds, default is 600,000 (10 minutes)." } } } }, "ClientReliableTopic": { "type": "object", "additionalProperties": { "type": "object", "additionalProperties": false, "properties": { "read-batch-size": { "type": "integer", "default": 10, "minimum": 1, "description": "Sets the read batch size. The ReliableTopic tries to read a batch of messages from the ringbuffer. It will get at least one, but if there are more available, then it will try to get more to increase throughput. The maximum read batch size can be influenced using the read batch size. Apart from influencing the number of messages to retrieve, the readBatchSize also determines how many messages will be processed by the thread running the MessageListener before it returns back to the pool to look for other MessageListeners that need to be processed. The problem with returning to the pool and looking for new work is that interacting with an executor is quite expensive due to contention on the work-queue. The more work that can be done without retuning to the pool, the smaller the overhead. If the readBatchSize is 10 and there are 50 messages available, 10 items are retrieved and processed consecutively before the thread goes back to the pool and helps out with the processing of other messages. If the readBatchSize is 10 and there are 2 items available, 2 items are retrieved and processed consecutively. If the readBatchSize is an issue because a thread will be busy too long with processing a single MessageListener and it can't help out other MessageListeners, increase the size of the threadpool so the other MessageListeners don't need to wait for a thread, but can be processed in parallel." }, "topic-overload-policy": { "default": "BLOCK", "enum": [ "BLOCK", "DISCARD_OLDEST", "DISCARD_NEWEST" ], "description": "A policy to deal with an overloaded topic; so topic where there is no place to store new messages. This policy can only be used in combination with the com.hazelcast.core.HazelcastInstance#getReliableTopic(String). The reliable topic uses a com.hazelcast.ringbuffer.Ringbuffer to store the messages. A ringbuffer doesn't track where readers are, so it has no concept of a slow consumers. This provides many advantages like high performance reads, but it also gives the ability to the reader to re-read the same message multiple times in case of an error. A ringbuffer has a limited, fixed capacity. A fast producer may overwrite old messages that are still being read by a slow consumer. To prevent this, we may configure a time-to-live on the ringbuffer (see com.hazelcast.config.RingbufferConfig#setTimeToLiveSeconds(int). Once the time-to-live is configured, the TopicOverloadPolicy controls how the publisher is going to deal with the situation that a ringbuffer is full and the oldest item in the ringbuffer is not old enough to get overwritten. Keep in mind that this retention period (time-to-live) can keep messages from being overwritten, even though all readers might have already completed reading. Its default value is BLOCK. Available values are as follows: - DISCARD_OLDEST: Using this policy, a message that has not expired can be overwritten. No matter the retention period set, the overwrite will just overwrite the item. This can be a problem for slow consumers because they were promised a certain time window to process messages. But it will benefit producers and fast consumers since they are able to continue. This policy sacrifices the slow producer in favor of fast producers/consumers.\\n * DISCARD_NEWEST: Message that was to be published is discarded.\\n * BLOCK: The caller will wait until there is space in the Ringbuffer.\\n * ERROR: The publish call fails immediately." } } } }, "ClientSecurity": { "type": "object", "additionalProperties": false, "propertyNames": { "enum": [ "realms", "username-password", "kerberos", "token", "credentials-factory" ] }, "properties": { "username-password": { "$ref": "#/definitions/UsernamePasswordIdentity" }, "token": { "$ref": "#/definitions/TokenIdentity" }, "credentials-factory": { "$ref": "#/definitions/CredentialsFactoryIdentity" }, "kerberos": { "$ref": "#/definitions/KerberosIdentity" }, "realms": { "$ref": "#/definitions/Security/properties/realms" } } }, "UsernamePasswordIdentity": { "type": "object", "additionalProperties": false, "description": "Defines a static UsernamePasswordCredentials instance as the member's identity. It has mandatory \"username\" and \"password\" attributes.", "properties": { "username": { "type": "string" }, "password": { "type": "string" } }, "required": [ "username", "password" ] }, "KerberosIdentity": { "type": "object", "additionalProperties": false, "properties": { "realm": { "type": "string" }, "security-realm": { "type": "string" }, "principal": { "type": "string" }, "keytab-file": { "type": "string" }, "service-name-prefix": { "type": "string" }, "spn": { "type": "string" }, "use-canonical-hostname": { "type": "boolean", "default": false } } }, "TokenIdentity": { "type": "object", "additionalProperties": false, "description": "Defines a static TokenCredentials instance as the client's identity. It has a \"value\" and it can have also \"encoding\" defined.", "properties": { "encoding": { "enum": [ "none", "base64" ] }, "value": { "type": "string" } }, "required": [ "encoding", "value" ] }, "CredentialsFactoryIdentity": { "description": " Specifies the name and properties of your class that you developed by implementing Hazelcast's Credentials interface. This element has a mandatory \"class-name\" attribute where you should define the factory class implementing ICredentialsFactory used to create Credentials objects. With the \"properties\" child property, you can define properties for the factory class.", "$ref": "#/definitions/ClassNameWithProps" }, "ClientNetwork": { "type": "object", "additionalProperties": false, "properties": { "cluster-members": { "description": "This sequence lets you list the members in your cluster the client is connecting to.", "type": "array", "items": { "type": "string" } }, "outbound-ports": { "$ref": "#/definitions/OutboundPorts" }, "smart-routing": { "type": "boolean", "default": true, "description": "If true, client will route the key based operations to owner of the key at the best effort. Note that it uses a cached version of com.hazelcast.core.PartitionService#getPartitions() and doesn't guarantee that the operation will always be executed on the owner. The cached table is updated every second." }, "redo-operation": { "type": "boolean", "default": false, "description": "If true, client will redo the operations that were executing on the server and client lost the connection. This can be because of network, or simply because the member died. However it is not clear whether the application is performed or not. For idempotent operations this is harmless, but for non idempotent ones retrying can cause to undesirable effects. Note that the redo can perform on any member. If false, the operation will throw a RuntimeException that is wrapping a java.io.IOException." }, "socket-interceptor": { "$ref": "#/definitions/SocketInterceptor" }, "connection-timeout": { "type": "integer", "description": "Connection timeout is the timeout value in milliseconds for members to accept client connection requests. The following are the example configurations. Its default value is 5000.", "default": 5000, "minimum": 0 }, "icmp-ping": { "type": "object", "additionalProperties": false, "properties": { "enabled": { "type": "boolean", "default": false, "description": "Flag to enable icmp ping failure detector. When set to true, this client will use icmp ping failure detector to detect unavailable members." }, "interval-milliseconds": { "type": "integer", "default": 1000, "minimum": 1000, "description": "Interval, in milliseconds, between each ping attempt. 1000ms (1 sec) is also the minimum interval allowed." }, "timeout-milliseconds": { "type": "integer", "default": 1000, "description": "Number of milliseconds until a ping attempt is considered failed if there was no reply." }, "max-attempts": { "type": "integer", "description": "Maximum number of ping attempts before the member gets suspected by the detector.", "default": 3 }, "ttl": { "description": "Maximum number of hops the packets should go through. You can set to 0 to use your system���s default TTL.", "type": "integer", "default": 255, "minimum": 0 }, "echo-fail-fast-on-startup": { "description": "The client will fail to start if it is unable to action an ICMP ping command when ICMP is enabled. Failure is usually due to OS level restrictions.", "type": "boolean", "default": true } } }, "auto-detection": { "$ref": "#/definitions/AutoDetection" }, "azure": { "$ref": "#/definitions/AzureDiscovery" }, "gcp": { "$ref": "#/definitions/GcpDiscovery" }, "aws": { "$ref": "#/definitions/AwsDiscovery" }, "kubernetes": { "$ref": "#/definitions/KubernetesDiscovery" }, "ssl": { "$ref": "#/definitions/SSL" }, "eureka": { "$ref": "#/definitions/EurekaDiscovery" }, "discovery-strategies": { "$ref": "#/definitions/DiscoveryStrategies" }, "hazelcast-cloud": { "type": "object", "additionalProperties": false, "description": "Set its \"enabled\" sub-element to true for cluster discovery in the Hazelcast Cloud infrastructure. You need to define the mandatory \"discovery-token\" sub-node used by the discovery mechanism.", "properties": { "enabled": { "type": "boolean", "default": false }, "discovery-token": { "type": "string" } } }, "socket-options": { "$ref": "#/definitions/ClientSocketOptions" } } }, "SocketInterceptor": { "type": "object", "additionalProperties": false, "properties": { "enabled": { "type": "boolean", "default": false }, "class-name": { "type": "string" }, "properties": { "type": "object" } }, "description": "Lets you add custom hooks to join and perform connection procedures (like a custom authentication protocol, etc.). This feature is available only in Hazelcast Enterprise. To be able to use it, you should first implement the MemberSocketInterceptor (for members joining to a cluster) or SocketInterceptor (for clients connecting to a member) class. Its configuration contains the class you implemented and socket interceptor properties. By default, it is disabled." }, "AutoDetection": { "type": "object", "additionalProperties": false, "properties": { "enabled": { "type": "boolean", "default": "true" } }, "description": "When enabled, it will walk through all available discovery strategies and detect the correct one for the current runtime environment. For example, it will automatically use the hazelcast-aws plugin if run on an AWS instance." }, "SSL": { "type": "object", "additionalProperties": false, "description": "Lets you configure SSL using the SSL context factory. This feature is available only in Hazelcast Enterprise. To be able to use it, encryption should NOT be enabled and you should first implement your SSLContextFactory class. Its configuration contains the factory class and SSL properties. By default, it is disabled.", "properties": { "enabled": { "type": "boolean", "default": false }, "factory-class-name": { "type": "string", "example": "com.hazelcast.nio.ssl.BasicSSLContextFactory" }, "properties": { "type": "object" } } }, "ClientSocketOptions": { "type": "object", "additionalProperties": false, "properties": { "tcp-no-delay": { "description": "Enables/disables the TCP_NODELAY socket option.", "default": true, "type": "boolean" }, "keep-alive": { "type": "boolean", "default": true, "description": "Enables/disables the SO_KEEPALIVE socket option." }, "reuse-address": { "type": "boolean", "default": true, "description": "Enables/disables the SO_REUSEADDR socket option." }, "linger-seconds": { "type": "integer", "default": 3, "minimum": 0, "description": "Enables/disables SO_LINGER with the specified linger time in seconds." }, "buffer-size": { "type": "integer", "default": 128, "minimum": 0, "description": "Sets the SO_SNDBUF and SO_RCVBUF options to the specified value in KB for this Socket." } } }, "IntegrityChecker": { "type": "object", "additionalProperties": false, "properties": { "enabled": { "type": "boolean" } }, "required": [ "enabled" ], "description": "Enables/disables Integrity Checker. Integrity Checker can be disabled to improve startup time." }, "DataConnectionConfig": { "type": "object", "additionalProperties": { "type": "object", "additionalProperties": false, "properties": { "name": { "type": "string", "description": "Name of the data connection configuration." }, "type": { "type": "string", "description": "The type of the DataConnection." }, "shared": { "type": "boolean", "description": "true if an instance of the data connection will be shared. Depending on the implementation of the data connection, the shared instance may be single a thread-safe instance, or not thread-safe, but a pooled instance; false when on each usage a new instance of the underlying resource should be created.The default is true." }, "properties": { "description": "The \"properties\" used for configuring data connection", "type": "object" } } } }, "TpcConfig": { "type": "object", "properties": { "enabled": { "type": "boolean", "description": "Enabled Hazelcast TPC. Disabled by default." }, "eventloop-count": { "type": "integer", "description": "Configures the number of eventloops. It's equal to available processor count by default." } }, "required": [ "enabled" ], "description": "Hazelcast TPC is the next generation of Hazelcast built with thread per core architecture. It's still being developed and everything is subject to change. TPC is disabled by default." }, "TpcSocketConfig": { "type": "object", "properties": { "port-range": { "type": "string", "description": "Configures the port range available for TPC sockets." }, "receive-buffer-size-kb": { "type": "integer", "description": "Configures SO_RCVBUF socket option for TPC sockets." }, "send-buffer-size-kb": { "type": "integer", "description": "Configures SO_SNDBUF socket option for TPC sockets." } }, "description": "Socket configuration for TPC. In TPC, each eventloop has its own sockets." }, "PartitionAttribute": { "type": "object", "additionalProperties": false, "properties": { "name": { "type": "string" } }, "required": [ "name" ] } } }
hazelcast-config-5
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Automation Module Type Definitions", "description": "This schema is used for verification of JSON objects used for creation of Automation Object Templates.", "type": "object", "additionalProperties": false, "properties": { "triggers": { "type": "object", "title": "Trigger Templates", "description": "Container for Trigger Templates used to create the Trigger Modules of the Rule.", "additionalProperties": false, "patternProperties": { "[A-Za-z0-9]+": { "type": "object", "title": "Trigger Module Type", "description": "Definition of the Trigger Module Type.", "additionalProperties": false, "properties": { "visibility": { "enum": [ "public", "private" ], "default": "public" }, "label": { "type": "string", "title": "Trigger Label", "description": "Short(one word) user friendly description of the Trigger Module Type." }, "description": { "type": "string", "title": "Trigger Designation", "description": "A brief description of what the Trigger is and for what it is used." }, "config": { "type": "object", "title": "Trigger Configurations", "description": "Used to configure the Trigger. Contains objects describing Configuration Properties.", "additionalProperties": false, "patternProperties": { "[A-Za-z0-9]+": { "type": "object", "title": "Configuration Property", "description": "Property for configuring Rule or Module.", "additionalProperties": false, "required": [ "type" ], "properties": { "type": { "enum": [ "text", "integer", "decimal", "boolean" ], "title": "Configuration Parameter Type", "description": "Property declaring data type of the Configuration Parameter." }, "label": { "type": "string", "title": "Configuration Parameter Label", "description": "A human understandable label of the Configuration Parameter." }, "description": { "type": "string", "title": "Configuration Parameter Description", "description": "A human understandable description of the Configuration Parameter." }, "required": { "type": "boolean", "default": false, "title": "Required Configuration Parameter", "description": "Specifies whether the value is required." }, "min": { "type": "number", "title": "Configuration Parameter Minimum Allowed Value", "description": "Minimum value of numeric types, minimal length for strings, minimal number selected options." }, "max": { "type": "number", "title": "Configuration Parameter Maximum Allowed Value", "description": "Maximum value of numeric types, maximal length for strings, maximal number selected options." }, "step": { "type": "number", "title": "Configuration Parameter Step", "description": "A constant value for increasing/decreasing numeric types" }, "pattern": { "type": "string", "title": "Configuration Parameter Pattern", "description": "Regular script for subscribing text types." }, "readOnly": { "type": "boolean", "default": false, "title": "Readable Configuration Parameter", "description": "Specifies whether the value is read-only." }, "multiple": { "type": "boolean", "default": false, "title": "Multiple Configuration Parameter", "description": "Specifies whether multiple selections of options are allowed." }, "context": { "type": "string", "title": "Configuration Parameter Context", "description": "Serves to determine how to treat the value of the Configuration Parameter." }, "defaultValue": { "title": "Configuration Parameter Default Value", "description": "Declaring a default value for the Configuration Parameter if missing." }, "value": { "title": "Configuration Parameter Value", "description": "Declaring a value for the Configuration Parameter in case of system context." }, "filterCriteria": { "type": "array", "title": "Configuration Parameter Filter", "description": "Criteria for dynamic selection of values.", "items": { "type": "object", "additionalProperties": false, "required": [ "name", "value" ], "properties": { "name": { "type": "string" }, "value": { "type": "string" } } } }, "options": { "type": "array", "title": "Configuration Parameter Options", "description": "List of definitions of the parameter for static selection.", "items": { "type": "object", "additionalProperties": false, "required": [ "label", "value" ], "properties": { "label": { "type": "string" }, "value": { "type": "string" } } } } } } } }, "output": { "type": "object", "title": "Trigger Output", "description": "Output object of the Trigger used to transfer data to other modules of the Rule.", "additionalProperties": false, "patternProperties": { "[A-Za-z0-9]+": { "type": "object", "title": "Output", "description": "Property for connecting modules.", "additionalProperties": false, "required": [ "type" ], "properties": { "type": { "type": "string", "description": "Fully qualified name of Java class." }, "label": { "type": "string" }, "description": { "type": "string" }, "defaultValue": {}, "reference": { "type": "string" }, "tags": { "type": "array", "minItems": 1, "items": { "type": "string" }, "description": "Shows how to be considered a given value. For example, as a Temperature." } } } } } } } } }, "conditions": { "type": "object", "title": "Condition Templates", "description": "Container for Condition Templates used to create the Condition Modules of the Rule.", "additionalProperties": false, "patternProperties": { "[A-Za-z0-9]+": { "type": "object", "title": "Condition Module Type", "description": "Definition of the Condition Module Type.", "additionalProperties": false, "properties": { "visibility": { "enum": [ "public", "private" ], "default": "public" }, "label": { "type": "string", "title": "Condition Label", "description": "Short(one word) user friendly description of the Condition Module Type." }, "description": { "type": "string", "title": "Condition Designation", "description": "A brief description of what the Condition is and for what it is used." }, "config": { "type": "object", "title": "Condition Configurations", "description": "Used to configure the Condition. Contains objects describing Configuration Properties.", "additionalProperties": false, "patternProperties": { "[A-Za-z0-9]+": { "type": "object", "title": "Configuration Property", "description": "Property for configuring Rule or Module.", "additionalProperties": false, "required": [ "type" ], "properties": { "type": { "enum": [ "text", "integer", "decimal", "boolean" ], "title": "Configuration Parameter Type", "description": "Property declaring data type of the Configuration Parameter." }, "label": { "type": "string", "title": "Configuration Parameter Label", "description": "A human understandable label of the Configuration Parameter." }, "description": { "type": "string", "title": "Configuration Parameter Description", "description": "A human understandable description of the Configuration Parameter." }, "required": { "type": "boolean", "default": false, "title": "Required Configuration Parameter", "description": "Specifies whether the value is required." }, "min": { "type": "number", "title": "Configuration Parameter Minimum Allowed Value", "description": "Minimum value of numeric types, minimal length for strings, minimal number selected options." }, "max": { "type": "number", "title": "Configuration Parameter Maximum Allowed Value", "description": "Maximum value of numeric types, maximal length for strings, maximal number selected options." }, "step": { "type": "number", "title": "Configuration Parameter Step", "description": "A constant value for increasing/decreasing numeric types" }, "pattern": { "type": "string", "title": "Configuration Parameter Pattern", "description": "Regular script for subscribing text types." }, "readOnly": { "type": "boolean", "default": false, "title": "Readable Configuration Parameter", "description": "Specifies whether the value is read-only." }, "multiple": { "type": "boolean", "default": false, "title": "Multiple Configuration Parameter", "description": "Specifies whether multiple selections of options are allowed." }, "context": { "type": "string", "title": "Configuration Parameter Context", "description": "Serves to determine how to treat the value of the Configuration Parameter." }, "defaultValue": { "title": "Configuration Parameter Default Value", "description": "Declaring a defaultValue value for the Configuration Parameter if missing." }, "value": { "title": "Configuration Parameter Value", "description": "Declaring a value for the Configuration Parameter in case of system context." }, "filterCriteria": { "type": "array", "title": "Configuration Parameter Filter", "description": "Criteria for dynamic selection of values.", "items": { "type": "object", "additionalProperties": false, "required": [ "name", "value" ], "properties": { "name": { "type": "string" }, "value": { "type": "string" } } } }, "options": { "type": "array", "title": "Configuration Parameter Options", "description": "List of definitions of the parameter for static selection.", "items": { "type": "object", "additionalProperties": false, "required": [ "label", "value" ], "properties": { "label": { "type": "string" }, "value": { "type": "string" } } } } } } } }, "input": { "type": "object", "title": "Condition Input", "description": "Input object of the Condition used for binding an Output objects of other modules in order to receive data.", "additionalProperties": false, "patternProperties": { "[A-Za-z0-9]+": { "type": "object", "title": "Input", "description": "Property for connecting modules.", "additionalProperties": false, "required": [ "type" ], "properties": { "type": { "type": "string", "description": "Fully qualified name of Java class." }, "label": { "type": "string" }, "defaultValue": {}, "description": { "type": "string" }, "tags": { "type": "array", "minItems": 1, "items": { "type": "string" }, "description": "Shows how to be considered a given value. For example, as a Temperature." } } } } } } } } }, "actions": { "type": "object", "title": "Action Templates", "description": "Container for Action Module Types used to create the Action Modules of the Rule.", "additionalProperties": false, "patternProperties": { "[A-Za-z0-9]+": { "type": "object", "title": "Action Module Type", "description": "Definition of the Action Module Type.", "additionalProperties": false, "properties": { "visibility": { "enum": [ "public", "private" ], "default": "public" }, "label": { "type": "string", "title": "Action Label", "description": "Short(one word) user friendly description of the Action Module Type." }, "description": { "type": "string", "title": "Action Designation", "description": "A brief description of what the Action is and for what it is used." }, "config": { "type": "object", "title": "Action Configurations", "description": "Used to configure the Action. Contains objects describing Configuration Properties.", "additionalProperties": false, "patternProperties": { "[A-Za-z0-9]+": { "type": "object", "title": "Configuration Property", "description": "Property for configuring Module.", "additionalProperties": false, "required": [ "type" ], "properties": { "type": { "enum": [ "text", "integer", "decimal", "boolean" ], "title": "Configuration Parameter Type", "description": "Property declaring data type of the Configuration Parameter." }, "label": { "type": "string", "title": "Configuration Parameter Label", "description": "A human understandable label of the Configuration Parameter." }, "description": { "type": "string", "title": "Configuration Parameter Description", "description": "A human understandable description of the Configuration Parameter." }, "required": { "type": "boolean", "default": false, "title": "Required Configuration Parameter", "description": "Specifies whether the value is required." }, "min": { "type": "number", "title": "Configuration Parameter Minimum Allowed Value", "description": "Minimum value of numeric types, minimal length for strings, minimal number selected options." }, "max": { "type": "number", "title": "Configuration Parameter Maximum Allowed Value", "description": "Maximum value of numeric types, maximal length for strings, maximal number selected options." }, "step": { "type": "number", "title": "Configuration Parameter Step", "description": "A constant value for increasing/decreasing numeric types" }, "pattern": { "type": "string", "title": "Configuration Parameter Pattern", "description": "Regular script for subscribing text types." }, "readOnly": { "type": "boolean", "default": false, "title": "Readable Configuration Parameter", "description": "Specifies whether the value is read-only." }, "multiple": { "type": "boolean", "default": false, "title": "Multiple Configuration Parameter", "description": "Specifies whether multiple selections of options are allowed." }, "context": { "type": "string", "title": "Configuration Parameter Context", "description": "Serves to determine how to treat the value of the Configuration Parameter." }, "defaultValue": { "title": "Configuration Parameter Default Value", "description": "Declaring a defaultValue value for the Configuration Parameter if missing." }, "value": { "title": "Configuration Parameter Value", "description": "Declaring a value for the Configuration Parameter in case of system context." }, "filterCriteria": { "type": "array", "title": "Configuration Parameter Filter", "description": "Criteria for dynamic selection of values.", "items": { "type": "object", "additionalProperties": false, "required": [ "name", "value" ], "properties": { "name": { "type": "string" }, "value": { "type": "string" } } } }, "options": { "type": "array", "title": "Configuration Parameter Options", "description": "List of definitions of the parameter for static selection.", "items": { "type": "object", "additionalProperties": false, "required": [ "label", "value" ], "properties": { "label": { "type": "string" }, "value": { "type": "string" } } } } } } } }, "input": { "type": "object", "title": "Action Input", "description": "Input object of the Action used for binding an Output objects of other modules in order to receive data.", "additionalProperties": false, "patternProperties": { "[A-Za-z0-9]+": { "type": "object", "title": "Input", "description": "Property for connecting modules.", "additionalProperties": false, "required": [ "type" ], "properties": { "type": { "type": "string", "description": "Fully qualified name of Java class." }, "label": { "type": "string" }, "required": { "type": "boolean", "default": false, "title": "Required Input", "description": "Specifies whether the value is required." }, "defaultValue": { "title": "Input Default Value", "description": "Specifies the value if the Input is not required and is missing." }, "description": { "type": "string" }, "tags": { "type": "array", "minItems": 1, "items": { "type": "string" }, "description": "Shows how to be considered a given value. For example, as a Temperature." } } } } }, "output": { "type": "object", "title": "Action Output", "description": "Output object of the Action used to transfer data to other Action Modules of the Rule.", "additionalProperties": false, "patternProperties": { "[A-Za-z0-9]+": { "type": "object", "title": "Output", "description": "Property for connecting modules.", "additionalProperties": false, "required": [ "type" ], "properties": { "type": { "type": "string", "description": "Fully qualified name of Java class." }, "label": { "type": "string" }, "description": { "type": "string" }, "defaultValue": { "title": "Output Default Value", "description": "Specifies the value if the Output is missing." }, "reference": { "type": "string" }, "tags": { "type": "array", "minItems": 1, "items": { "type": "string" }, "description": "Shows how to be considered a given value. For example, as a Temperature." } } } } } } } } }, "composite": { "type": "object", "title": "Composite Module Types", "description": "Contains definitions of the Composite Module Types.", "additionalProperties": false, "patternProperties": { "[A-Za-z0-9]+": { "oneOf": [ { "type": "object", "title": "Composite Trigger Module Type", "description": "Contains definition of the Composite Trigger Module Type.", "additionalProperties": false, "properties": { "visibility": { "enum": [ "public", "private" ], "default": "public" }, "tags": { "type": "array", "title": "Composition Module Type Tags", "description": "Non-hierarchical keywords or terms describing the Composition Module Type. They help to classify the templates and allow them to be found.", "minItems": 1, "items": { "type": "string" } }, "description": { "type": "string", "title": "Composite Module Type Description.", "description": "A brief description of what the Composite is and for what it is used." }, "config": { "type": "object", "additionalProperties": false, "title": "Composition Module Type Configurations", "description": "Used to configure the Composition Module Type. Contains objects describing Configuration Properties.", "patternProperties": { "[A-Za-z0-9]+": { "type": "object", "title": "Configuration Property", "description": "Property for configuring Rule or Module.", "additionalProperties": false, "required": [ "type" ], "properties": { "type": { "enum": [ "text", "integer", "decimal", "boolean" ], "title": "Configuration Parameter Type", "description": "Property declaring data type of the Configuration Parameter." }, "label": { "type": "string", "title": "Configuration Parameter Label", "description": "A human understandable label of the Configuration Parameter." }, "description": { "type": "string", "title": "Configuration Parameter Description", "description": "A human understandable description of the Configuration Parameter." }, "required": { "type": "boolean", "default": false, "title": "Required Configuration Parameter", "description": "Specifies whether the value is required." }, "min": { "type": "number", "title": "Configuration Parameter Minimum Allowed Value", "description": "Minimum value of numeric types, minimal length for strings, minimal number selected options." }, "max": { "type": "number", "title": "Configuration Parameter Maximum Allowed Value", "description": "Maximum value of numeric types, maximal length for strings, maximal number selected options." }, "step": { "type": "number", "title": "Configuration Parameter Step", "description": "A constant value for increasing/decreasing numeric types" }, "pattern": { "type": "string", "title": "Configuration Parameter Pattern", "description": "Regular script for subscribing text types." }, "readOnly": { "type": "boolean", "default": false, "title": "Readable Configuration Parameter", "description": "Specifies whether the value is read-only." }, "multiple": { "type": "boolean", "default": false, "title": "Multiple Configuration Parameter", "description": "Specifies whether multiple selections of options are allowed." }, "context": { "type": "string", "title": "Configuration Parameter Context", "description": "Serves to determine how to treat the value of the Configuration Parameter." }, "defaultValue": { "title": "Configuration Parameter Default Value", "description": "Declaring a defaultValue value for the Configuration Parameter if missing." }, "value": { "title": "Configuration Parameter Value", "description": "Declaring a value for the Configuration Parameter in case of system context." }, "filterCriteria": { "type": "array", "title": "Configuration Parameter Filter", "description": "Criteria for dynamic selection of values.", "items": { "type": "object", "additionalProperties": false, "required": [ "name", "value" ], "properties": { "name": { "type": "string" }, "value": { "type": "string" } } } }, "options": { "type": "array", "title": "Configuration Parameter Options", "description": "List of definitions of the parameter for static selection.", "items": { "type": "object", "additionalProperties": false, "required": [ "label", "value" ], "properties": { "label": { "type": "string" }, "value": { "type": "string" } } } } } } } }, "triggers": { "type": "array", "minItems": 1, "title": "Trigger Modules", "description": "Contains definitions of the Trigger Modules of the Trigger Composition.", "items": { "type": "object", "title": "Trigger Module", "description": "Defines the fact which triggers the Rule execution.", "additionalProperties": false, "properties": { "id": { "type": "string", "title": "Trigger uid", "description": "Identifies uniquely the Module in scope of the Rule." }, "type": { "type": "string", "title": "Trigger Module Type", "description": "Identifies the Module Type used for creation of the Trigger Composition. Must be unique in scope of concrete Rule definition." }, "config": { "type": "object", "title": "Trigger Configurations", "description": "Used to configure the Trigger Composition. Contains pairs of Configuration Property's name and its value." } } } }, "output": { "type": "object", "title": "Trigger Output", "description": "Output object of the Trigger used to transfer data to other modules of the Rule.", "additionalProperties": false, "patternProperties": { "[A-Za-z0-9]+": { "type": "object", "title": "Output", "description": "Property for connecting modules.", "additionalProperties": false, "required": [ "type" ], "properties": { "type": { "type": "string", "description": "Fully qualified name of Java class." }, "label": { "type": "string" }, "description": { "type": "string" }, "defaultValue": {}, "reference": { "type": "string" }, "tags": { "type": "array", "minItems": 1, "items": { "type": "string" }, "description": "Shows how to be considered a given value. For example, as a Temperature." } } } } } } }, { "type": "object", "title": "Composite Action Module Type", "description": "Contains definition of the Composite Action Module Type.", "additionalProperties": false, "properties": { "visibility": { "enum": [ "public", "private" ], "default": "public" }, "tags": { "type": "array", "title": "Composition Module Type Tags", "description": "Non-hierarchical keywords or terms describing the Composition Module Type. They help to classify the templates and allow them to be found.", "minItems": 1, "items": { "type": "string" } }, "description": { "type": "string", "title": "Composite Module Type Description.", "description": "A brief description of what the Composite is and for what it is used." }, "config": { "type": "object", "additionalProperties": false, "title": "Composition Module Type Configurations", "description": "Used to configure the Composition Module Type. Contains objects describing Configuration Properties.", "patternProperties": { "[A-Za-z0-9]+": { "type": "object", "title": "Configuration Property", "description": "Property for configuring Rule or Module.", "additionalProperties": false, "required": [ "type" ], "properties": { "type": { "enum": [ "text", "integer", "decimal", "boolean" ], "title": "Configuration Parameter Type", "description": "Property declaring data type of the Configuration Parameter." }, "label": { "type": "string", "title": "Configuration Parameter Label", "description": "A human understandable label of the Configuration Parameter." }, "description": { "type": "string", "title": "Configuration Parameter Description", "description": "A human understandable description of the Configuration Parameter." }, "required": { "type": "boolean", "default": false, "title": "Required Configuration Parameter", "description": "Specifies whether the value is required." }, "min": { "type": "number", "title": "Configuration Parameter Minimum Allowed Value", "description": "Minimum value of numeric types, minimal length for strings, minimal number selected options." }, "max": { "type": "number", "title": "Configuration Parameter Maximum Allowed Value", "description": "Maximum value of numeric types, maximal length for strings, maximal number selected options." }, "step": { "type": "number", "title": "Configuration Parameter Step", "description": "A constant value for increasing/decreasing numeric types" }, "pattern": { "type": "string", "title": "Configuration Parameter Pattern", "description": "Regular script for subscribing text types." }, "readOnly": { "type": "boolean", "default": false, "title": "Readable Configuration Parameter", "description": "Specifies whether the value is read-only." }, "multiple": { "type": "boolean", "default": false, "title": "Multiple Configuration Parameter", "description": "Specifies whether multiple selections of options are allowed." }, "context": { "type": "string", "title": "Configuration Parameter Context", "description": "Serves to determine how to treat the value of the Configuration Parameter." }, "defaultValue": { "title": "Configuration Parameter Default Value", "description": "Declaring a defaultValue value for the Configuration Parameter if missing." }, "value": { "title": "Configuration Parameter Value", "description": "Declaring a value for the Configuration Parameter in case of system context." }, "filterCriteria": { "type": "array", "title": "Configuration Parameter Filter", "description": "Criteria for dynamic selection of values.", "items": { "type": "object", "additionalProperties": false, "required": [ "name", "value" ], "properties": { "name": { "type": "string" }, "value": { "type": "string" } } } }, "options": { "type": "array", "title": "Configuration Parameter Options", "description": "List of definitions of the parameter for static selection.", "items": { "type": "object", "additionalProperties": false, "required": [ "label", "value" ], "properties": { "label": { "type": "string" }, "value": { "type": "string" } } } } } } } }, "actions": { "type": "array", "minItems": 1, "title": "Action Modules", "description": "Contains definitions of Action Modules of the Action Composition.", "items": { "type": "object", "title": "Action Module", "description": "Defines an action which has to be executed by the Rule.", "additionalProperties": false, "properties": { "id": { "type": "string", "title": "Action Id", "description": "Identifies uniquely the Module in scope of the Rule." }, "type": { "type": "string", "title": "Action Module Type", "description": "Identifies the Module Type used for creation of the Action. Must be unique in scope of concrete Rule definition." }, "config": { "type": "object", "title": "Action Configurations", "description": "Used to configure the Action. Contains pairs of Configuration Property's name and its value." }, "input": { "type": "object", "title": "Action Input", "description": "Contains pairs of Input name and Output reference in format - ModuleID : OutputName." }, "output": { "type": "object", "title": "Action Output", "description": "Contains pairs of Output name and Output reference. The reference defines what part of a complex data has to be used as value of this output." } } } }, "input": { "type": "object", "title": "Action Input", "description": "Input object of the Action used for binding an Output objects of other modules in order to receive data.", "additionalProperties": false, "patternProperties": { "[A-Za-z0-9]+": { "type": "object", "title": "Input", "description": "Property for connecting modules.", "additionalProperties": false, "required": [ "type" ], "properties": { "type": { "type": "string", "description": "Fully qualified name of Java class." }, "label": { "type": "string" }, "required": { "type": "boolean", "default": false, "title": "Required Input", "description": "Specifies whether the value is required." }, "defaultValue": { "title": "Input Default Value", "description": "Specifies the value if the Input is not required and is missing." }, "description": { "type": "string" }, "tags": { "type": "array", "minItems": 1, "items": { "type": "string" }, "description": "Shows how to be considered a given value. For example, as a Temperature." } } } } }, "output": { "type": "object", "title": "Trigger Output", "description": "Output object of the Trigger used to transfer data to other modules of the Rule.", "additionalProperties": false, "patternProperties": { "[A-Za-z0-9]+": { "type": "object", "title": "Output", "description": "Property for connecting modules.", "additionalProperties": false, "required": [ "type" ], "properties": { "type": { "type": "string", "description": "Fully qualified name of Java class." }, "label": { "type": "string" }, "description": { "type": "string" }, "defaultValue": {}, "reference": { "type": "string" }, "tags": { "type": "array", "minItems": 1, "items": { "type": "string" }, "description": "Shows how to be considered a given value. For example, as a Temperature." } } } } } } }, { "type": "object", "title": "Composite Condition Module Type", "description": "Contains definition of the Composite Condition Module Type.", "additionalProperties": false, "properties": { "visibility": { "enum": [ "public", "private" ], "default": "public" }, "tags": { "type": "array", "title": "Composition Module Type Tags", "description": "Non-hierarchical keywords or terms describing the Composition Module Type. They help to classify the templates and allow them to be found.", "minItems": 1, "items": { "type": "string" } }, "description": { "type": "string", "title": "Composite Module Type Description.", "description": "A brief description of what the Composite is and for what it is used." }, "config": { "type": "object", "additionalProperties": false, "title": "Composition Module Type Configurations", "description": "Used to configure the Composition Module Type. Contains objects describing Configuration Properties.", "patternProperties": { "[A-Za-z0-9]+": { "type": "object", "title": "Configuration Property", "description": "Property for configuring Rule or Module.", "additionalProperties": false, "required": [ "type" ], "properties": { "type": { "enum": [ "text", "integer", "decimal", "boolean" ], "title": "Configuration Parameter Type", "description": "Property declaring data type of the Configuration Parameter." }, "label": { "type": "string", "title": "Configuration Parameter Label", "description": "A human understandable label of the Configuration Parameter." }, "description": { "type": "string", "title": "Configuration Parameter Description", "description": "A human understandable description of the Configuration Parameter." }, "required": { "type": "boolean", "default": false, "title": "Required Configuration Parameter", "description": "Specifies whether the value is required." }, "min": { "type": "number", "title": "Configuration Parameter Minimum Allowed Value", "description": "Minimum value of numeric types, minimal length for strings, minimal number selected options." }, "max": { "type": "number", "title": "Configuration Parameter Maximum Allowed Value", "description": "Maximum value of numeric types, maximal length for strings, maximal number selected options." }, "step": { "type": "number", "title": "Configuration Parameter Step", "description": "A constant value for increasing/decreasing numeric types" }, "pattern": { "type": "string", "title": "Configuration Parameter Pattern", "description": "Regular script for subscribing text types." }, "readOnly": { "type": "boolean", "default": false, "title": "Readable Configuration Parameter", "description": "Specifies whether the value is read-only." }, "multiple": { "type": "boolean", "default": false, "title": "Multiple Configuration Parameter", "description": "Specifies whether multiple selections of options are allowed." }, "context": { "type": "string", "title": "Configuration Parameter Context", "description": "Serves to determine how to treat the value of the Configuration Parameter." }, "defaultValue": { "title": "Configuration Parameter Default Value", "description": "Declaring a defaultValue value for the Configuration Parameter if missing." }, "value": { "title": "Configuration Parameter Value", "description": "Declaring a value for the Configuration Parameter in case of system context." }, "filterCriteria": { "type": "array", "title": "Configuration Parameter Filter", "description": "Criteria for dynamic selection of values.", "items": { "type": "object", "additionalProperties": false, "required": [ "name", "value" ], "properties": { "name": { "type": "string" }, "value": { "type": "string" } } } }, "options": { "type": "array", "title": "Configuration Parameter Options", "description": "List of definitions of the parameter for static selection.", "items": { "type": "object", "additionalProperties": false, "required": [ "label", "value" ], "properties": { "label": { "type": "string" }, "value": { "type": "string" } } } } } } } }, "conditions": { "type": "array", "minItems": 0, "title": "Condition Modules", "description": "Contains definitions of Condition Modules of the Condition Composite.", "items": { "type": "object", "title": "Condition Module", "description": "Defines the condition which permit to proceed with the Rule execution.", "additionalProperties": false, "properties": { "id": { "type": "string", "title": "Condition Id", "description": "Identifies uniquely the Module in scope of the Rule." }, "type": { "type": "string", "title": "Condition Module Type", "description": "Identifies the Module Type used for creation of the Condition. Must be unique in scope of concrete Rule definition." }, "config": { "type": "object", "title": "Condition Configurations", "description": "Used to configure the Condition. Contains pairs of Configuration Property's name and its value." }, "input": { "type": "object", "title": "Condition Input", "description": "Contains pairs of Input name and Output reference in format - ModuleID : OutputName." } } } }, "input": { "type": "object", "title": "Action Input", "description": "Input object of the Action used for binding an Output objects of other modules in order to receive data.", "additionalProperties": false, "patternProperties": { "[A-Za-z0-9]+": { "type": "object", "title": "Input", "description": "Property for connecting modules.", "additionalProperties": false, "required": [ "type" ], "properties": { "type": { "type": "string", "description": "Fully qualified name of Java class." }, "label": { "type": "string" }, "required": { "type": "boolean", "default": false, "title": "Required Input", "description": "Specifies whether the value is required." }, "defaultValue": { "title": "Input Default Value", "description": "Specifies the value if the Input is not required and is missing." }, "description": { "type": "string" }, "tags": { "type": "array", "minItems": 1, "items": { "type": "string" }, "description": "Shows how to be considered a given value. For example, as a Temperature." } } } } } } } ] } } } } }
o90420
{ "definitions": { "signup": { "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "confirm": { "description": "New user's password confirmation. Should match `password` field", "readOnly": true, "type": [ "string" ] }, "email": { "description": "New user's email", "format": "email", "readOnly": true, "type": [ "string" ] }, "password": { "description": "New user's password", "readOnly": true, "type": [ "string" ] } }, "description": "Resource representing new user to be created", "links": [ { "description": "Create new user", "href": "/signup", "method": "POST", "rel": "create", "schema": { "properties": { "confirm": { "$ref": "#/definitions/signup/definitions/confirm" }, "email": { "$ref": "#/definitions/signup/definitions/email" }, "password": { "$ref": "#/definitions/signup/definitions/password" } }, "required": [ "email", "password", "confirm" ], "type": [ "object" ] } } ], "properties": {}, "stability": "prototype", "strictProperties": true, "title": "Sign up", "type": [ "object" ] } }, "description": "Generic purpose collection of schemas for mtodo application RESTful APIs", "links": [ { "href": "http://mtodoapp.com/api", "rel": "self" } ], "properties": { "signup": { "$ref": "#/definitions/signup" } }, "title": "mtodo application API", "type": [ "object" ] }
o62073
{ "$schema": "http://json-schema.org/draft-04/schema", "title": "This document describes the structure of fetching engines request output", "description": "Fetch engines output is list of possible used engines", "type": "array", "items": { "$ref": "#/definitions/result" }, "definitions": { "result": { "type": "object", "description": "Founded engine", "properties": { "name": { "type": "string", "description": "The engine name" }, "found": { "type": "string", "description": "The way how engine founded", "enum": [ "sourceExtension", "engineConfig", "projectConfig" ] } }, "required": [ "name", "found" ] } } }
o69961
{ "properties": { "client_name": { "description": "The name of the client", "type": "string" }, "items": { "items": { "properties": { "name": { "description": "The name of the item", "type": "string" }, "price": { "description": "The price of the item", "type": "number" }, "quantity": { "description": "The quantity of the item", "type": "integer" } }, "required": [ "name", "quantity", "price" ], "type": "object" }, "type": "array" } }, "required": [ "client_name", "items" ], "type": "object" }
generate_invoice_a4231107
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the triangle (if shape is triangle)", "type": "number" }, "height": { "description": "The height of the triangle (if shape is triangle)", "type": "number" }, "radius": { "description": "The radius of the circle (if shape is circle)", "type": "number" }, "side": { "description": "The side length of the square (if shape is square)", "type": "number" } }, "type": "object" }, "shape": { "description": "The type of the shape, e.g. circle, triangle, square", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_28bfbf6c
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "schema for index of machine-readable issuer JSON URLs", "id": "http://www.healthcare.gov/schemas/v1/issuer-index#", "properties": { "formulary_urls": { "items": { "_format": "uri", "type": "string" }, "type": "array" }, "plan_urls": { "items": { "_format": "uri", "type": "string" }, "minItems": 1, "type": "array" }, "provider_urls": { "items": { "_format": "uri", "type": "string" }, "minItems": 1, "type": "array" } }, "required": [ "provider_urls", "formulary_urls", "plan_urls" ], "type": "object" }
o2965
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Item", "description": "PayPal item json schema", "type": "object", "properties": { "quantity": { "description": "Number of a particular item. 10 characters max.", "type": "string", "maxLength": 10 }, "name": { "description": "Item name. 127 characters max.", "type": "string", "maxLength": 127 }, "price": { "description": "Item cost. 10 characters max.", "type": "string", "maxLength": 10 }, "currency": { "description": "3-letter currency code.", "type": "string", "maxLength": 3 }, "sku": { "description": "Stock keeping unit corresponding (SKU) to item. 50 characters max.", "type": "string", "maxLength": 50 }, "description": { "type": "string", "maxLength": 127 }, "tax": { "type": "string" } }, "required": [ "quantity", "name", "price", "currency" ] }
o65965
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "An industry code from a standard code list (e.g. NAICS 2007 or NACE 2). This schema is a sub-schema of Classification.", "type": "object", "properties": { "name": { "type": "string" }, "code": { "type": "string" }, "code_scheme_id": { "type": "string", "description": "An identifier representing industry code scheme. At the moment these are eu_nace_2, uk_sic_2003, uk_sic_2007, us_naics_2002, us_naics_2007, be_nace_2008, dk_db_2007, nz_bic_2006, no_sic_2007, anz_sic_2006, nz_bic_2006, in_nic_2004_mca, ca_qc_cae, lu_nace_2. For other code schemes, or details of these, contact [email protected]" }, "start_date": { "type": "string", "format": "date" }, "end_date": { "type": "string", "format": "date" } }, "required": [ "code", "code_scheme_id" ] }
o65454
{ "properties": { "address": { "description": "Agent physical address", "type": "string" }, "agentId": { "description": "Id referencing agent", "type": "integer" }, "avatar": { "description": "Agent avatar image link", "faker": "internet.avatar", "format": "uri", "type": "string" }, "description": { "description": "Agent biography", "type": "string" }, "email": { "description": "Agent email address", "format": "email", "type": "string" }, "id": { "description": "Id referencing profile", "type": "integer" }, "name": { "description": "An agent name", "faker": "name.findName", "type": "string" }, "phone": { "description": "Agent phone number", "type": "string" }, "website": { "description": "Agent website link", "format": "uri", "type": "string" } }, "required": [ "id", "agentId" ], "title": "Profile", "type": "object" }
o71342
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "build-info", "description": "build-info", "type": "object", "properties": { "properties": { "type": "object", "description": "Environment variables and properties collected from the CI server", "patternProperties": { "^.+$": { "type": "string" } } }, "version": { "description": "Build info schema version", "type": "string" }, "name": { "description": "Build name", "type": "string" }, "number": { "description": "Build number", "type": "string" }, "type": { "description": "Build type", "type": "string" }, "buildAgent": { "description": "Build tool information", "type": "object", "properties": { "name": { "description": "Build tool type", "type": "string" }, "version": { "description": "Build tool version", "type": "string" } } }, "agent": { "description": "CI server information", "type": "object", "properties": { "name": { "description": "CI server type", "type": "string" }, "version": { "description": "CI server version", "type": "string" } } }, "started": { "description": "Build start time", "type": "string", "pattern": "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}.\\d{3}(Z|[+-]\\d{4})$" }, "durationMillis": { "description": "Build duration in milliseconds", "type": "integer" }, "principal": { "description": "", "type": "string" }, "url": { "description": "CI server URL", "type": "string" }, "vcs": { "description": "List of VCS used for the build", "type": "array", "items": { "url": { "description": "VCS URL", "type": "string" }, "branch": { "description": "Branch", "type": "string" }, "revision": { "description": "Last commit hash", "type": "string" }, "message": { "description": "Last commit message", "type": "string" } } } }, "modules": { "description": "Build-info modules", "type": "array", "items": { "type": "object", "properties": { "properties": { "description": "Module properties", "type": "object", "patternProperties": { "^.+$": { "type": "string" } } }, "id": { "description": "Module ID", "type": "string" }, "type": { "description": "Module type", "type": "string" }, "artifacts": { "description": "List of module artifacts", "type": "array", "items": { "type": "object", "properties": { "type": { "type": "string" }, "name": { "type": "string" }, "path": { "type": "string" }, "sha256": { "type": "string" }, "sha1": { "type": "string" }, "md5": { "type": "string" } } } }, "dependencies": { "description": "List of module dependencies", "type": "array", "items": { "type": "object", "properties": { "type": { "type": "string" }, "id": { "type": "string" }, "sha256": { "type": "string" }, "sha1": { "type": "string" }, "md5": { "type": "string" }, "scopes": { "type": "array", "items": { "type": "string" } }, "requestedBy": { "description": "List of ancestor dependencies, which caused this dependency to be imported into the build", "type": "array", "items": { "description": "List of ancestor dependencies, which caused this dependency to be imported into the build. The first item in the list is the direct ancestor", "type": "array", "items": { "description": "Dependency ID", "type": "string" } } } } } } } } }, "issues": { "description": "List of issues related to the build", "type": "object", "properties": { "tracker": { "type": "object", "properties": { "name": { "type": "string" }, "version": { "type": "string" } }, "required": ["name", "version"], "additionalProperties": false }, "aggregateBuildIssues": { "description": "Whether issues have appeared in previous builds", "type": "boolean" }, "aggregationBuildStatus": { "type": "string" }, "affectedIssues": { "type": "array", "items": { "type": "object", "properties": { "key": { "type": "string" }, "url": { "type": "string" }, "summary": { "type": "string" }, "aggregated": { "description": "Whether this specific issue already appeared in previous builds", "type": "boolean" } } } } } } }
buildinfo-schema
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "format": { "type": "string", "enum": [ "grid-1.0.0" ] }, "layers": { "type": "array", "items": { "anyOf": [ { "type": "null" }, { "type": "object", "properties": { "spriteId": { "type": "integer" }, "targetX": { "type": "integer" }, "targetY": { "type": "integer" } }, "additionalProperties": false, "required": [ "spriteId" ] } ] } } }, "additionalProperties": false, "required": [ "format", "layers" ] }
o9971
{ "properties": { "capdroppkt": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "capsslkeys": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "doruntimecleanup": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "fileid": { "type": "string" }, "filename": { "type": "string" }, "filesize": { "type": "integer" }, "filter": { "type": "string" }, "inmemorytrace": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "link": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "merge": { "enum": [ "ONSTOP", "ONTHEFLY", "NOMERGE" ], "type": "string" }, "mode": { "enum": [ "TX", "TXB", "RX", "IPV6", "NEW_RX", "C2C", "NS_FR_TX", "APPFW", "MPTCP", "PolicyBased" ], "type": "object" }, "nf": { "type": "integer" }, "nodeid": { "type": "integer" }, "nodes": { "type": "object" }, "pernic": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "scope": { "enum": [ "CLUSTER", "LOCAL" ], "readonly": true, "type": "string" }, "size": { "type": "integer" }, "skiplocalssh": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "skiprpc": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "state": { "enum": [ "RUNNING", "STOPPED" ], "readonly": true, "type": "string" }, "time": { "type": "integer" }, "tracebuffers": { "type": "integer" }, "traceformat": { "enum": [ "NSCAP", "PCAP" ], "type": "string" }, "tracelocation": { "readonly": true, "type": "string" } }, "title": "nstrace", "type": "object" }
o30213
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "address": { "type": "object", "properties": { "street_address": { "type": "string" } } } }, "type": "object", "properties": { "billing_address": { "$ref": "#/definitions/address" }, "shipping_address": { "allOf": [ { "$ref": "#/definitions/address" }, { "properties": { "type": { "enum": [ "residential", "business" ] } } } ] } } }
o12649
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource": { "description": "Represents a Persistent Disk resource in AWS.\n\nAn AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "string" }, "partition": { "_format": "int32", "description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty).", "type": "integer" }, "readOnly": { "description": "Specify \"true\" to force and set the ReadOnly property in VolumeMounts to \"true\". If omitted, the default is \"false\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "boolean" }, "volumeID": { "description": "Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "string" } }, "required": [ "volumeID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Affinity": { "description": "Affinity is a group of affinity scheduling rules.", "properties": { "nodeAffinity": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeAffinity", "description": "Describes node affinity scheduling rules for the pod." }, "podAffinity": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinity", "description": "Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s))." }, "podAntiAffinity": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAntiAffinity", "description": "Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s))." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureDiskVolumeSource": { "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.", "properties": { "cachingMode": { "description": "Host Caching mode: None, Read Only, Read Write.", "type": "string" }, "diskName": { "description": "The Name of the data disk in the blob storage", "type": "string" }, "diskURI": { "description": "The URI the data disk in the blob storage", "type": "string" }, "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "kind": { "description": "Expected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" } }, "required": [ "diskName", "diskURI" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureFileVolumeSource": { "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.", "properties": { "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretName": { "description": "the name of secret that contains Azure Storage Account Name and Key", "type": "string" }, "shareName": { "description": "Share Name", "type": "string" } }, "required": [ "secretName", "shareName" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIVolumeSource": { "description": "Represents a source location of a volume to mount, managed by an external CSI driver", "properties": { "driver": { "description": "Driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster.", "type": "string" }, "fsType": { "description": "Filesystem type to mount. Ex. \"ext4\", \"xfs\", \"ntfs\". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply.", "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secret references are passed." }, "readOnly": { "description": "Specifies a read-only configuration for the volume. Defaults to false (read/write).", "type": "boolean" }, "volumeAttributes": { "additionalProperties": { "type": "string" }, "description": "VolumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values.", "type": "object" } }, "required": [ "driver" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Capabilities": { "description": "Adds and removes POSIX capabilities from running containers.", "properties": { "add": { "description": "Added capabilities", "items": { "type": "string" }, "type": "array" }, "drop": { "description": "Removed capabilities", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSVolumeSource": { "description": "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.", "properties": { "monitors": { "description": "Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "items": { "type": "string" }, "type": "array" }, "path": { "description": "Optional: Used as the mounted root, rather than the full Ceph tree, default is /", "type": "string" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "boolean" }, "secretFile": { "description": "Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "string" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it" }, "user": { "description": "Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "string" } }, "required": [ "monitors" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CinderVolumeSource": { "description": "Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "string" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "Optional: points to a secret object containing parameters used to connect to OpenStack." }, "volumeID": { "description": "volume id used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "string" } }, "required": [ "volumeID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapEnvSource": { "description": "ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.\n\nThe contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables.", "properties": { "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the ConfigMap must be defined", "type": "boolean" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapKeySelector": { "description": "Selects a key from a ConfigMap.", "properties": { "key": { "description": "The key to select.", "type": "string" }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the ConfigMap or its key must be defined", "type": "boolean" } }, "required": [ "key" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapProjection": { "description": "Adapts a ConfigMap into a projected volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode.", "properties": { "items": { "description": "If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath" }, "type": "array" }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the ConfigMap or its keys must be defined", "type": "boolean" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapVolumeSource": { "description": "Adapts a ConfigMap into a volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling.", "properties": { "defaultMode": { "_format": "int32", "description": "Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "items": { "description": "If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath" }, "type": "array" }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the ConfigMap or its keys must be defined", "type": "boolean" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Container": { "description": "A single application container that you want to run within a pod.", "properties": { "args": { "description": "Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", "items": { "type": "string" }, "type": "array" }, "command": { "description": "Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", "items": { "type": "string" }, "type": "array" }, "env": { "description": "List of environment variables to set in the container. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "envFrom": { "description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource" }, "type": "array" }, "image": { "description": "Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.", "type": "string" }, "imagePullPolicy": { "description": "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images", "type": "string" }, "lifecycle": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle", "description": "Actions that the management system should take in response to container lifecycle events. Cannot be updated." }, "livenessProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" }, "name": { "description": "Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.", "type": "string" }, "ports": { "description": "List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \"0.0.0.0\" address inside a container will be accessible from the network. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort" }, "type": "array", "x-kubernetes-list-map-keys": [ "containerPort", "protocol" ], "x-kubernetes-list-type": "map", "x-kubernetes-patch-merge-key": "containerPort", "x-kubernetes-patch-strategy": "merge" }, "readinessProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" }, "resources": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements", "description": "Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/" }, "securityContext": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext", "description": "Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/" }, "startupProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. This is a beta feature enabled by the StartupProbe feature flag. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" }, "stdin": { "description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.", "type": "boolean" }, "stdinOnce": { "description": "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false", "type": "boolean" }, "terminationMessagePath": { "description": "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.", "type": "string" }, "terminationMessagePolicy": { "description": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.", "type": "string" }, "tty": { "description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.", "type": "boolean" }, "volumeDevices": { "description": "volumeDevices is the list of block devices to be used by the container.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice" }, "type": "array", "x-kubernetes-patch-merge-key": "devicePath", "x-kubernetes-patch-strategy": "merge" }, "volumeMounts": { "description": "Pod volumes to mount into the container's filesystem. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount" }, "type": "array", "x-kubernetes-patch-merge-key": "mountPath", "x-kubernetes-patch-strategy": "merge" }, "workingDir": { "description": "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.", "type": "string" } }, "required": [ "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort": { "description": "ContainerPort represents a network port in a single container.", "properties": { "containerPort": { "_format": "int32", "description": "Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.", "type": "integer" }, "hostIP": { "description": "What host IP to bind the external port to.", "type": "string" }, "hostPort": { "_format": "int32", "description": "Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.", "type": "integer" }, "name": { "description": "If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.", "type": "string" }, "protocol": { "description": "Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \"TCP\".", "type": "string" } }, "required": [ "containerPort" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIProjection": { "description": "Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.", "properties": { "items": { "description": "Items is a list of DownwardAPIVolume file", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile": { "description": "DownwardAPIVolumeFile represents information to create the file containing the pod field", "properties": { "fieldRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector", "description": "Required: Selects a field of the pod: only annotations, labels, name and namespace are supported." }, "mode": { "_format": "int32", "description": "Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "path": { "description": "Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'", "type": "string" }, "resourceFieldRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector", "description": "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported." } }, "required": [ "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeSource": { "description": "DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.", "properties": { "defaultMode": { "_format": "int32", "description": "Optional: mode bits to use on created files by default. Must be a Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "items": { "description": "Items is a list of downward API volume file", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeFile" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EmptyDirVolumeSource": { "description": "Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.", "properties": { "medium": { "description": "What type of storage medium should back this directory. The default is \"\" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir", "type": "string" }, "sizeLimit": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "Total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource": { "description": "EnvFromSource represents the source of a set of ConfigMaps", "properties": { "configMapRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapEnvSource", "description": "The ConfigMap to select from" }, "prefix": { "description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.", "type": "string" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretEnvSource", "description": "The Secret to select from" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar": { "description": "EnvVar represents an environment variable present in a Container.", "properties": { "name": { "description": "Name of the environment variable. Must be a C_IDENTIFIER.", "type": "string" }, "value": { "description": "Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \"\".", "type": "string" }, "valueFrom": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVarSource", "description": "Source for the environment variable's value. Cannot be used if value is not empty." } }, "required": [ "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVarSource": { "description": "EnvVarSource represents a source for the value of an EnvVar.", "properties": { "configMapKeyRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapKeySelector", "description": "Selects a key of a ConfigMap." }, "fieldRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector", "description": "Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs." }, "resourceFieldRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector", "description": "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported." }, "secretKeyRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretKeySelector", "description": "Selects a key of a secret in the pod's namespace" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EphemeralContainer": { "description": "An EphemeralContainer is a container that may be added temporarily to an existing pod for user-initiated activities such as debugging. Ephemeral containers have no resource or scheduling guarantees, and they will not be restarted when they exit or when a pod is removed or restarted. If an ephemeral container causes a pod to exceed its resource allocation, the pod may be evicted. Ephemeral containers may not be added by directly updating the pod spec. They must be added via the pod's ephemeralcontainers subresource, and they will appear in the pod spec once added. This is an alpha feature enabled by the EphemeralContainers feature flag.", "properties": { "args": { "description": "Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", "items": { "type": "string" }, "type": "array" }, "command": { "description": "Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", "items": { "type": "string" }, "type": "array" }, "env": { "description": "List of environment variables to set in the container. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvVar" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "envFrom": { "description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EnvFromSource" }, "type": "array" }, "image": { "description": "Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images", "type": "string" }, "imagePullPolicy": { "description": "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images", "type": "string" }, "lifecycle": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle", "description": "Lifecycle is not allowed for ephemeral containers." }, "livenessProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "Probes are not allowed for ephemeral containers." }, "name": { "description": "Name of the ephemeral container specified as a DNS_LABEL. This name must be unique among all containers, init containers and ephemeral containers.", "type": "string" }, "ports": { "description": "Ports are not allowed for ephemeral containers.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ContainerPort" }, "type": "array" }, "readinessProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "Probes are not allowed for ephemeral containers." }, "resources": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements", "description": "Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod." }, "securityContext": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext", "description": "SecurityContext is not allowed for ephemeral containers." }, "startupProbe": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe", "description": "Probes are not allowed for ephemeral containers." }, "stdin": { "description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.", "type": "boolean" }, "stdinOnce": { "description": "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false", "type": "boolean" }, "targetContainerName": { "description": "If set, the name of the container from PodSpec that this ephemeral container targets. The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container. If not set then the ephemeral container is run in whatever namespaces are shared for the pod. Note that the container runtime must support this feature.", "type": "string" }, "terminationMessagePath": { "description": "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.", "type": "string" }, "terminationMessagePolicy": { "description": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.", "type": "string" }, "tty": { "description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.", "type": "boolean" }, "volumeDevices": { "description": "volumeDevices is the list of block devices to be used by the container.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice" }, "type": "array", "x-kubernetes-patch-merge-key": "devicePath", "x-kubernetes-patch-strategy": "merge" }, "volumeMounts": { "description": "Pod volumes to mount into the container's filesystem. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount" }, "type": "array", "x-kubernetes-patch-merge-key": "mountPath", "x-kubernetes-patch-strategy": "merge" }, "workingDir": { "description": "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.", "type": "string" } }, "required": [ "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction": { "description": "ExecAction describes a \"run in container\" action.", "properties": { "command": { "description": "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FCVolumeSource": { "description": "Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "lun": { "_format": "int32", "description": "Optional: FC target lun number", "type": "integer" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "targetWWNs": { "description": "Optional: FC target worldwide names (WWNs)", "items": { "type": "string" }, "type": "array" }, "wwids": { "description": "Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlexVolumeSource": { "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.", "properties": { "driver": { "description": "Driver is the name of the driver to use for this volume.", "type": "string" }, "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.", "type": "string" }, "options": { "additionalProperties": { "type": "string" }, "description": "Optional: Extra command options if any.", "type": "object" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts." } }, "required": [ "driver" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlockerVolumeSource": { "description": "Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.", "properties": { "datasetName": { "description": "Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated", "type": "string" }, "datasetUUID": { "description": "UUID of the dataset. This is unique identifier of a Flocker dataset", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GCEPersistentDiskVolumeSource": { "description": "Represents a Persistent Disk resource in Google Compute Engine.\n\nA GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "string" }, "partition": { "_format": "int32", "description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "integer" }, "pdName": { "description": "Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "boolean" } }, "required": [ "pdName" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GitRepoVolumeSource": { "description": "Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling.\n\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.", "properties": { "directory": { "description": "Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.", "type": "string" }, "repository": { "description": "Repository URL", "type": "string" }, "revision": { "description": "Commit hash for the specified revision.", "type": "string" } }, "required": [ "repository" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsVolumeSource": { "description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.", "properties": { "endpoints": { "description": "EndpointsName is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "string" }, "path": { "description": "Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "boolean" } }, "required": [ "endpoints", "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPGetAction": { "description": "HTTPGetAction describes an action based on HTTP Get requests.", "properties": { "host": { "description": "Host name to connect to, defaults to the pod IP. You probably want to set \"Host\" in httpHeaders instead.", "type": "string" }, "httpHeaders": { "description": "Custom headers to set in the request. HTTP allows repeated headers.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPHeader" }, "type": "array" }, "path": { "description": "Path to access on the HTTP server.", "type": "string" }, "port": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString", "description": "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." }, "scheme": { "description": "Scheme to use for connecting to the host. Defaults to HTTP.", "type": "string" } }, "required": [ "port" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPHeader": { "description": "HTTPHeader describes a custom header to be used in HTTP probes", "properties": { "name": { "description": "The header field name", "type": "string" }, "value": { "description": "The header field value", "type": "string" } }, "required": [ "name", "value" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler": { "description": "Handler defines a specific action that should be taken", "properties": { "exec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction", "description": "One and only one of the following should be specified. Exec specifies the action to take." }, "httpGet": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPGetAction", "description": "HTTPGet specifies the http request to perform." }, "tcpSocket": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction", "description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostAlias": { "description": "HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.", "properties": { "hostnames": { "description": "Hostnames for the above IP address.", "items": { "type": "string" }, "type": "array" }, "ip": { "description": "IP address of the host file entry.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostPathVolumeSource": { "description": "Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.", "properties": { "path": { "description": "Path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", "type": "string" }, "type": { "description": "Type for HostPath Volume Defaults to \"\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", "type": "string" } }, "required": [ "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ISCSIVolumeSource": { "description": "Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.", "properties": { "chapAuthDiscovery": { "description": "whether support iSCSI Discovery CHAP authentication", "type": "boolean" }, "chapAuthSession": { "description": "whether support iSCSI Session CHAP authentication", "type": "boolean" }, "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi", "type": "string" }, "initiatorName": { "description": "Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection.", "type": "string" }, "iqn": { "description": "Target iSCSI Qualified Name.", "type": "string" }, "iscsiInterface": { "description": "iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).", "type": "string" }, "lun": { "_format": "int32", "description": "iSCSI Target Lun number.", "type": "integer" }, "portals": { "description": "iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).", "items": { "type": "string" }, "type": "array" }, "readOnly": { "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "CHAP Secret for iSCSI target and initiator authentication" }, "targetPortal": { "description": "iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).", "type": "string" } }, "required": [ "targetPortal", "iqn", "lun" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath": { "description": "Maps a string key to a path within a volume.", "properties": { "key": { "description": "The key to project.", "type": "string" }, "mode": { "_format": "int32", "description": "Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "path": { "description": "The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.", "type": "string" } }, "required": [ "key", "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Lifecycle": { "description": "Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.", "properties": { "postStart": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler", "description": "PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks" }, "preStop": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Handler", "description": "PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The reason for termination is passed to the handler. The Pod's termination grace period countdown begins before the PreStop hooked is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period. Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference": { "description": "LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.", "properties": { "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NFSVolumeSource": { "description": "Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.", "properties": { "path": { "description": "Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", "type": "boolean" }, "server": { "description": "Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", "type": "string" } }, "required": [ "server", "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeAffinity": { "description": "Node affinity is a group of node affinity scheduling rules.", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PreferredSchedulingTerm" }, "type": "array" }, "requiredDuringSchedulingIgnoredDuringExecution": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector", "description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector": { "description": "A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.", "properties": { "nodeSelectorTerms": { "description": "Required. A list of node selector terms. The terms are ORed.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm" }, "type": "array" } }, "required": [ "nodeSelectorTerms" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement": { "description": "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", "properties": { "key": { "description": "The label key that the selector applies to.", "type": "string" }, "operator": { "description": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.", "type": "string" }, "values": { "description": "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. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.", "items": { "type": "string" }, "type": "array" } }, "required": [ "key", "operator" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm": { "description": "A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.", "properties": { "matchExpressions": { "description": "A list of node selector requirements by node's labels.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement" }, "type": "array" }, "matchFields": { "description": "A list of node selector requirements by node's fields.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectFieldSelector": { "description": "ObjectFieldSelector selects an APIVersioned field of an object.", "properties": { "apiVersion": { "description": "Version of the schema the FieldPath is written in terms of, defaults to \"v1\".", "type": "string" }, "fieldPath": { "description": "Path of the field to select in the specified API version.", "type": "string" } }, "required": [ "fieldPath" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeClaimVolumeSource": { "description": "PersistentVolumeClaimVolumeSource references the user's PVC in the same namespace. This volume finds the bound PV and mounts that volume for the pod. A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system).", "properties": { "claimName": { "description": "ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims", "type": "string" }, "readOnly": { "description": "Will force the ReadOnly setting in VolumeMounts. Default false.", "type": "boolean" } }, "required": [ "claimName" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource": { "description": "Represents a Photon Controller persistent disk resource.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "pdID": { "description": "ID that identifies Photon Controller persistent disk", "type": "string" } }, "required": [ "pdID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinity": { "description": "Pod affinity is a group of inter pod affinity scheduling rules.", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm" }, "type": "array" }, "requiredDuringSchedulingIgnoredDuringExecution": { "description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm": { "description": "Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> matches that of any node on which a pod of the set of pods is running", "properties": { "labelSelector": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "A label query over a set of resources, in this case pods." }, "namespaces": { "description": "namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means \"this pod's namespace\"", "items": { "type": "string" }, "type": "array" }, "topologyKey": { "description": "This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.", "type": "string" } }, "required": [ "topologyKey" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAntiAffinity": { "description": "Pod anti affinity is a group of inter pod anti affinity scheduling rules.", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "description": "The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm" }, "type": "array" }, "requiredDuringSchedulingIgnoredDuringExecution": { "description": "If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfig": { "description": "PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.", "properties": { "nameservers": { "description": "A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed.", "items": { "type": "string" }, "type": "array" }, "options": { "description": "A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfigOption" }, "type": "array" }, "searches": { "description": "A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed.", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfigOption": { "description": "PodDNSConfigOption defines DNS resolver options of a pod.", "properties": { "name": { "description": "Required.", "type": "string" }, "value": { "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodReadinessGate": { "description": "PodReadinessGate contains the reference to a pod condition", "properties": { "conditionType": { "description": "ConditionType refers to a condition in the pod's condition list with matching type.", "type": "string" } }, "required": [ "conditionType" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSecurityContext": { "description": "PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.", "properties": { "fsGroup": { "_format": "int64", "description": "A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:\n\n1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw----\n\nIf unset, the Kubelet will not modify the ownership and permissions of any volume.", "type": "integer" }, "fsGroupChangePolicy": { "description": "fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are \"OnRootMismatch\" and \"Always\". If not specified defaults to \"Always\".", "type": "string" }, "runAsGroup": { "_format": "int64", "description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.", "type": "integer" }, "runAsNonRoot": { "description": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "boolean" }, "runAsUser": { "_format": "int64", "description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.", "type": "integer" }, "seLinuxOptions": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions", "description": "The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container." }, "supplementalGroups": { "description": "A list of groups applied to the first process run in each container, in addition to the container's primary GID. If unspecified, no groups will be added to any container.", "items": { "_format": "int64", "type": "integer" }, "type": "array" }, "sysctls": { "description": "Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Sysctl" }, "type": "array" }, "windowsOptions": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions", "description": "The Windows specific settings applied to all containers. If unspecified, the options within a container's SecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSpec": { "description": "PodSpec is a description of a pod.", "properties": { "activeDeadlineSeconds": { "_format": "int64", "description": "Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.", "type": "integer" }, "affinity": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Affinity", "description": "If specified, the pod's scheduling constraints" }, "automountServiceAccountToken": { "description": "AutomountServiceAccountToken indicates whether a service account token should be automatically mounted.", "type": "boolean" }, "containers": { "description": "List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Container" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "dnsConfig": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodDNSConfig", "description": "Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy." }, "dnsPolicy": { "description": "Set DNS policy for the pod. Defaults to \"ClusterFirst\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'.", "type": "string" }, "enableServiceLinks": { "description": "EnableServiceLinks indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links. Optional: Defaults to true.", "type": "boolean" }, "ephemeralContainers": { "description": "List of ephemeral containers run in this pod. Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging. This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec. In order to add an ephemeral container to an existing pod, use the pod's ephemeralcontainers subresource. This field is alpha-level and is only honored by servers that enable the EphemeralContainers feature.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EphemeralContainer" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "hostAliases": { "description": "HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostAlias" }, "type": "array", "x-kubernetes-patch-merge-key": "ip", "x-kubernetes-patch-strategy": "merge" }, "hostIPC": { "description": "Use the host's ipc namespace. Optional: Default to false.", "type": "boolean" }, "hostNetwork": { "description": "Host networking requested for this pod. Use the host's network namespace. If this option is set, the ports that will be used must be specified. Default to false.", "type": "boolean" }, "hostPID": { "description": "Use the host's pid namespace. Optional: Default to false.", "type": "boolean" }, "hostname": { "description": "Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.", "type": "string" }, "imagePullSecrets": { "description": "ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "initContainers": { "description": "List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Container" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "nodeName": { "description": "NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.", "type": "string" }, "nodeSelector": { "additionalProperties": { "type": "string" }, "description": "NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/", "type": "object" }, "overhead": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. This field will be autopopulated at admission time by the RuntimeClass admission controller. If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests. The RuntimeClass admission controller will reject Pod create requests which have the overhead already set. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero. More info: https://git.k8s.io/enhancements/keps/sig-node/20190226-pod-overhead.md This field is alpha-level as of Kubernetes v1.16, and is only honored by servers that enable the PodOverhead feature.", "type": "object" }, "preemptionPolicy": { "description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is alpha-level and is only honored by servers that enable the NonPreemptingPriority feature.", "type": "string" }, "priority": { "_format": "int32", "description": "The priority value. Various system components use this field to find the priority of the pod. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority.", "type": "integer" }, "priorityClassName": { "description": "If specified, indicates the pod's priority. \"system-node-critical\" and \"system-cluster-critical\" are two special keywords which indicate the highest priorities with the former being the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default.", "type": "string" }, "readinessGates": { "description": "If specified, all readiness gates will be evaluated for pod readiness. A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to \"True\" More info: https://git.k8s.io/enhancements/keps/sig-network/0007-pod-ready%2B%2B.md", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodReadinessGate" }, "type": "array" }, "restartPolicy": { "description": "Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy", "type": "string" }, "runtimeClassName": { "description": "RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used to run this pod. If no RuntimeClass resource matches the named class, the pod will not be run. If unset or empty, the \"legacy\" RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler. More info: https://git.k8s.io/enhancements/keps/sig-node/runtime-class.md This is a beta feature as of Kubernetes v1.14.", "type": "string" }, "schedulerName": { "description": "If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.", "type": "string" }, "securityContext": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSecurityContext", "description": "SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field." }, "serviceAccount": { "description": "DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.", "type": "string" }, "serviceAccountName": { "description": "ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/", "type": "string" }, "shareProcessNamespace": { "description": "Share a single process namespace between all of the containers in a pod. When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1. HostPID and ShareProcessNamespace cannot both be set. Optional: Default to false.", "type": "boolean" }, "subdomain": { "description": "If specified, the fully qualified Pod hostname will be \"<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>\". If not specified, the pod will not have a domainname at all.", "type": "string" }, "terminationGracePeriodSeconds": { "_format": "int64", "description": "Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.", "type": "integer" }, "tolerations": { "description": "If specified, the pod's tolerations.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Toleration" }, "type": "array" }, "topologySpreadConstraints": { "description": "TopologySpreadConstraints describes how a group of pods ought to spread across topology domains. Scheduler will schedule pods in a way which abides by the constraints. This field is only honored by clusters that enable the EvenPodsSpread feature. All topologySpreadConstraints are ANDed.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TopologySpreadConstraint" }, "type": "array", "x-kubernetes-list-map-keys": [ "topologyKey", "whenUnsatisfiable" ], "x-kubernetes-list-type": "map", "x-kubernetes-patch-merge-key": "topologyKey", "x-kubernetes-patch-strategy": "merge" }, "volumes": { "description": "List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Volume" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge,retainKeys" } }, "required": [ "containers" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodTemplateSpec": { "description": "PodTemplateSpec describes the data a pod should have when created from a template", "properties": { "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodSpec", "description": "Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PortworxVolumeSource": { "description": "PortworxVolumeSource represents a Portworx volume resource.", "properties": { "fsType": { "description": "FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "volumeID": { "description": "VolumeID uniquely identifies a Portworx volume", "type": "string" } }, "required": [ "volumeID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PreferredSchedulingTerm": { "description": "An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).", "properties": { "preference": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm", "description": "A node selector term, associated with the corresponding weight." }, "weight": { "_format": "int32", "description": "Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.", "type": "integer" } }, "required": [ "weight", "preference" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Probe": { "description": "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.", "properties": { "exec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ExecAction", "description": "One and only one of the following should be specified. Exec specifies the action to take." }, "failureThreshold": { "_format": "int32", "description": "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.", "type": "integer" }, "httpGet": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HTTPGetAction", "description": "HTTPGet specifies the http request to perform." }, "initialDelaySeconds": { "_format": "int32", "description": "Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", "type": "integer" }, "periodSeconds": { "_format": "int32", "description": "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.", "type": "integer" }, "successThreshold": { "_format": "int32", "description": "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.", "type": "integer" }, "tcpSocket": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction", "description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported" }, "timeoutSeconds": { "_format": "int32", "description": "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", "type": "integer" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ProjectedVolumeSource": { "description": "Represents a projected volume source", "properties": { "defaultMode": { "_format": "int32", "description": "Mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "sources": { "description": "list of volume projections", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeProjection" }, "type": "array" } }, "required": [ "sources" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_QuobyteVolumeSource": { "description": "Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.", "properties": { "group": { "description": "Group to map volume access to Default is no group", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.", "type": "boolean" }, "registry": { "description": "Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes", "type": "string" }, "tenant": { "description": "Tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin", "type": "string" }, "user": { "description": "User to map volume access to Defaults to serivceaccount user", "type": "string" }, "volume": { "description": "Volume is a string that references an already created Quobyte volume by name.", "type": "string" } }, "required": [ "registry", "volume" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_RBDVolumeSource": { "description": "Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd", "type": "string" }, "image": { "description": "The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "keyring": { "description": "Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "monitors": { "description": "A collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "items": { "type": "string" }, "type": "array" }, "pool": { "description": "The rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it" }, "user": { "description": "The rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" } }, "required": [ "monitors", "image" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceFieldSelector": { "description": "ResourceFieldSelector represents container resources (cpu, memory) and their output format", "properties": { "containerName": { "description": "Container name: required for volumes, optional for env vars", "type": "string" }, "divisor": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "Specifies the output format of the exposed resources, defaults to \"1\"" }, "resource": { "description": "Required: resource to select", "type": "string" } }, "required": [ "resource" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ResourceRequirements": { "description": "ResourceRequirements describes the compute resource requirements.", "properties": { "limits": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/", "type": "object" }, "requests": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/", "type": "object" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions": { "description": "SELinuxOptions are the labels to be applied to the container", "properties": { "level": { "description": "Level is SELinux level label that applies to the container.", "type": "string" }, "role": { "description": "Role is a SELinux role label that applies to the container.", "type": "string" }, "type": { "description": "Type is a SELinux type label that applies to the container.", "type": "string" }, "user": { "description": "User is a SELinux user label that applies to the container.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScaleIOVolumeSource": { "description": "ScaleIOVolumeSource represents a persistent ScaleIO volume", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\".", "type": "string" }, "gateway": { "description": "The host address of the ScaleIO API Gateway.", "type": "string" }, "protectionDomain": { "description": "The name of the ScaleIO Protection Domain for the configured storage.", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail." }, "sslEnabled": { "description": "Flag to enable/disable SSL communication with Gateway, default false", "type": "boolean" }, "storageMode": { "description": "Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.", "type": "string" }, "storagePool": { "description": "The ScaleIO Storage Pool associated with the protection domain.", "type": "string" }, "system": { "description": "The name of the storage system as configured in ScaleIO.", "type": "string" }, "volumeName": { "description": "The name of a volume already created in the ScaleIO system that is associated with this volume source.", "type": "string" } }, "required": [ "gateway", "system", "secretRef" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretEnvSource": { "description": "SecretEnvSource selects a Secret to populate the environment variables with.\n\nThe contents of the target Secret's Data field will represent the key-value pairs as environment variables.", "properties": { "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the Secret must be defined", "type": "boolean" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretKeySelector": { "description": "SecretKeySelector selects a key of a Secret.", "properties": { "key": { "description": "The key of the secret to select from. Must be a valid secret key.", "type": "string" }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the Secret or its key must be defined", "type": "boolean" } }, "required": [ "key" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretProjection": { "description": "Adapts a secret into a projected volume.\n\nThe contents of the target Secret's Data field will be presented in a projected volume as files using the keys in the Data field as the file names. Note that this is identical to a secret volume source without the default mode.", "properties": { "items": { "description": "If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath" }, "type": "array" }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the Secret or its key must be defined", "type": "boolean" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretVolumeSource": { "description": "Adapts a Secret into a volume.\n\nThe contents of the target Secret's Data field will be presented in a volume as files using the keys in the Data field as the file names. Secret volumes support ownership management and SELinux relabeling.", "properties": { "defaultMode": { "_format": "int32", "description": "Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "items": { "description": "If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_KeyToPath" }, "type": "array" }, "optional": { "description": "Specify whether the Secret or its keys must be defined", "type": "boolean" }, "secretName": { "description": "Name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecurityContext": { "description": "SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.", "properties": { "allowPrivilegeEscalation": { "description": "AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN", "type": "boolean" }, "capabilities": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Capabilities", "description": "The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime." }, "privileged": { "description": "Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.", "type": "boolean" }, "procMount": { "description": "procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled.", "type": "string" }, "readOnlyRootFilesystem": { "description": "Whether this container has a read-only root filesystem. Default is false.", "type": "boolean" }, "runAsGroup": { "_format": "int64", "description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "integer" }, "runAsNonRoot": { "description": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "boolean" }, "runAsUser": { "_format": "int64", "description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "integer" }, "seLinuxOptions": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SELinuxOptions", "description": "The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence." }, "windowsOptions": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions", "description": "The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ServiceAccountTokenProjection": { "description": "ServiceAccountTokenProjection represents a projected service account token volume. This projection can be used to insert a service account token into the pods runtime filesystem for use against APIs (Kubernetes API Server or otherwise).", "properties": { "audience": { "description": "Audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver.", "type": "string" }, "expirationSeconds": { "_format": "int64", "description": "ExpirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes.", "type": "integer" }, "path": { "description": "Path is the path relative to the mount point of the file to project the token into.", "type": "string" } }, "required": [ "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSVolumeSource": { "description": "Represents a StorageOS persistent volume resource.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted." }, "volumeName": { "description": "VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.", "type": "string" }, "volumeNamespace": { "description": "VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \"default\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Sysctl": { "description": "Sysctl defines a kernel parameter to be set", "properties": { "name": { "description": "Name of a property to set", "type": "string" }, "value": { "description": "Value of a property to set", "type": "string" } }, "required": [ "name", "value" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TCPSocketAction": { "description": "TCPSocketAction describes an action based on opening a socket", "properties": { "host": { "description": "Optional: Host name to connect to, defaults to the pod IP.", "type": "string" }, "port": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString", "description": "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." } }, "required": [ "port" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Toleration": { "description": "The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.", "properties": { "effect": { "description": "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.", "type": "string" }, "key": { "description": "Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.", "type": "string" }, "operator": { "description": "Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.", "type": "string" }, "tolerationSeconds": { "_format": "int64", "description": "TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.", "type": "integer" }, "value": { "description": "Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_TopologySpreadConstraint": { "description": "TopologySpreadConstraint specifies how to spread matching pods among the given topology.", "properties": { "labelSelector": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "LabelSelector is used to find matching pods. Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain." }, "maxSkew": { "_format": "int32", "description": "MaxSkew describes the degree to which pods may be unevenly distributed. It's the maximum permitted difference between the number of matching pods in any two topology domains of a given topology type. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 1/1/0: | zone1 | zone2 | zone3 | | P | P | | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 1/1/1; scheduling it onto zone1(zone2) would make the ActualSkew(2-0) on zone1(zone2) violate MaxSkew(1). - if MaxSkew is 2, incoming pod can be scheduled onto any zone. It's a required field. Default value is 1 and 0 is not allowed.", "type": "integer" }, "topologyKey": { "description": "TopologyKey is the key of node labels. Nodes that have a label with this key and identical values are considered to be in the same topology. We consider each <key, value> as a \"bucket\", and try to put balanced number of pods into each bucket. It's a required field.", "type": "string" }, "whenUnsatisfiable": { "description": "WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy the spread constraint. - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to still schedule it It's considered as \"Unsatisfiable\" if and only if placing incoming pod on any topology violates \"MaxSkew\". For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P | P | P | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler won't make it *more* imbalanced. It's a required field.", "type": "string" } }, "required": [ "maxSkew", "topologyKey", "whenUnsatisfiable" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Volume": { "description": "Volume represents a named volume in a pod that may be accessed by any container in the pod.", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource", "description": "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore" }, "azureDisk": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureDiskVolumeSource", "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod." }, "azureFile": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureFileVolumeSource", "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod." }, "cephfs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSVolumeSource", "description": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime" }, "cinder": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CinderVolumeSource", "description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md" }, "configMap": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapVolumeSource", "description": "ConfigMap represents a configMap that should populate this volume" }, "csi": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIVolumeSource", "description": "CSI (Container Storage Interface) represents storage that is handled by an external CSI driver (Alpha feature)." }, "downwardAPI": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIVolumeSource", "description": "DownwardAPI represents downward API about the pod that should populate this volume" }, "emptyDir": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_EmptyDirVolumeSource", "description": "EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir" }, "fc": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FCVolumeSource", "description": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod." }, "flexVolume": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlexVolumeSource", "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin." }, "flocker": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlockerVolumeSource", "description": "Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running" }, "gcePersistentDisk": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GCEPersistentDiskVolumeSource", "description": "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk" }, "gitRepo": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GitRepoVolumeSource", "description": "GitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container." }, "glusterfs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsVolumeSource", "description": "Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md" }, "hostPath": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostPathVolumeSource", "description": "HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath" }, "iscsi": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ISCSIVolumeSource", "description": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md" }, "name": { "description": "Volume's name. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "nfs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NFSVolumeSource", "description": "NFS represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs" }, "persistentVolumeClaim": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeClaimVolumeSource", "description": "PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims" }, "photonPersistentDisk": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource", "description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine" }, "portworxVolume": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PortworxVolumeSource", "description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine" }, "projected": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ProjectedVolumeSource", "description": "Items for all in one resources secrets, configmaps, and downward API" }, "quobyte": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_QuobyteVolumeSource", "description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime" }, "rbd": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_RBDVolumeSource", "description": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md" }, "scaleIO": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScaleIOVolumeSource", "description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes." }, "secret": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretVolumeSource", "description": "Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret" }, "storageos": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSVolumeSource", "description": "StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes." }, "vsphereVolume": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource", "description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine" } }, "required": [ "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeDevice": { "description": "volumeDevice describes a mapping of a raw block device within a container.", "properties": { "devicePath": { "description": "devicePath is the path inside of the container that the device will be mapped to.", "type": "string" }, "name": { "description": "name must match the name of a persistentVolumeClaim in the pod", "type": "string" } }, "required": [ "name", "devicePath" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeMount": { "description": "VolumeMount describes a mounting of a Volume within a container.", "properties": { "mountPath": { "description": "Path within the container at which the volume should be mounted. Must not contain ':'.", "type": "string" }, "mountPropagation": { "description": "mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.", "type": "string" }, "name": { "description": "This must match the Name of a Volume.", "type": "string" }, "readOnly": { "description": "Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.", "type": "boolean" }, "subPath": { "description": "Path within the volume from which the container's volume should be mounted. Defaults to \"\" (volume's root).", "type": "string" }, "subPathExpr": { "description": "Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to \"\" (volume's root). SubPathExpr and SubPath are mutually exclusive.", "type": "string" } }, "required": [ "name", "mountPath" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeProjection": { "description": "Projection that may be projected along with other supported volume types", "properties": { "configMap": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ConfigMapProjection", "description": "information about the configMap data to project" }, "downwardAPI": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_DownwardAPIProjection", "description": "information about the downwardAPI data to project" }, "secret": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretProjection", "description": "information about the secret data to project" }, "serviceAccountToken": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ServiceAccountTokenProjection", "description": "information about the serviceAccountToken data to project" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource": { "description": "Represents a vSphere volume resource.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "storagePolicyID": { "description": "Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.", "type": "string" }, "storagePolicyName": { "description": "Storage Policy Based Management (SPBM) profile name.", "type": "string" }, "volumePath": { "description": "Path that identifies vSphere volume vmdk", "type": "string" } }, "required": [ "volumePath" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WeightedPodAffinityTerm": { "description": "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)", "properties": { "podAffinityTerm": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodAffinityTerm", "description": "Required. A pod affinity term, associated with the corresponding weight." }, "weight": { "_format": "int32", "description": "weight associated with matching the corresponding podAffinityTerm, in the range 1-100.", "type": "integer" } }, "required": [ "weight", "podAffinityTerm" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_WindowsSecurityContextOptions": { "description": "WindowsSecurityContextOptions contain Windows-specific options and credentials.", "properties": { "gmsaCredentialSpec": { "description": "GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.", "type": "string" }, "gmsaCredentialSpecName": { "description": "GMSACredentialSpecName is the name of the GMSA credential spec to use.", "type": "string" }, "runAsUserName": { "description": "The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": { "oneOf": [ { "type": "string" }, { "type": "number" } ] }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": { "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff", "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector": { "description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.", "properties": { "matchExpressions": { "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement" }, "type": "array" }, "matchLabels": { "additionalProperties": { "type": "string" }, "description": "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.", "type": "object" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement": { "description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", "properties": { "key": { "description": "key is the label key that the selector applies to.", "type": "string", "x-kubernetes-patch-merge-key": "key", "x-kubernetes-patch-strategy": "merge" }, "operator": { "description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.", "type": "string" }, "values": { "description": "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.", "items": { "type": "string" }, "type": "array" } }, "required": [ "key", "operator" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": { "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.", "properties": { "apiVersion": { "description": "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.", "type": "string" }, "fieldsType": { "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"", "type": "string" }, "fieldsV1": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1", "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type." }, "manager": { "description": "Manager is an identifier of the workflow managing these fields.", "type": "string" }, "operation": { "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.", "type": "string" }, "time": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": { "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.", "properties": { "annotations": { "additionalProperties": { "type": "string" }, "description": "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: http://kubernetes.io/docs/user-guide/annotations", "type": "object" }, "clusterName": { "description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.", "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "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.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "deletionGracePeriodSeconds": { "_format": "int64", "description": "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.", "type": "integer" }, "deletionTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "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.\n\nPopulated 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" }, "finalizers": { "description": "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.", "items": { "type": "string" }, "type": "array", "x-kubernetes-patch-strategy": "merge" }, "generateName": { "description": "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.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency", "type": "string" }, "generation": { "_format": "int64", "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.", "type": "integer" }, "labels": { "additionalProperties": { "type": "string" }, "description": "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: http://kubernetes.io/docs/user-guide/labels", "type": "object" }, "managedFields": { "description": "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.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry" }, "type": "array" }, "name": { "description": "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: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "namespace": { "description": "Namespace defines the space within 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.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces", "type": "string" }, "ownerReferences": { "description": "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.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference" }, "type": "array", "x-kubernetes-patch-merge-key": "uid", "x-kubernetes-patch-strategy": "merge" }, "resourceVersion": { "description": "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.\n\nPopulated 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", "type": "string" }, "selfLink": { "description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" }, "uid": { "description": "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.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": { "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.", "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "blockOwnerDeletion": { "description": "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. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.", "type": "boolean" }, "controller": { "description": "If true, this reference points to the managing controller.", "type": "boolean" }, "kind": { "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "name": { "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "uid": { "description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "required": [ "apiVersion", "kind", "name", "uid" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": { "_format": "date-time", "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", "type": "string" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_util_intstr_IntOrString": { "oneOf": [ { "type": "string" }, { "type": "integer" } ] } }, "description": "PodTemplate describes a template for creating copies of a predefined pod.", "properties": { "apiVersion": { "description": "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", "type": [ "string", "null" ] }, "kind": { "description": "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", "enum": [ "PodTemplate" ], "type": [ "string", "null" ] }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "template": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PodTemplateSpec", "description": "Template defines the pods that will be created from this pod template. https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "PodTemplate", "version": "v1" } ] }
kb_739_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "https://json.schemastore.org/linkinator-config.json", "properties": { "concurrency": { "description": "The number of connections to make simultaneously.", "type": "number", "default": 100 }, "config": { "description": "The config file path.", "type": "string" }, "recurse": { "description": "By default, all scans are shallow. Only the top level links on the requested page will be scanned. By setting recurse to true, the crawler will follow all links on the page, and continue scanning links on the same domain for as long as it can go. Results are cached, so no worries about loops.", "type": "boolean", "default": true }, "skip": { "description": "List of urls in regexy form to not include in the check.", "type": "string", "default": "www.googleapis.com" }, "format": { "description": "Return the data in CSV or JSON format.", "type": "string", "default": "json", "enum": ["json", "text", "csv"] }, "silent": { "description": "If true, does not show links", "type": "boolean", "default": false }, "verbosity": { "description": "The output verbosity", "type": "string", "default": "error" }, "timeout": { "description": "By default, requests made by linkinator do not time out (or follow the settings of the OS). This option (in milliseconds) will fail requests after the configured amount of time.", "type": "number", "default": "5000" }, "markdown": { "description": "Automatically parse and scan markdown if scanning from a location on disk.", "type": "boolean", "default": false }, "serverRoot": { "description": "When scanning a locally directory, customize the location on disk where the server is started. Defaults to the path passed in path.", "type": "string", "default": "./" }, "directoryListing": { "description": "Automatically serve a static file listing page when serving a directory. Defaults to false.", "type": "boolean", "default": false }, "retry": { "description": "Automatically retry requests that respond with an HTTP 429, and include a retry-after header. The RetryConfig option is a placeholder for fine-grained controls to be implemented at a later time, and is only included here to signal forward-compatibility.", "oneOf": [ { "type": "boolean" }, { "type": "object" } ] }, "retryErrors": { "description": "Automatically retry requests that return 5xx or unknown response.", "type": "boolean" }, "retryErrorsCount": { "description": "How many times should an error be retried?", "type": "number" }, "retryErrorsJitter": { "description": "Random jitter applied to error retry.", "type": "number" }, "urlRewriteExpressions": { "description": "Collection of objects that contain a search pattern, and replacement.", "type": "array" } }, "title": "JSON schema for Linkinator", "type": "object" }
linkinator-config
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource": { "description": "Represents a Persistent Disk resource in AWS.\n\nAn AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "string" }, "partition": { "_format": "int32", "description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty).", "type": "integer" }, "readOnly": { "description": "Specify \"true\" to force and set the ReadOnly property in VolumeMounts to \"true\". If omitted, the default is \"false\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "boolean" }, "volumeID": { "description": "Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "string" } }, "required": [ "volumeID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureDiskVolumeSource": { "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.", "properties": { "cachingMode": { "description": "Host Caching mode: None, Read Only, Read Write.", "type": "string" }, "diskName": { "description": "The Name of the data disk in the blob storage", "type": "string" }, "diskURI": { "description": "The URI the data disk in the blob storage", "type": "string" }, "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "kind": { "description": "Expected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" } }, "required": [ "diskName", "diskURI" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureFilePersistentVolumeSource": { "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.", "properties": { "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretName": { "description": "the name of secret that contains Azure Storage Account Name and Key", "type": "string" }, "secretNamespace": { "description": "the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod", "type": "string" }, "shareName": { "description": "Share Name", "type": "string" } }, "required": [ "secretName", "shareName" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIPersistentVolumeSource": { "description": "Represents storage that is managed by an external CSI volume driver (Beta feature)", "properties": { "controllerExpandSecretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "ControllerExpandSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerExpandVolume call. This is an alpha field and requires enabling ExpandCSIVolumes feature gate. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed." }, "controllerPublishSecretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "ControllerPublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerPublishVolume and ControllerUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed." }, "driver": { "description": "Driver is the name of the driver to use for this volume. Required.", "type": "string" }, "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\".", "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed." }, "nodeStageSecretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "NodeStageSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeStageVolume and NodeStageVolume and NodeUnstageVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed." }, "readOnly": { "description": "Optional: The value to pass to ControllerPublishVolumeRequest. Defaults to false (read/write).", "type": "boolean" }, "volumeAttributes": { "additionalProperties": { "type": "string" }, "description": "Attributes of the volume to publish.", "type": "object" }, "volumeHandle": { "description": "VolumeHandle is the unique volume name returned by the CSI volume plugin\u2019s CreateVolume to refer to the volume on all subsequent calls. Required.", "type": "string" } }, "required": [ "driver", "volumeHandle" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSPersistentVolumeSource": { "description": "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.", "properties": { "monitors": { "description": "Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "items": { "type": "string" }, "type": "array" }, "path": { "description": "Optional: Used as the mounted root, rather than the full Ceph tree, default is /", "type": "string" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "boolean" }, "secretFile": { "description": "Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "string" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it" }, "user": { "description": "Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "string" } }, "required": [ "monitors" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CinderPersistentVolumeSource": { "description": "Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "string" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "Optional: points to a secret object containing parameters used to connect to OpenStack." }, "volumeID": { "description": "volume id used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "string" } }, "required": [ "volumeID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FCVolumeSource": { "description": "Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "lun": { "_format": "int32", "description": "Optional: FC target lun number", "type": "integer" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "targetWWNs": { "description": "Optional: FC target worldwide names (WWNs)", "items": { "type": "string" }, "type": "array" }, "wwids": { "description": "Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlexPersistentVolumeSource": { "description": "FlexPersistentVolumeSource represents a generic persistent volume resource that is provisioned/attached using an exec based plugin.", "properties": { "driver": { "description": "Driver is the name of the driver to use for this volume.", "type": "string" }, "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.", "type": "string" }, "options": { "additionalProperties": { "type": "string" }, "description": "Optional: Extra command options if any.", "type": "object" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts." } }, "required": [ "driver" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlockerVolumeSource": { "description": "Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.", "properties": { "datasetName": { "description": "Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated", "type": "string" }, "datasetUUID": { "description": "UUID of the dataset. This is unique identifier of a Flocker dataset", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GCEPersistentDiskVolumeSource": { "description": "Represents a Persistent Disk resource in Google Compute Engine.\n\nA GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "string" }, "partition": { "_format": "int32", "description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "integer" }, "pdName": { "description": "Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "boolean" } }, "required": [ "pdName" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsPersistentVolumeSource": { "description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.", "properties": { "endpoints": { "description": "EndpointsName is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "string" }, "endpointsNamespace": { "description": "EndpointsNamespace is the namespace that contains Glusterfs endpoint. If this field is empty, the EndpointNamespace defaults to the same namespace as the bound PVC. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "string" }, "path": { "description": "Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "boolean" } }, "required": [ "endpoints", "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostPathVolumeSource": { "description": "Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.", "properties": { "path": { "description": "Path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", "type": "string" }, "type": { "description": "Type for HostPath Volume Defaults to \"\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", "type": "string" } }, "required": [ "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ISCSIPersistentVolumeSource": { "description": "ISCSIPersistentVolumeSource represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.", "properties": { "chapAuthDiscovery": { "description": "whether support iSCSI Discovery CHAP authentication", "type": "boolean" }, "chapAuthSession": { "description": "whether support iSCSI Session CHAP authentication", "type": "boolean" }, "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi", "type": "string" }, "initiatorName": { "description": "Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection.", "type": "string" }, "iqn": { "description": "Target iSCSI Qualified Name.", "type": "string" }, "iscsiInterface": { "description": "iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).", "type": "string" }, "lun": { "_format": "int32", "description": "iSCSI Target Lun number.", "type": "integer" }, "portals": { "description": "iSCSI Target Portal List. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).", "items": { "type": "string" }, "type": "array" }, "readOnly": { "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "CHAP Secret for iSCSI target and initiator authentication" }, "targetPortal": { "description": "iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).", "type": "string" } }, "required": [ "targetPortal", "iqn", "lun" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalVolumeSource": { "description": "Local represents directly-attached storage with node affinity (Beta feature)", "properties": { "fsType": { "description": "Filesystem type to mount. It applies only when the Path is a block device. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default value is to auto-select a fileystem if unspecified.", "type": "string" }, "path": { "description": "The full path to the volume on the node. It can be either a directory or block device (disk, partition, ...).", "type": "string" } }, "required": [ "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NFSVolumeSource": { "description": "Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.", "properties": { "path": { "description": "Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", "type": "boolean" }, "server": { "description": "Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", "type": "string" } }, "required": [ "server", "path" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector": { "description": "A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.", "properties": { "nodeSelectorTerms": { "description": "Required. A list of node selector terms. The terms are ORed.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm" }, "type": "array" } }, "required": [ "nodeSelectorTerms" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement": { "description": "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", "properties": { "key": { "description": "The label key that the selector applies to.", "type": "string" }, "operator": { "description": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.", "type": "string" }, "values": { "description": "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. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.", "items": { "type": "string" }, "type": "array" } }, "required": [ "key", "operator" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm": { "description": "A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.", "properties": { "matchExpressions": { "description": "A list of node selector requirements by node's labels.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement" }, "type": "array" }, "matchFields": { "description": "A list of node selector requirements by node's fields.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement" }, "type": "array" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectReference": { "description": "ObjectReference contains enough information to let you inspect or modify the referred object.", "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "fieldPath": { "description": "If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: \"spec.containers{name}\" (where \"name\" refers to the name of the container that triggered the event) or if no container name is specified \"spec.containers[2]\" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object.", "type": "string" }, "kind": { "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "namespace": { "description": "Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/", "type": "string" }, "resourceVersion": { "description": "Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "uid": { "description": "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolume": { "description": "PersistentVolume (PV) is a storage resource provisioned by an administrator. It is analogous to a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "PersistentVolume" ], "type": "string" }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeSpec", "description": "Spec defines a specification of a persistent volume owned by the cluster. Provisioned by an administrator. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistent-volumes" }, "status": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeStatus", "description": "Status represents the current information/status for the persistent volume. Populated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistent-volumes" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "PersistentVolume", "version": "v1" } ] }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeSpec": { "description": "PersistentVolumeSpec is the specification of a persistent volume.", "properties": { "accessModes": { "description": "AccessModes contains all ways the volume can be mounted. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes", "items": { "type": "string" }, "type": "array" }, "awsElasticBlockStore": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource", "description": "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore" }, "azureDisk": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureDiskVolumeSource", "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod." }, "azureFile": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_AzureFilePersistentVolumeSource", "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod." }, "capacity": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "A description of the persistent volume's resources and capacity. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity", "type": "object" }, "cephfs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CephFSPersistentVolumeSource", "description": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime" }, "cinder": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CinderPersistentVolumeSource", "description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md" }, "claimRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectReference", "description": "ClaimRef is part of a bi-directional binding between PersistentVolume and PersistentVolumeClaim. Expected to be non-nil when bound. claim.VolumeName is the authoritative bind between PV and PVC. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#binding" }, "csi": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_CSIPersistentVolumeSource", "description": "CSI represents storage that is handled by an external CSI driver (Beta feature)." }, "fc": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FCVolumeSource", "description": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod." }, "flexVolume": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlexPersistentVolumeSource", "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin." }, "flocker": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_FlockerVolumeSource", "description": "Flocker represents a Flocker volume attached to a kubelet's host machine and exposed to the pod for its usage. This depends on the Flocker control service being running" }, "gcePersistentDisk": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GCEPersistentDiskVolumeSource", "description": "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk" }, "glusterfs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_GlusterfsPersistentVolumeSource", "description": "Glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod. Provisioned by an admin. More info: https://examples.k8s.io/volumes/glusterfs/README.md" }, "hostPath": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_HostPathVolumeSource", "description": "HostPath represents a directory on the host. Provisioned by a developer or tester. This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath" }, "iscsi": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ISCSIPersistentVolumeSource", "description": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin." }, "local": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalVolumeSource", "description": "Local represents directly-attached storage with node affinity" }, "mountOptions": { "description": "A list of mount options, e.g. [\"ro\", \"soft\"]. Not validated - mount will simply fail if one is invalid. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes/#mount-options", "items": { "type": "string" }, "type": "array" }, "nfs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NFSVolumeSource", "description": "NFS represents an NFS mount on the host. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs" }, "nodeAffinity": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeNodeAffinity", "description": "NodeAffinity defines constraints that limit what nodes this volume can be accessed from. This field influences the scheduling of pods that use this volume." }, "persistentVolumeReclaimPolicy": { "description": "What happens to a persistent volume when released from its claim. Valid options are Retain (default for manually created PersistentVolumes), Delete (default for dynamically provisioned PersistentVolumes), and Recycle (deprecated). Recycle must be supported by the volume plugin underlying this PersistentVolume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#reclaiming", "type": "string" }, "photonPersistentDisk": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource", "description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine" }, "portworxVolume": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PortworxVolumeSource", "description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine" }, "quobyte": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_QuobyteVolumeSource", "description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime" }, "rbd": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_RBDPersistentVolumeSource", "description": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md" }, "scaleIO": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScaleIOPersistentVolumeSource", "description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes." }, "storageClassName": { "description": "Name of StorageClass to which this persistent volume belongs. Empty value means that this volume does not belong to any StorageClass.", "type": "string" }, "storageos": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSPersistentVolumeSource", "description": "StorageOS represents a StorageOS volume that is attached to the kubelet's host machine and mounted into the pod More info: https://examples.k8s.io/volumes/storageos/README.md" }, "volumeMode": { "description": "volumeMode defines if a volume is intended to be used with a formatted filesystem or to remain in raw block state. Value of Filesystem is implied when not included in spec.", "type": "string" }, "vsphereVolume": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource", "description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolumeStatus": { "description": "PersistentVolumeStatus is the current status of a persistent volume.", "properties": { "message": { "description": "A human-readable message indicating details about why the volume is in this state.", "type": "string" }, "phase": { "description": "Phase indicates if a volume is available, bound to a claim, or released by a claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#phase", "type": "string" }, "reason": { "description": "Reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource": { "description": "Represents a Photon Controller persistent disk resource.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "pdID": { "description": "ID that identifies Photon Controller persistent disk", "type": "string" } }, "required": [ "pdID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PortworxVolumeSource": { "description": "PortworxVolumeSource represents a Portworx volume resource.", "properties": { "fsType": { "description": "FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "volumeID": { "description": "VolumeID uniquely identifies a Portworx volume", "type": "string" } }, "required": [ "volumeID" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_QuobyteVolumeSource": { "description": "Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.", "properties": { "group": { "description": "Group to map volume access to Default is no group", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.", "type": "boolean" }, "registry": { "description": "Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes", "type": "string" }, "tenant": { "description": "Tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin", "type": "string" }, "user": { "description": "User to map volume access to Defaults to serivceaccount user", "type": "string" }, "volume": { "description": "Volume is a string that references an already created Quobyte volume by name.", "type": "string" } }, "required": [ "registry", "volume" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_RBDPersistentVolumeSource": { "description": "Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd", "type": "string" }, "image": { "description": "The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "keyring": { "description": "Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "monitors": { "description": "A collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "items": { "type": "string" }, "type": "array" }, "pool": { "description": "The rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it" }, "user": { "description": "The rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" } }, "required": [ "monitors", "image" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ScaleIOPersistentVolumeSource": { "description": "ScaleIOPersistentVolumeSource represents a persistent ScaleIO volume", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\"", "type": "string" }, "gateway": { "description": "The host address of the ScaleIO API Gateway.", "type": "string" }, "protectionDomain": { "description": "The name of the ScaleIO Protection Domain for the configured storage.", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference", "description": "SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail." }, "sslEnabled": { "description": "Flag to enable/disable SSL communication with Gateway, default false", "type": "boolean" }, "storageMode": { "description": "Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.", "type": "string" }, "storagePool": { "description": "The ScaleIO Storage Pool associated with the protection domain.", "type": "string" }, "system": { "description": "The name of the storage system as configured in ScaleIO.", "type": "string" }, "volumeName": { "description": "The name of a volume already created in the ScaleIO system that is associated with this volume source.", "type": "string" } }, "required": [ "gateway", "system", "secretRef" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_SecretReference": { "description": "SecretReference represents a Secret Reference. It has enough information to retrieve secret in any namespace", "properties": { "name": { "description": "Name is unique within a namespace to reference a secret resource.", "type": "string" }, "namespace": { "description": "Namespace defines the space within which the secret name must be unique.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_StorageOSPersistentVolumeSource": { "description": "Represents a StorageOS persistent volume resource.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_ObjectReference", "description": "SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted." }, "volumeName": { "description": "VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.", "type": "string" }, "volumeNamespace": { "description": "VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \"default\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VolumeNodeAffinity": { "description": "VolumeNodeAffinity defines constraints that limit what nodes this volume can be accessed from.", "properties": { "required": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelector", "description": "Required specifies hard node constraints that must be met." } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource": { "description": "Represents a vSphere volume resource.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "storagePolicyID": { "description": "Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.", "type": "string" }, "storagePolicyName": { "description": "Storage Policy Based Management (SPBM) profile name.", "type": "string" }, "volumePath": { "description": "Path that identifies vSphere volume vmdk", "type": "string" } }, "required": [ "volumePath" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": { "oneOf": [ { "type": "string" }, { "type": "number" } ] }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": { "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff", "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta": { "description": "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.", "properties": { "continue": { "description": "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.", "type": "string" }, "remainingItemCount": { "_format": "int64", "description": "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.", "type": "integer" }, "resourceVersion": { "description": "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", "type": "string" }, "selfLink": { "description": "selfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": { "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.", "properties": { "apiVersion": { "description": "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.", "type": "string" }, "fieldsType": { "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"", "type": "string" }, "fieldsV1": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1", "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type." }, "manager": { "description": "Manager is an identifier of the workflow managing these fields.", "type": "string" }, "operation": { "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.", "type": "string" }, "time": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": { "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.", "properties": { "annotations": { "additionalProperties": { "type": "string" }, "description": "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: http://kubernetes.io/docs/user-guide/annotations", "type": "object" }, "clusterName": { "description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.", "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "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.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "deletionGracePeriodSeconds": { "_format": "int64", "description": "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.", "type": "integer" }, "deletionTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "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.\n\nPopulated 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" }, "finalizers": { "description": "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.", "items": { "type": "string" }, "type": "array", "x-kubernetes-patch-strategy": "merge" }, "generateName": { "description": "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.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency", "type": "string" }, "generation": { "_format": "int64", "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.", "type": "integer" }, "labels": { "additionalProperties": { "type": "string" }, "description": "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: http://kubernetes.io/docs/user-guide/labels", "type": "object" }, "managedFields": { "description": "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.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry" }, "type": "array" }, "name": { "description": "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: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "namespace": { "description": "Namespace defines the space within 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.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces", "type": "string" }, "ownerReferences": { "description": "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.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference" }, "type": "array", "x-kubernetes-patch-merge-key": "uid", "x-kubernetes-patch-strategy": "merge" }, "resourceVersion": { "description": "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.\n\nPopulated 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", "type": "string" }, "selfLink": { "description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" }, "uid": { "description": "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.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": { "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.", "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "blockOwnerDeletion": { "description": "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. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.", "type": "boolean" }, "controller": { "description": "If true, this reference points to the managing controller.", "type": "boolean" }, "kind": { "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "name": { "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "uid": { "description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "required": [ "apiVersion", "kind", "name", "uid" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": { "_format": "date-time", "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", "type": "string" } }, "description": "PersistentVolumeList is a list of PersistentVolume items.", "properties": { "apiVersion": { "description": "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", "type": [ "string", "null" ] }, "items": { "description": "List of persistent volumes. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_PersistentVolume" }, "type": [ "array", "null" ] }, "kind": { "description": "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", "enum": [ "PersistentVolumeList" ], "type": [ "string", "null" ] }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "PersistentVolumeList", "version": "v1" } ] }
kb_676_Normalized
{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Solidarity", "description": "A rule-set and config for the Solidarity JSON checker", "type": "object", "properties": { "config": { "output": { "description": "Identify what kind output should happen when a check is called", "type": "string", "enum": [ "moderate", "verbose", "silent" ] } }, "requirements": { "description": "List of requirement rules for your particular environment", "type": "object", "additionalProperties": { "type": "array", "items": { "type": "object", "oneOf": [ { "$ref": "#/definitions/cli" }, { "$ref": "#/definitions/dir" }, { "$ref": "#/definitions/file" }, { "$ref": "#/definitions/env" }, { "$ref": "#/definitions/shell" }, { "$ref": "#/definitions/custom" } ] }, "minItems": 1, "_uniqueItems": true } } }, "required": [ "requirements" ], "definitions": { "cli": { "description": "CLI Rule", "type": "object", "properties": { "rule": { "enum": [ "cli" ] }, "binary": { "type": "string" }, "semver": { "type": "string" }, "version": { "type": "string" }, "line": { "type": [ "string", "integer" ] }, "matchIndex": { "type": "integer" }, "platform": { "enum": [ "darwin", "macos", "freebsd", "linux", "sunos", "win32", "windows" ] }, "error": { "type": "string" }, "ci": { "type": "boolean" }, "fix": { "type": "string" } }, "required": [ "rule", "binary" ] }, "dir": { "description": "Dir Rule", "type": "object", "properties": { "rule": { "enum": [ "dir", "directory" ] }, "platform": { "enum": [ "darwin", "macos", "freebsd", "linux", "sunos", "win32", "windows" ] }, "error": { "type": "string" }, "ci": { "type": "boolean" }, "fix": { "type": "string" } }, "required": [ "rule", "location" ] }, "file": { "description": "File Rule", "type": "object", "properties": { "rule": { "enum": [ "file" ] }, "platform": { "enum": [ "darwin", "macos", "freebsd", "linux", "sunos", "win32", "windows" ] }, "error": { "type": "string" }, "ci": { "type": "boolean" }, "fix": { "type": "string" } }, "required": [ "rule", "location" ] }, "env": { "description": "ENV Rule", "type": "object", "properties": { "rule": { "enum": [ "env" ] }, "platform": { "enum": [ "darwin", "macos", "freebsd", "linux", "sunos", "win32", "windows" ] }, "error": { "type": "string" }, "ci": { "type": "boolean" }, "fix": { "type": "string" } }, "required": [ "rule", "variable" ] }, "shell": { "description": "Shell Rule", "type": "object", "properties": { "rule": { "enum": [ "shell" ] }, "platform": { "enum": [ "darwin", "macos", "freebsd", "linux", "sunos", "win32", "windows" ] }, "error": { "type": "string" }, "ci": { "type": "boolean" }, "match": { "type": "string", "description": "A regexp to search the output." }, "fix": { "type": "string" } }, "required": [ "rule", "match" ] }, "custom": { "description": "Custom Rule", "type": "object", "additionalProperties": true, "properties": { "rule": { "enum": [ "custom" ] }, "plugin": { "type": "string" }, "name": { "type": "string" }, "platform": { "enum": [ "darwin", "macos", "freebsd", "linux", "sunos", "win32", "windows" ] }, "error": { "type": "string" }, "ci": { "type": "boolean" }, "match": { "type": "string", "description": "A regexp to search the output." }, "fix": { "type": "string" } }, "required": [ "rule", "plugin", "name" ] } } }
o47675
{ "additionalProperties": false, "description": "Schema for a Mandrill hard bounce event", "properties": { "_id": { "type": "string" }, "msg": { "additionalProperties": false, "properties": { "_id": { "type": "string" }, "_version": { "type": "string" }, "bgtools_code": { "type": "number" }, "bounce_description": { "type": "string" }, "diag": { "type": "string" }, "email": { "type": "string" }, "metadata": { "additionalProperties": true, "properties": { "user_id": { "type": "number" } }, "type": "object" }, "resends": { "type": "array" }, "sender": { "type": "string" }, "smtp_events": { "items": { "additionalProperties": true, "properties": { "destination_ip": { "type": "string" }, "diag": { "type": "string" }, "size": { "type": "integer" }, "source_ip": { "type": "string" }, "ts": { "_format": "date-time", "type": "string" }, "type": { "type": "string" } }, "type": "object" }, "type": "array" }, "state": { "type": "string" }, "subject": { "type": "string" }, "tags": { "items": { "type": "string" }, "type": "array" }, "template": { "type": [ "string", "null" ] }, "ts": { "_format": "date-time", "type": "string" } }, "type": "object" }, "ts": { "_format": "date-time", "type": "string" } }, "self": { "format": "jsonschema", "name": "message_bounced", "vendor": "com.mandrill", "version": "1-0-0" }, "type": "object" }
sp_121_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "oneOf": [ { "title": "Data Table Row Insert Update", "description": "Schema for inserting or updating a data table row", "type": "object", "patternProperties": { "^[0-9a-zA-Z_-]{1,255}$": { "type": [ "string", "number", "boolean", "null" ] } }, "additionalProperties": false }, { "title": "Data Table Row Insert Multiple", "description": "Schema for inserting data table rows", "type": "array", "items": { "title": "Data Table Row Insert Update", "description": "Schema for inserting or updating a data table row", "type": "object", "patternProperties": { "^[0-9a-zA-Z_-]{1,255}$": { "type": [ "string", "number", "boolean", "null" ] } }, "additionalProperties": false } } ] }
o9816
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Toleration": { "description": "The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.", "properties": { "effect": { "description": "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.", "type": "string" }, "key": { "description": "Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.", "type": "string" }, "operator": { "description": "Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.", "type": "string" }, "tolerationSeconds": { "_format": "int64", "description": "TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.", "type": "integer" }, "value": { "description": "Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_node_v1alpha1_Overhead": { "description": "Overhead structure represents the resource overhead associated with running a pod.", "properties": { "podFixed": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "PodFixed represents the fixed resource overhead associated with running a pod.", "type": "object" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_node_v1alpha1_RuntimeClass": { "description": "RuntimeClass defines a class of container runtime supported in the cluster. The RuntimeClass is used to determine which container runtime is used to run all containers in a pod. RuntimeClasses are (currently) manually defined by a user or cluster provisioner, and referenced in the PodSpec. The Kubelet is responsible for resolving the RuntimeClassName reference before running the pod. For more details, see https://git.k8s.io/enhancements/keps/sig-node/runtime-class.md", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "RuntimeClass" ], "type": "string" }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_node_v1alpha1_RuntimeClassSpec", "description": "Specification of the RuntimeClass More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "required": [ "spec" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "node.k8s.io", "kind": "RuntimeClass", "version": "v1alpha1" } ] }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_node_v1alpha1_RuntimeClassSpec": { "description": "RuntimeClassSpec is a specification of a RuntimeClass. It contains parameters that are required to describe the RuntimeClass to the Container Runtime Interface (CRI) implementation, as well as any other components that need to understand how the pod will be run. The RuntimeClassSpec is immutable.", "properties": { "overhead": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_node_v1alpha1_Overhead", "description": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. For more details, see https://git.k8s.io/enhancements/keps/sig-node/20190226-pod-overhead.md This field is alpha-level as of Kubernetes v1.15, and is only honored by servers that enable the PodOverhead feature." }, "runtimeHandler": { "description": "RuntimeHandler specifies the underlying runtime and configuration that the CRI implementation will use to handle pods of this class. The possible values are specific to the node & CRI configuration. It is assumed that all handlers are available on every node, and handlers of the same name are equivalent on every node. For example, a handler called \"runc\" might specify that the runc OCI runtime (using native Linux containers) will be used to run the containers in a pod. The RuntimeHandler must conform to the DNS Label (RFC 1123) requirements and is immutable.", "type": "string" }, "scheduling": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_node_v1alpha1_Scheduling", "description": "Scheduling holds the scheduling constraints to ensure that pods running with this RuntimeClass are scheduled to nodes that support it. If scheduling is nil, this RuntimeClass is assumed to be supported by all nodes." } }, "required": [ "runtimeHandler" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_node_v1alpha1_Scheduling": { "description": "Scheduling specifies the scheduling constraints for nodes supporting a RuntimeClass.", "properties": { "nodeSelector": { "additionalProperties": { "type": "string" }, "description": "nodeSelector lists labels that must be present on nodes that support this RuntimeClass. Pods using this RuntimeClass can only be scheduled to a node matched by this selector. The RuntimeClass nodeSelector is merged with a pod's existing nodeSelector. Any conflicts will cause the pod to be rejected in admission.", "type": "object" }, "tolerations": { "description": "tolerations are appended (excluding duplicates) to pods running with this RuntimeClass during admission, effectively unioning the set of nodes tolerated by the pod and the RuntimeClass.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_Toleration" }, "type": "array", "x-kubernetes-list-type": "atomic" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": { "oneOf": [ { "type": "string" }, { "type": "number" } ] }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": { "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff", "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta": { "description": "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.", "properties": { "continue": { "description": "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.", "type": "string" }, "remainingItemCount": { "_format": "int64", "description": "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.", "type": "integer" }, "resourceVersion": { "description": "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", "type": "string" }, "selfLink": { "description": "selfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": { "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.", "properties": { "apiVersion": { "description": "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.", "type": "string" }, "fieldsType": { "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"", "type": "string" }, "fieldsV1": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1", "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type." }, "manager": { "description": "Manager is an identifier of the workflow managing these fields.", "type": "string" }, "operation": { "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.", "type": "string" }, "time": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": { "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.", "properties": { "annotations": { "additionalProperties": { "type": "string" }, "description": "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: http://kubernetes.io/docs/user-guide/annotations", "type": "object" }, "clusterName": { "description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.", "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "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.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "deletionGracePeriodSeconds": { "_format": "int64", "description": "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.", "type": "integer" }, "deletionTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "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.\n\nPopulated 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" }, "finalizers": { "description": "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.", "items": { "type": "string" }, "type": "array", "x-kubernetes-patch-strategy": "merge" }, "generateName": { "description": "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.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency", "type": "string" }, "generation": { "_format": "int64", "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.", "type": "integer" }, "labels": { "additionalProperties": { "type": "string" }, "description": "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: http://kubernetes.io/docs/user-guide/labels", "type": "object" }, "managedFields": { "description": "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.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry" }, "type": "array" }, "name": { "description": "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: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "namespace": { "description": "Namespace defines the space within 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.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces", "type": "string" }, "ownerReferences": { "description": "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.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference" }, "type": "array", "x-kubernetes-patch-merge-key": "uid", "x-kubernetes-patch-strategy": "merge" }, "resourceVersion": { "description": "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.\n\nPopulated 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", "type": "string" }, "selfLink": { "description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" }, "uid": { "description": "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.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": { "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.", "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "blockOwnerDeletion": { "description": "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. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.", "type": "boolean" }, "controller": { "description": "If true, this reference points to the managing controller.", "type": "boolean" }, "kind": { "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "name": { "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "uid": { "description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "required": [ "apiVersion", "kind", "name", "uid" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": { "_format": "date-time", "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", "type": "string" } }, "description": "RuntimeClassList is a list of RuntimeClass objects.", "properties": { "apiVersion": { "description": "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", "enum": [ "node.k8s.io/v1alpha1" ], "type": [ "string", "null" ] }, "items": { "description": "Items is a list of schema objects.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_node_v1alpha1_RuntimeClass" }, "type": [ "array", "null" ] }, "kind": { "description": "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", "enum": [ "RuntimeClassList" ], "type": [ "string", "null" ] }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "node.k8s.io", "kind": "RuntimeClassList", "version": "v1alpha1" } ] }
kb_899_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "deviceIds": { "type": "array", "items": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "maxItems": 1000 }, "deviceTags": { "type": "array", "items": { "type": "object", "properties": { "key": { "type": "string", "pattern": "^[0-9a-zA-Z_-]{1,255}$" }, "value": { "type": "string", "minLength": 1, "maxLength": 255 } }, "additionalProperties": false }, "maxItems": 100 }, "description": { "type": "string", "maxLength": 32767 }, "filterType": { "oneOf": [ { "type": "string", "enum": [ "all", "whitelist", "blacklist" ] }, { "type": "string", "enum": [ "none" ] } ] }, "pubTopics": { "type": "array", "items": { "type": "string", "minLength": 1, "maxLength": 1024 } }, "subTopics": { "type": "array", "items": { "type": "string", "minLength": 1, "maxLength": 1024 } } }, "additionalProperties": false }
o9784
{ "properties": { "dimensions": { "description": "The dimensions specific to the shape", "properties": { "length": { "description": "The length of the shape", "type": "number" }, "radius": { "description": "The radius of the shape", "type": "number" }, "width": { "description": "The width of the shape", "type": "number" } }, "required": [ "length", "width", "radius" ], "type": "object" }, "shape": { "description": "The shape for which the area needs to be calculated", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_fa12776d
{ "properties": { "namespace": { "description": "Namespace to evaluate rules for. Required.", "type": [ "string", "null" ] } }, "type": "object" }
kb_959_Normalized
{ "properties": { "networking": { "description": "cadvisor networking configuration properties", "properties": { "external_access": { "description": "Enable access from outside the cluster through Marathon-LB.\nNOTE: this connection is unencrypted.", "properties": { "enable": { "default": false, "description": "Enable or disable creating a VIP for external access through a public node running Marathon-LB.", "type": "boolean" }, "external_access_port": { "default": 18080, "description": "For external access, port number to be used for clear communication in the external Marathon-LB load balancer", "type": "number" } }, "type": "object" }, "influxdb_host": { "default": "influxdb.marathon.l4lb.thisdcos.directory", "description": "Hostname or IP address of the host running InfluxDB for metrics storage.", "type": "string" }, "influxdb_port": { "default": 8086, "description": "TCP port where the influxdb_host is listening.", "type": "number" } }, "type": "object" }, "service": { "description": "DC/OS service configuration properties", "properties": { "cpus": { "default": 0.1, "description": "CPU shares to allocate to each service instance.", "minimum": 0.1, "type": "number" }, "instances": { "default": 256, "description": "Number of service instances to run in the cluster. A single instance will be run per node in the cluster. Normally, this number should be equal or higher than the number of nodes in the cluster.", "minimum": 1, "type": "number" }, "mem": { "default": 128.0, "description": "Memory to allocate to each service instance.", "minimum": 128.0, "type": "number" }, "name": { "default": "cadvisor", "description": "Name of this service instance", "type": "string" } }, "type": "object" } } }
o90622
{ "properties": { "include_lowercase": { "description": "Whether to include lowercase letters in the password", "type": "boolean" }, "include_numbers": { "description": "Whether to include numbers in the password", "type": "boolean" }, "include_symbols": { "description": "Whether to include symbols in the password", "type": "boolean" }, "include_uppercase": { "description": "Whether to include uppercase letters in the password", "type": "boolean" }, "length": { "description": "The desired length of the password", "type": "integer" } }, "required": [ "length" ], "type": "object" }
generate_random_password_34d394b9
{ "$schema": "http://json-schema.org/draft-04/schema#", "description": "The value returned by PUT /{db}/{docid}", "oneOf": [ { "properties": { "error": { "type": "string" }, "reason": { "type": "string" } }, "required": [ "error", "reason" ] }, { "properties": { "id": { "type": "string" }, "ok": { "type": "boolean" }, "rev": { "type": "string" } }, "required": [ "id", "ok" ] } ], "title": "CouchDB create doc", "type": "object" }
o60144
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "meta": { "type": "object", "properties": { "id": { "type": "string", "pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$" }, "type": { "type": "string", "enum": [ "EiffelAlertRaisedEvent" ] }, "version": { "type": "string", "enum": [ "1.0.0" ], "default": "1.0.0" }, "time": { "type": "integer" }, "tags": { "type": "array", "items": { "type": "string" } }, "source": { "type": "object", "properties": { "domainId": { "type": "string" }, "host": { "type": "string" }, "name": { "type": "string" }, "serializer": { "type": "object", "properties": { "groupId": { "type": "string" }, "artifactId": { "type": "string" }, "version": { "type": "string" } }, "required": [ "groupId", "artifactId", "version" ], "additionalProperties": false }, "uri": { "type": "string" } }, "additionalProperties": false }, "security": { "type": "object", "properties": { "sdm": { "type": "object", "properties": { "authorIdentity": { "type": "string" }, "encryptedDigest": { "type": "string" } }, "required": [ "authorIdentity", "encryptedDigest" ], "additionalProperties": false } }, "additionalProperties": false } }, "required": [ "id", "type", "version", "time", "source" ], "additionalProperties": false }, "data": { "type": "object", "properties": { "heading": { "type": "string" }, "body": { "type": "string" }, "uri": { "type": "string" }, "entity": { "type": "string" }, "severity": { "type": "string", "enum": [ "MINOR", "MAJOR", "CRITICAL", "BLOCKER", "CANCELED" ] }, "customData": { "type": "array", "items": { "type": "object", "properties": { "key": { "type": "string" }, "value": {} }, "required": [ "key", "value" ], "additionalProperties": false } } }, "required": [ "severity", "heading", "body" ], "additionalProperties": false }, "links": { "type": "array", "items": { "type": "object", "properties": { "type": { "type": "string" }, "target": { "type": "string", "pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$" } }, "required": [ "type", "target" ], "additionalProperties": false } } }, "required": [ "meta", "data", "links" ], "additonalProperties": false }
o89890
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "required": [ "base_path", "details", "document_type", "publishing_app", "rendering_app", "routes", "schema_name", "title" ], "additionalProperties": false, "properties": { "access_limited": { "$ref": "#/definitions/access_limited" }, "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "auth_bypass_ids": { "description": "A list of ids that will allow access to this item for non-authenticated users", "$ref": "#/definitions/guid_list" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "bulk_publishing": { "type": "boolean" }, "change_note": { "type": [ "null", "string" ] }, "description": { "$ref": "#/definitions/description_optional" }, "details": { "$ref": "#/definitions/details" }, "document_type": { "type": "string", "enum": [ "taxon" ] }, "first_published_at": { "$ref": "#/definitions/first_published_at" }, "last_edited_at": { "description": "Last time when the content received a major or minor update.", "type": "string", "format": "date-time" }, "links": { "type": "object", "additionalProperties": false, "properties": { "associated_taxons": { "description": "A list of associated taxons whose children should be included as children of this taxon", "$ref": "#/definitions/guid_list" }, "parent_taxons": { "description": "The list of taxon parents.", "$ref": "#/definitions/guid_list" }, "policy_areas": { "description": "A largely deprecated tag currently only used to power email alerts.", "$ref": "#/definitions/guid_list" } } }, "locale": { "$ref": "#/definitions/locale" }, "need_ids": { "type": "array", "items": { "type": "string" } }, "phase": { "description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases", "type": "string", "enum": [ "alpha", "beta", "live" ] }, "previous_version": { "type": "string" }, "public_updated_at": { "$ref": "#/definitions/public_updated_at" }, "publishing_app": { "$ref": "#/definitions/publishing_app_name" }, "redirects": { "type": "array", "additionalItems": false, "items": {} }, "rendering_app": { "$ref": "#/definitions/rendering_app" }, "routes": { "$ref": "#/definitions/routes" }, "schema_name": { "type": "string", "enum": [ "taxon" ] }, "title": { "$ref": "#/definitions/title" }, "update_type": { "$ref": "#/definitions/update_type" } }, "definitions": { "description": { "type": "string" }, "absolute_path": { "description": "A path only. Query string and/or fragment are not allowed.", "type": "string", "pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$" }, "access_limited": { "type": "object", "additionalProperties": false, "properties": { "auth_bypass_ids": { "description": "Deprecated: auth_bypass_ids should be sent as a separate field", "$ref": "#/definitions/guid_list" }, "organisations": { "description": "A list of organisation content ids permitted access to this item", "$ref": "#/definitions/guid_list" }, "users": { "type": "array", "items": { "type": "string" } } } }, "analytics_identifier": { "description": "A short identifier we send to Google Analytics for multi-valued fields. This means we avoid the truncated values we would get if we sent the path or slug of eg organisations.", "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "description_optional": { "anyOf": [ { "$ref": "#/definitions/description" }, { "type": "null" } ] }, "details": { "type": "object", "additionalProperties": false, "properties": { "internal_name": { "$ref": "#/definitions/taxonomy_internal_name" }, "notes_for_editors": { "description": "Usage notes for editors when tagging content to a taxon.", "type": "string" }, "visible_to_departmental_editors": { "description": "Should this taxon be made visible to Content Editors in publishing apps? It's currently only a consideration for Root Taxons in a draft state.", "type": "boolean" } } }, "first_published_at": { "description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string", "format": "date-time" }, "guid": { "type": "string", "pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$" }, "guid_list": { "type": "array", "items": { "$ref": "#/definitions/guid" }, "_uniqueItems": true }, "locale": { "type": "string", "enum": [ "ar", "az", "be", "bg", "bn", "cs", "cy", "da", "de", "dr", "el", "en", "es", "es-419", "et", "fa", "fi", "fr", "gd", "he", "hi", "hr", "hu", "hy", "id", "is", "it", "ja", "ka", "kk", "ko", "lt", "lv", "ms", "mt", "nl", "no", "pl", "ps", "pt", "ro", "ru", "si", "sk", "sl", "so", "sq", "sr", "sv", "sw", "ta", "th", "tk", "tr", "uk", "ur", "uz", "vi", "zh", "zh-hk", "zh-tw" ] }, "public_updated_at": { "description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string", "format": "date-time" }, "publishing_app_name": { "description": "The application that published this item.", "type": "string", "enum": [ "calculators", "calendars", "collections-publisher", "contacts", "content-publisher", "content-tagger", "email-alert-frontend", "external-link-tracker", "feedback", "frontend", "government-frontend", "hmrc-manuals-api", "info-frontend", "licencefinder", "local-links-manager", "manuals-frontend", "manuals-publisher", "maslow", "performanceplatform-big-screen-view", "publisher", "rummager", "search-admin", "search-api", "service-manual-publisher", "share-sale-publisher", "short-url-manager", "smartanswers", "special-route-publisher", "specialist-publisher", "static", "tariff", "travel-advice-publisher", "whitehall" ] }, "rendering_app": { "description": "The application that renders this item.", "type": "string", "enum": [ "calculators", "calendars", "collections", "content-store", "email-alert-frontend", "email-campaign-frontend", "feedback", "finder-frontend", "frontend", "government-frontend", "info-frontend", "licencefinder", "manuals-frontend", "performanceplatform-big-screen-view", "rummager", "search-api", "service-manual-frontend", "smartanswers", "spotlight", "static", "tariff", "whitehall-admin", "whitehall-frontend" ] }, "route": { "type": "object", "required": [ "path", "type" ], "additionalProperties": false, "properties": { "path": { "type": "string" }, "type": { "enum": [ "prefix", "exact" ] } } }, "routes": { "type": "array", "items": { "$ref": "#/definitions/route" }, "minItems": 1 }, "taxonomy_internal_name": { "description": "An internal name for taxonomy admin interfaces. Includes parent.", "type": "string" }, "title": { "type": "string" }, "update_type": { "enum": [ "major", "minor", "republish" ] } } }
o21402
{ "properties": { "point1": { "properties": { "latitude": { "description": "The latitude coordinate of point 1", "type": "number" }, "longitude": { "description": "The longitude coordinate of point 1", "type": "number" } }, "required": [ "latitude", "longitude" ], "type": "object" }, "point2": { "properties": { "latitude": { "description": "The latitude coordinate of point 2", "type": "number" }, "longitude": { "description": "The longitude coordinate of point 2", "type": "number" } }, "required": [ "latitude", "longitude" ], "type": "object" } }, "required": [ "point1", "point2" ], "type": "object" }
calculate_distance_88419f08
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement": { "description": "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", "properties": { "key": { "description": "The label key that the selector applies to.", "type": "string" }, "operator": { "description": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.", "type": "string" }, "values": { "description": "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. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.", "items": { "type": "string" }, "type": "array" } }, "required": [ "key", "operator" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm": { "description": "A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.", "properties": { "matchExpressions": { "description": "A list of node selector requirements by node's labels.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement" }, "type": "array" }, "matchFields": { "description": "A list of node selector requirements by node's fields.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorRequirement" }, "type": "array" } }, "type": "object" } }, "description": "An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).", "properties": { "preference": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_NodeSelectorTerm", "description": "A node selector term, associated with the corresponding weight." }, "weight": { "description": "Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.", "format": "int32", "type": [ "integer", "null" ] } }, "required": [ "weight", "preference" ], "type": "object" }
kb_757_Normalized
{ "properties": { "customer_name": { "description": "Name of the customer", "type": "string" }, "items": { "description": "List of items in the invoice", "items": { "properties": { "name": { "description": "Name of the item", "type": "string" }, "price": { "description": "Price of the item", "type": "number" }, "quantity": { "description": "Quantity of the item", "type": "integer" } }, "required": [ "name", "quantity", "price" ], "type": "object" }, "type": "array" } }, "required": [ "customer_name", "items" ], "type": "object" }
generate_invoice_7d26bb35
{ "$schema": "http://json-schema.org/draft-04/schema", "additionalProperties": false, "definitions": { "___traits_trait_additional_properties_json": { "$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": {}, "description": "A grab-bag object for non-validatable data.", "title": "Has additional properties", "type": "object" }, "___traits_trait_id_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A globally unique identifier of the content in the ANS repository.", "title": "Globally Unique ID trait", "type": "string" }, "___traits_trait_slug_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A short reference name for internal editorial use", "title": "Slug", "type": "string" }, "___traits_trait_subtype_json": { "$schema": "http://json-schema.org/draft-04/schema#", "description": "A user-defined categorization method to supplement type. In Arc, this field is reserved for organization-defined purposes, such as selecting the PageBuilder template that should be used to render a document.", "title": "Subtype or Template", "type": "string" } }, "description": "Models a keyword used in describing a piece of content.", "properties": { "_id": { "$ref": "#/definitions/___traits_trait_id_json" }, "additional_properties": { "$ref": "#/definitions/___traits_trait_additional_properties_json" }, "description": { "description": "A more detailed description of the tag.", "type": "string" }, "slug": { "$ref": "#/definitions/___traits_trait_slug_json" }, "subtype": { "$ref": "#/definitions/___traits_trait_subtype_json" }, "text": { "description": "The text of the tag as displayed to users.", "type": "string" }, "type": { "enum": [ "tag" ] } }, "required": [ "text" ], "title": "Tag", "type": "object" }
wp_119_Normalized
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": { "_format": "date-time", "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", "type": "string" } }, "description": "VolumeError captures an error encountered during a volume operation.", "properties": { "message": { "description": "String detailing the error encountered during Attach or Detach operation. This string may be logged, so it should not contain sensitive information.", "type": [ "string", "null" ] }, "time": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time the error was encountered." } }, "type": "object" }
kb_1130_Normalized
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://mcda.drugis.org/eventsSampleSizeEffect.json#", "title": "MCDA events, sample size effect for the performance table entry of absolute data", "type": "object", "required": [ "type", "value", "input" ], "additionalProperties": false, "properties": { "type": { "type": "string", "enum": [ "exact" ] }, "value": { "type": "number" }, "input": { "type": "object", "required": [ "events", "sampleSize" ], "additionalProperties": false, "properties": { "events": { "type": "number" }, "sampleSize": { "type": "number" } } } } }
o37088
{ "description": "A party is a person, project or organization related to a package.", "properties": { "email": { "oneOf": [ { "description": "Email for this party.", "title": "email", "type": "string" }, { "type": "null" } ] }, "name": { "oneOf": [ { "description": "URL to a primary web page for this party.", "title": "url", "type": "string" }, { "type": "null" } ] }, "type": { "oneOf": [ { "description": "the type of this party: One of: person, project, organization", "enum": [ "person", "project", "organization" ], "title": "party type", "type": "string" }, { "type": "null" } ] }, "url": { "oneOf": [ { "type": "string" }, { "type": "null" } ] } }, "title": "party", "type": "object" }
o89987
{ "id": "https://almanak.github.io/schemas/people.aarhusteater.json", "$schema": "http://json-schema.org/draft-04/schema#", "title": "people.aarhusteater", "description": "Schema for all personnel resources at Aarhus Teater.", "type": "object", "_meta": { "indexProperties": [ "id", "domain", "schema", "occupation", "date_from", "date_to" ], "systemProperties": [ "uuid", "id", "domain", "schema", "scheme", "created", "created_by", "updated", "updated_by", "status" ], "fulltextProperties": [ "description" ], "autocompleteProperties": [ "display_label" ] }, "required": [ "lastnames", "gender" ], "properties": { "uuid": { "type": "string", "title": "Universal unique identifier", "description": "UUID1. Assigned by system", "pattern": "[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}" }, "id": { "type": "string", "title": "Resourcespecifik ID", "description": "9-cifret l\u00f8benummer semi-specifik for resourcetypen. Assigned by system", "maxLength": 9, "pattern": "^[0-9]{9}$" }, "domain": { "type": "string", "enum": [ "records", "people", "organisations", "families", "events", "places", "concepts", "things" ], "title": "Resourcetype", "description": "S\u00e6ttes kun n\u00e5r der v\u00e6lges skema til oprettelse. Ellers fastsat." }, "schema": { "type": "string", "title": "Skema", "description": "S\u00e6ttes kun n\u00e5r der v\u00e6lges skema til oprettelse. Ellers fastsat." }, "created": { "type": "string", "format": "date-time", "title": "Skabt", "description": "Datetime for skabelse af metadata-ressourcen" }, "created_by": { "type": "string", "maxLength": 255, "title": "Skabt af", "description": "Brugernavn/ID p\u00e5 skaber/oploader af metadata-ressourcen" }, "updated": { "type": "string", "format": "date-time", "title": "Senest opdateret", "description": "Datetime for seneste opdatering af ressourcen" }, "updated_by": { "type": "string", "maxLength": 255, "title": "Senest opdateret af", "description": "Brugernavn p\u00e5 seneste opdaterer af metadata-ressourcen" }, "status": { "type": "string", "enum": [ "validated", "machine-generated", "user-generated" ], "title": "Status", "default": "user-generated" }, "display_label": { "type": "string", "maxLength": 255, "title": "Displaynavn", "description": "Den streng, som entiteten repr\u00e6senteres med" }, "description": { "type": "string", "maxLength": 5000, "title": "Beskrivelse" }, "sources": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "title": "Kilder", "description": "URL-links eller enkeltlinje referencer" }, "portrait": { "type": "string", "maxLength": 255, "format": "uri", "title": "Portr\u00e6t" }, "firstnames": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "description": "Alle fornavne i korrekt r\u00e6kkef\u00f8lge", "title": "Fornavne" }, "birthname": { "type": "string", "title": "Pigenavn (f\u00f8dt)", "description": "Det eller de efternavne som vedkommende havde f\u00f8r giftem\u00e5l.", "maxLength": 255 }, "lastnames": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "title": "Mellem- og efternavne", "description": "Alle nuv\u00e6rende mellem og efternavne i korrekt r\u00e6kkef\u00f8lge" }, "gender": { "type": "string", "enum": [ "mand", "kvinde", "ukendt" ], "title": "K\u00f8n", "description": "Selvforklarende" }, "occupation": { "type": "array", "description": "B\u00f8r v\u00e6re en brance-betegnelse fra DB07", "items": { "type": "string", "maxLength": 255 }, "_uniqueItems": true, "title": "Erhverv" }, "date_from": { "type": "string", "format": "date", "maxLength": 255, "title": "F\u00f8dselsdato (\u00e5\u00e5\u00e5\u00e5-mm-dd)", "pattern": "^([0-9]{4})(-([0-9]{2}))?(-([0-9]{2}))?$" }, "place_of_birth": { "type": "string", "maxLength": 255, "title": "F\u00f8dselssted" }, "date_to": { "type": "string", "format": "date", "maxLength": 255, "title": "D\u00f8dsdato (\u00e5\u00e5\u00e5\u00e5-mm-dd)", "pattern": "^([0-9]{4})(-([0-9]{2}))?(-([0-9]{2}))?$" }, "place_of_death": { "type": "string", "maxLength": 255, "title": "D\u00f8dssted" }, "ext_data": { "type": "object", "title": "Udvided metadata", "properties": { "original_id": { "type": "string", "maxLength": 255, "title": "Originalt ID" }, "place_of_education": { "type": "string", "maxLength": 255, "title": "Uddannelsessted" }, "year_of_graduation": { "type": "string", "pattern": "^[0-9]{4}$", "title": "Uddannelses\u00e5r" } } } } }
o1052
{ "properties": { "end_date": { "description": "The end date of the expense tracking", "type": "string" }, "expenses": { "items": { "properties": { "amount": { "description": "The amount of the expense", "type": "number" }, "category": { "description": "The category of the expense", "type": "string" }, "date": { "description": "The date of the expense", "type": "string" } }, "required": [ "date", "category", "amount" ], "type": "object" }, "type": "array" }, "start_date": { "description": "The start date of the expense tracking", "type": "string" } }, "required": [ "expenses" ], "type": "object" }
track_expenses_c8268204
{ "additionalProperties": false, "description": "Specifies how to describe an external source.", "properties": { "path": { "_id": "path", "description": "Full path to the source (may include port number)", "title": "Path schema.", "type": "string" }, "referenceId": { "_id": "referenceId", "description": "Which property should we use to name the feature.", "title": "ReferenceId schema.", "type": "string" }, "refreshIntervalMSec": { "_id": "refreshIntervalMSec", "description": "Interval in milliseconds to refresh the source.", "title": "RefreshIntervalMSec schema.", "type": "integer" }, "type": { "_id": "type", "description": "Specify the subscriber to use.", "enum": [ "REST" ], "title": "Type schema." } }, "required": [ "type", "path", "referenceId", "refreshIntervalMSec" ], "title": "Subscriber schema.", "type": "object" }
o15105
{ "properties": { "dimensions": { "description": "The dimensions of the shape", "properties": { "base": { "description": "The base of the shape", "type": "number" }, "height": { "description": "The height of the shape", "type": "number" }, "length": { "description": "The length of the shape", "type": "number" }, "radius": { "description": "The radius of the shape", "type": "number" }, "width": { "description": "The width of the shape", "type": "number" } }, "type": "object" }, "shape": { "description": "The type of shape (e.g. circle, rectangle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_aaa98eda
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference": { "description": "LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.", "properties": { "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" } }, "type": "object" } }, "description": "Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": [ "string", "null" ] }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": [ "boolean", "null" ] }, "secretRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_core_v1_LocalObjectReference", "description": "Optional: points to a secret object containing parameters used to connect to OpenStack." }, "volumeID": { "description": "volume id used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": [ "string", "null" ] } }, "required": [ "volumeID" ], "type": "object" }
kb_80_Normalized
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Action target template", "type": "object", "properties": { "name": { "description": "A name to identify the action target template. **Remark**: Name is unique in the organization.", "type": "string" }, "organizationId": { "description": "The organization to link the event source template", "type": "integer" }, "public": { "description": "Make the action target template available to everybody.", "type": "boolean" }, "configuration": { "description": "Providing a schema aims to help the WUI for configuration.", "type": "object", "properties": { "schema": { "description": "A valid JSON Schema.", "type": "object" }, "url": { "description": "The configuration URL.", "type": "string" }, "token": { "description": "JSON Web Token to be authenticated when contacting the configuration URL.", "type": "string" } }, "required": [ "schema", "url" ] }, "configurationUi": { "description": "Provide the configuration for the dynamic UI.", "type": "object", "properties": { "schemaForm": { "description": "Valid form schema accordingly to: http://schemaform.io", "type": "array" } } }, "target": { "description": "The target configuration.", "type": "object", "properties": { "url": { "description": "The action target URL.", "type": "string" }, "token": { "description": "JSON Web Token to be authenticated when contacting the action target URL.", "type": "string" } }, "required": [ "url" ] } }, "required": [ "name", "organizationId", "target" ] }
o14457
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1beta1_ClusterRoleBinding": { "description": "ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoleBinding, and will no longer be served in v1.20.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "ClusterRoleBinding" ], "type": "string" }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata." }, "roleRef": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1beta1_RoleRef", "description": "RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error." }, "subjects": { "description": "Subjects holds references to the objects the role applies to.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1beta1_Subject" }, "type": "array" } }, "required": [ "roleRef" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "rbac.authorization.k8s.io", "kind": "ClusterRoleBinding", "version": "v1beta1" } ] }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1beta1_RoleRef": { "description": "RoleRef contains information that points to the role being used", "properties": { "apiGroup": { "description": "APIGroup is the group for the resource being referenced", "type": "string" }, "kind": { "description": "Kind is the type of resource being referenced", "type": "string" }, "name": { "description": "Name is the name of resource being referenced", "type": "string" } }, "required": [ "apiGroup", "kind", "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1beta1_Subject": { "description": "Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names.", "properties": { "apiGroup": { "description": "APIGroup holds the API group of the referenced subject. Defaults to \"\" for ServiceAccount subjects. Defaults to \"rbac.authorization.k8s.io\" for User and Group subjects.", "type": "string" }, "kind": { "description": "Kind of object being referenced. Values defined by this API group are \"User\", \"Group\", and \"ServiceAccount\". If the Authorizer does not recognized the kind value, the Authorizer should report an error.", "type": "string" }, "name": { "description": "Name of the object being referenced.", "type": "string" }, "namespace": { "description": "Namespace of the referenced object. If the object kind is non-namespace, such as \"User\" or \"Group\", and this value is not empty the Authorizer should report an error.", "type": "string" } }, "required": [ "kind", "name" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": { "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff", "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta": { "description": "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.", "properties": { "continue": { "description": "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.", "type": "string" }, "remainingItemCount": { "_format": "int64", "description": "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.", "type": "integer" }, "resourceVersion": { "description": "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", "type": "string" }, "selfLink": { "description": "selfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": { "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.", "properties": { "apiVersion": { "description": "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.", "type": "string" }, "fieldsType": { "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"", "type": "string" }, "fieldsV1": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1", "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type." }, "manager": { "description": "Manager is an identifier of the workflow managing these fields.", "type": "string" }, "operation": { "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.", "type": "string" }, "time": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": { "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.", "properties": { "annotations": { "additionalProperties": { "type": "string" }, "description": "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: http://kubernetes.io/docs/user-guide/annotations", "type": "object" }, "clusterName": { "description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.", "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "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.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "deletionGracePeriodSeconds": { "_format": "int64", "description": "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.", "type": "integer" }, "deletionTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "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.\n\nPopulated 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" }, "finalizers": { "description": "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.", "items": { "type": "string" }, "type": "array", "x-kubernetes-patch-strategy": "merge" }, "generateName": { "description": "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.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency", "type": "string" }, "generation": { "_format": "int64", "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.", "type": "integer" }, "labels": { "additionalProperties": { "type": "string" }, "description": "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: http://kubernetes.io/docs/user-guide/labels", "type": "object" }, "managedFields": { "description": "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.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry" }, "type": "array" }, "name": { "description": "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: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "namespace": { "description": "Namespace defines the space within 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.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces", "type": "string" }, "ownerReferences": { "description": "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.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference" }, "type": "array", "x-kubernetes-patch-merge-key": "uid", "x-kubernetes-patch-strategy": "merge" }, "resourceVersion": { "description": "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.\n\nPopulated 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", "type": "string" }, "selfLink": { "description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" }, "uid": { "description": "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.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": { "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.", "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "blockOwnerDeletion": { "description": "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. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.", "type": "boolean" }, "controller": { "description": "If true, this reference points to the managing controller.", "type": "boolean" }, "kind": { "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "name": { "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "uid": { "description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "required": [ "apiVersion", "kind", "name", "uid" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": { "_format": "date-time", "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", "type": "string" } }, "description": "ClusterRoleBindingList is a collection of ClusterRoleBindings. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoleBindingList, and will no longer be served in v1.20.", "properties": { "apiVersion": { "description": "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", "enum": [ "rbac.authorization.k8s.io/v1beta1" ], "type": [ "string", "null" ] }, "items": { "description": "Items is a list of ClusterRoleBindings", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_rbac_v1beta1_ClusterRoleBinding" }, "type": [ "array", "null" ] }, "kind": { "description": "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", "enum": [ "ClusterRoleBindingList" ], "type": [ "string", "null" ] }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard object's metadata." } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "rbac.authorization.k8s.io", "kind": "ClusterRoleBindingList", "version": "v1beta1" } ] }
kb_93_Normalized
{ "properties": { "address": { "pattern": "^(0x)?(([0-9]|[a-f]|[A-F]){2}){20}$", "type": "string" }, "crypto": { "additionalProperties": false, "properties": { "cipher": { "type": "string" }, "cipherparams": { "type": "object" }, "ciphertext": { "type": "string" }, "kdf": { "type": "string" }, "kdfparams": { "type": "object" }, "mac": { "pattern": "^(([0-9]|[a-f]){2}){32}$", "type": "string" } }, "required": [ "cipher", "cipherparams", "ciphertext", "kdf", "kdfparams", "mac" ], "type": "object" }, "meta": { "type": "string" }, "name": { "type": "string" }, "version": { "minimum": 1, "type": "integer" } }, "required": [ "version", "crypto" ], "type": "object" }
o48549
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "orgName": { "type": "string", "minLength": 1, "maxLength": 255 }, "email": { "type": "string", "format": "email", "maxLength": 1024 }, "role": { "type": "string", "enum": [ "admin", "edit", "collaborate", "view", "none" ] }, "inviteDate": { "type": "string", "format": "date-time" }, "ttl": { "type": "number" } } }
o9939
{ "type": "object", "properties": { "mib": { "type": "string" }, "modules": { "type": "object", "properties": { "processors": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "properties": { "oid": { "type": "string" }, "num_oid": { "type": "string" }, "index": { "type": [ "integer", "string" ] }, "descr": { "type": "string" }, "precision": { "type": "integer" }, "value": { "type": "string" }, "type": { "type": "string" }, "skip_values": { "anyOf": [ { "type": "integer" }, { "type": "array", "items": { "anyOf": [ { "type": "integer" }, { "type": "object", "properties": { "oid": { "type": "string" }, "op": { "$ref": "#/definitions/comparison" }, "value": { "type": "integer" } }, "additionalProperties": false, "required": [ "oid", "op", "value" ] } ] } } ] }, "entPhysicalIndex": { "type": "string" }, "snmp_flags": { "type": [ "string", "array" ] } }, "additionalProperties": false, "required": [ "num_oid", "oid" ] } } }, "additionalProperties": false, "required": [ "data" ] }, "sensors": { "type": "object", "properties": { "state": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "properties": { "oid": { "type": "string" }, "value": { "type": "string" }, "num_oid": { "type": "string", "pattern": "^(\\.\\d+)+\\.?\\{\\{ \\$index \\}\\}(\\.\\d+)*$" }, "descr": { "type": "string" }, "index": { "type": [ "integer", "string" ] }, "states": { "type": "array", "items": { "type": "object", "properties": { "value": { "type": "integer" }, "descr": { "type": "string" }, "graph": { "type": "integer" }, "generic": { "type": "integer" } }, "additionalProperties": false, "required": [ "descr", "generic", "graph", "value" ] } }, "state_name": { "type": "string" }, "skip_values": { "anyOf": [ { "type": "integer" }, { "type": "array", "items": { "type": "object", "properties": { "oid": { "type": "string" }, "op": { "$ref": "#/definitions/comparison" }, "value": { "type": "integer" } }, "required": [ "oid", "op", "value" ] } } ] }, "snmp_flags": { "type": [ "string", "array" ] } }, "required": [ "descr", "num_oid", "oid", "states" ] } }, "options": { "$ref": "#/definitions/options" } }, "required": [ "data" ] }, "voltage": { "$ref": "#/definitions/sensor" }, "fanspeed": { "$ref": "#/definitions/sensor" }, "temperature": { "$ref": "#/definitions/sensor" }, "pre-cache": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "properties": { "oid": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false, "required": [ "oid" ] } } }, "additionalProperties": false, "required": [ "data" ] }, "humidity": { "$ref": "#/definitions/sensor" }, "airflow": { "$ref": "#/definitions/sensor" }, "current": { "$ref": "#/definitions/sensor" }, "frequency": { "$ref": "#/definitions/sensor" }, "power": { "$ref": "#/definitions/sensor" }, "pressure": { "$ref": "#/definitions/sensor" }, "cooling": { "$ref": "#/definitions/sensor" }, "charge": { "$ref": "#/definitions/sensor" }, "runtime": { "$ref": "#/definitions/sensor" }, "dbm": { "$ref": "#/definitions/sensor" }, "load": { "$ref": "#/definitions/sensor" }, "chromatic_dispersion": { "$ref": "#/definitions/sensor" }, "delay": { "$ref": "#/definitions/sensor" }, "quality_factor": { "$ref": "#/definitions/sensor" }, "snr": { "$ref": "#/definitions/sensor" }, "waterflow": { "$ref": "#/definitions/sensor" }, "eer": { "$ref": "#/definitions/sensor" } } } } } }, "additionalProperties": false, "required": [ "modules" ], "definitions": { "sensor": { "type": "object", "properties": { "data": { "$ref": "#/definitions/data" }, "options": { "$ref": "#/definitions/options" } }, "additionalProperties": false, "required": [ "data" ] }, "data": { "type": "array", "items": { "type": "object", "properties": { "oid": { "type": "string" }, "num_oid": { "type": "string", "pattern": "^(\\.\\d+)+\\.?\\{\\{ \\$index \\}\\}(\\.\\d+)*$" }, "index": { "type": [ "integer", "string" ] }, "descr": { "type": "string" }, "divisor": { "type": "integer" }, "value": { "type": "string" }, "skip_values": { "type": [ "number", "array" ], "items": { "type": "object", "properties": { "oid": { "type": "string" }, "op": { "$ref": "#/definitions/comparison" }, "value": { "type": "integer" } }, "additionalProperties": false, "required": [ "oid", "op", "value" ] } }, "snmp_flags": { "type": [ "string", "array" ] }, "entPhysicalIndex": { "type": "string" }, "entPhysicalIndex_measured": { "type": "string" } }, "required": [ "descr", "num_oid", "oid" ] } }, "options": { "type": "object", "properties": { "divisor": { "type": "integer" }, "skip_values": { "anyOf": [ { "type": "integer" }, { "type": "array", "items": { "type": "integer" } } ] }, "skip_values_lt": { "type": "integer" } }, "additionalProperties": false }, "comparison": { "type": "string", "enum": [ "=", "!=", "==", "!==", "<=", ">=", "<", ">", "starts", "ends", "contains", "regex" ] } } }
o20271
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "description": "Overhead structure represents the resource overhead associated with running a pod.", "properties": { "podFixed": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "PodFixed represents the fixed resource overhead associated with running a pod.", "type": [ "object", "null" ] } }, "type": "object" }
kb_654_Normalized
{ "properties": { "project_name": { "description": "The name of the project", "type": "string" }, "tasks": { "items": { "properties": { "end_date": { "description": "The end date of the task", "type": "string" }, "name": { "description": "The name of the task", "type": "string" }, "start_date": { "description": "The start date of the task", "type": "string" } }, "required": [ "name", "start_date", "end_date" ], "type": "object" }, "type": "array" } }, "required": [ "project_name", "tasks" ], "type": "object" }
create_roadmap_b17bb54b
{ "additionalProperties": false, "properties": { "authorizationCode": { "maxLength": 100, "type": "string" }, "clientId": { "description": "MongoDB object ID for the user", "maxLength": 12, "minLength": 12, "pattern": "[0-9a-fA-F]+", "type": "string" }, "expirationTime": { "type": "number" }, "scope": { "type": "string" } }, "title": "OAuthAuthorizationCode", "type": "object" }
o10009
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "search": { "type": "object", "required": [ "resource" ], "properties": { "resource": { "type": "string", "format": "topic", "axRole": "inlet" } } }, "i18n": { "type": "object", "properties": { "locale": { "type": "string", "format": "topic", "axRole": "inlet", "default": "default" } } } } }
o9366
{ "title": "Team Format", "description": "This is a schema defining the strict format for writing a list of team members.", "$schema": "http://json-schema.org/draft-04/schema#", "id": "http://jsonschema.net", "type": "array", "items": { "type": "object", "properties": { "firstName": { "type": "string" }, "lastName": { "type": "string" }, "identity": { "type": "string" }, "role": { "type": "string" } }, "required": [ "firstName", "lastName", "identity", "role" ] }, "minItems": 1, "additionalItems": false }
o35798
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_DeleteOptions": { "description": "DeleteOptions may be provided when deleting an API object.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "dryRun": { "description": "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", "items": { "type": "string" }, "type": "array" }, "gracePeriodSeconds": { "_format": "int64", "description": "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.", "type": "integer" }, "kind": { "description": "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", "enum": [ "DeleteOptions" ], "type": "string" }, "orphanDependents": { "description": "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.", "type": "boolean" }, "preconditions": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Preconditions", "description": "Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned." }, "propagationPolicy": { "description": "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.", "type": "string" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "DeleteOptions", "version": "v1" }, { "group": "admission.k8s.io", "kind": "DeleteOptions", "version": "v1" }, { "group": "admission.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "admissionregistration.k8s.io", "kind": "DeleteOptions", "version": "v1" }, { "group": "admissionregistration.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "apiextensions.k8s.io", "kind": "DeleteOptions", "version": "v1" }, { "group": "apiextensions.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "apiregistration.k8s.io", "kind": "DeleteOptions", "version": "v1" }, { "group": "apiregistration.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "apps", "kind": "DeleteOptions", "version": "v1" }, { "group": "apps", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "apps", "kind": "DeleteOptions", "version": "v1beta2" }, { "group": "auditregistration.k8s.io", "kind": "DeleteOptions", "version": "v1alpha1" }, { "group": "authentication.k8s.io", "kind": "DeleteOptions", "version": "v1" }, { "group": "authentication.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "authorization.k8s.io", "kind": "DeleteOptions", "version": "v1" }, { "group": "authorization.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "autoscaling", "kind": "DeleteOptions", "version": "v1" }, { "group": "autoscaling", "kind": "DeleteOptions", "version": "v2beta1" }, { "group": "autoscaling", "kind": "DeleteOptions", "version": "v2beta2" }, { "group": "batch", "kind": "DeleteOptions", "version": "v1" }, { "group": "batch", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "batch", "kind": "DeleteOptions", "version": "v2alpha1" }, { "group": "certificates.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "coordination.k8s.io", "kind": "DeleteOptions", "version": "v1" }, { "group": "coordination.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "discovery.k8s.io", "kind": "DeleteOptions", "version": "v1alpha1" }, { "group": "discovery.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "events.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "extensions", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "flowcontrol.apiserver.k8s.io", "kind": "DeleteOptions", "version": "v1alpha1" }, { "group": "imagepolicy.k8s.io", "kind": "DeleteOptions", "version": "v1alpha1" }, { "group": "networking.k8s.io", "kind": "DeleteOptions", "version": "v1" }, { "group": "networking.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "node.k8s.io", "kind": "DeleteOptions", "version": "v1alpha1" }, { "group": "node.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "policy", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "rbac.authorization.k8s.io", "kind": "DeleteOptions", "version": "v1" }, { "group": "rbac.authorization.k8s.io", "kind": "DeleteOptions", "version": "v1alpha1" }, { "group": "rbac.authorization.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "scheduling.k8s.io", "kind": "DeleteOptions", "version": "v1" }, { "group": "scheduling.k8s.io", "kind": "DeleteOptions", "version": "v1alpha1" }, { "group": "scheduling.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "settings.k8s.io", "kind": "DeleteOptions", "version": "v1alpha1" }, { "group": "storage.k8s.io", "kind": "DeleteOptions", "version": "v1" }, { "group": "storage.k8s.io", "kind": "DeleteOptions", "version": "v1alpha1" }, { "group": "storage.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" } ] }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": { "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff", "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": { "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.", "properties": { "apiVersion": { "description": "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.", "type": "string" }, "fieldsType": { "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"", "type": "string" }, "fieldsV1": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1", "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type." }, "manager": { "description": "Manager is an identifier of the workflow managing these fields.", "type": "string" }, "operation": { "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.", "type": "string" }, "time": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": { "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.", "properties": { "annotations": { "additionalProperties": { "type": "string" }, "description": "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: http://kubernetes.io/docs/user-guide/annotations", "type": "object" }, "clusterName": { "description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.", "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "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.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "deletionGracePeriodSeconds": { "_format": "int64", "description": "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.", "type": "integer" }, "deletionTimestamp": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "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.\n\nPopulated 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" }, "finalizers": { "description": "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.", "items": { "type": "string" }, "type": "array", "x-kubernetes-patch-strategy": "merge" }, "generateName": { "description": "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.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency", "type": "string" }, "generation": { "_format": "int64", "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.", "type": "integer" }, "labels": { "additionalProperties": { "type": "string" }, "description": "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: http://kubernetes.io/docs/user-guide/labels", "type": "object" }, "managedFields": { "description": "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.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry" }, "type": "array" }, "name": { "description": "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: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "namespace": { "description": "Namespace defines the space within 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.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces", "type": "string" }, "ownerReferences": { "description": "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.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference" }, "type": "array", "x-kubernetes-patch-merge-key": "uid", "x-kubernetes-patch-strategy": "merge" }, "resourceVersion": { "description": "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.\n\nPopulated 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", "type": "string" }, "selfLink": { "description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" }, "uid": { "description": "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.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": { "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.", "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "blockOwnerDeletion": { "description": "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. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.", "type": "boolean" }, "controller": { "description": "If true, this reference points to the managing controller.", "type": "boolean" }, "kind": { "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "name": { "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "uid": { "description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "required": [ "apiVersion", "kind", "name", "uid" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Preconditions": { "description": "Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.", "properties": { "resourceVersion": { "description": "Specifies the target ResourceVersion", "type": "string" }, "uid": { "description": "Specifies the target UID.", "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_Time": { "_format": "date-time", "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", "type": "string" } }, "description": "Eviction evicts a pod from its node subject to certain policies and safety constraints. This is a subresource of Pod. A request to cause such an eviction is created by POSTing to .../pods/<pod name>/evictions.", "properties": { "apiVersion": { "description": "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", "type": [ "string", "null" ] }, "deleteOptions": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_DeleteOptions", "description": "DeleteOptions may be provided" }, "kind": { "description": "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", "enum": [ "Eviction" ], "type": [ "string", "null" ] }, "metadata": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "ObjectMeta describes the pod that is being evicted." } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "policy", "kind": "Eviction", "version": "v1beta1" } ] }
kb_336_Normalized
{ "_copyright": "Copyright (c) 2014 Juniper Networks, Inc. All rights reserved.", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "id": { "type": "string" }, "category": { "type": "string" }, "type": { "type": "string" }, "version": { "type": "string" }, "path": { "type": "string" }, "parameters": { "type": "object", "properties": { "puppet_manifest_version": { "type": "string" }, "kickstart": { "type": "string" }, "version": { "type": "string" }, "kickseed": { "type": "string" }, "sequence_provisioning_available": { "type": "boolean" } } }, "cgrid": { "type": "string" } }, "required": [ "id" ] }
o8492
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "array", "items": { "type": "object", "properties": { "id": { "type": "number" }, "unlock_details": { "type": "string" }, "unlock_items": { "type": "array", "items": { "type": "number" } }, "order": { "type": "number" }, "icon": { "type": "string" }, "name": { "type": "string" } }, "required": [ "id", "unlock_details", "unlock_items", "order", "icon", "name" ] }, "properties": {}, "additionalProperties": false }
o45171
{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "anyOf": [ { "required": [ "deliveryTypes" ], "title": "capability" }, { "required": [ "performanceAnalysisTypes" ], "title": "capability" }, { "required": [ "securityTypes" ], "title": "capability" }, { "required": [ "softwareDevelopmentTypes" ], "title": "capability" }, { "required": [ "supportAndOperationsTypes" ], "title": "capability" }, { "required": [ "testingAndAuditingTypes" ], "title": "capability" }, { "required": [ "userExperienceAndDesignTypes" ], "title": "capability" }, { "required": [ "userResearchTypes" ], "title": "capability" } ], "properties": { "accessibleApplicationsOutcomes": { "enum": [ true ] }, "bespokeSystemInformation": { "enum": [ true ] }, "dataProtocols": { "enum": [ true ] }, "deliveryTypes": { "items": { "enum": [ "Agile coaching", "Agile delivery", "Business analysis", "Digital communication and engagement", "Product management", "Programme management", "Project management", "Service management" ] }, "maxItems": 8, "minItems": 1, "type": "array", "_uniqueItems": true }, "helpGovernmentImproveServices": { "enum": [ true ] }, "locations": { "items": { "enum": [ "Offsite", "Scotland", "North East England", "North West England", "Yorkshire and the Humber", "East Midlands", "West Midlands", "East of England", "Wales", "London", "South East England", "South West England", "Northern Ireland" ] }, "maxItems": 13, "minItems": 1, "type": "array", "_uniqueItems": true }, "openStandardsPrinciples": { "enum": [ true ] }, "performanceAnalysisTypes": { "items": { "enum": [ "A/B and multivariate testing", "Data analysis", "Data cleansing", "Data visualisation", "Performance frameworks", "Performance reporting", "Statistical modelling", "Web analytics" ] }, "maxItems": 8, "minItems": 1, "type": "array", "_uniqueItems": true }, "securityTypes": { "items": { "enum": [ "CESG information assurance certification", "Firewall audit", "Incident response and forensics", "Infrastructure review", "IT health check", "Risk management", "Security policy", "Threat modelling", "Vulnerability and penetration testing" ] }, "maxItems": 9, "minItems": 1, "type": "array", "_uniqueItems": true }, "softwareDevelopmentTypes": { "items": { "enum": [ "API development", "Cloud-based service development", "Content management system", "Customer relationship management", "Database development", "Desktop application development", "Front-end web application development", "Game development", "Geographic information systems (GIS) development", "Machine learning", "Mainframe", "Message queues", "Mobile application development", "Search", "Systems integration", "Web application development" ] }, "maxItems": 16, "minItems": 1, "type": "array", "_uniqueItems": true }, "supportAndOperationsTypes": { "items": { "enum": [ "Customer support", "Firewall management", "Hosting", "Incident management", "Monitoring", "Network administration", "Service desk", "Systems administration", "Tooling" ] }, "maxItems": 9, "minItems": 1, "type": "array", "_uniqueItems": true }, "testingAndAuditingTypes": { "items": { "enum": [ "Accessibility testing", "Application testing", "Data auditing", "Load and performance testing", "Process auditing", "Software auditing", "System auditing" ] }, "maxItems": 7, "minItems": 1, "type": "array", "_uniqueItems": true }, "userExperienceAndDesignTypes": { "items": { "enum": [ "Accessibility", "Animation", "Brand development", "Content design and copywriting", "Cross-platform design", "Information architecture", "Interaction design", "Prototyping", "Service design", "User experience and design strategy" ] }, "maxItems": 10, "minItems": 1, "type": "array", "_uniqueItems": true }, "userResearchTypes": { "items": { "enum": [ "Creating personas", "Quantitative research", "Usability testing", "User journey mapping", "User needs and insights" ] }, "maxItems": 5, "minItems": 1, "type": "array", "_uniqueItems": true } }, "required": [ "accessibleApplicationsOutcomes", "bespokeSystemInformation", "dataProtocols", "helpGovernmentImproveServices", "locations", "openStandardsPrinciples" ], "title": "Digital Outcomes and Specialists 4 Digital outcomes Service Schema", "type": "object" }
o21112
{ "id": "http://schemas.triniti.io/json-schema/triniti/canvas/mixin/gallery-block/1-0-1.json#", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "etag": { "type": "string", "pattern": "^[\\w\\.:-]+$", "pbj": { "type": "string", "rule": "single" } }, "css_class": { "type": "string", "pattern": "^[\\w\\s-]+$", "description": "In rendering environments that support HTML the css_class can be appended to the dom elements' class attribute.", "pbj": { "type": "string", "rule": "single" } }, "updated_date": { "type": "string", "format": "date-time", "description": "Represents an update that occurred on the node this block is attached to. DOES NOT indicate an update to the block itself. eg an article with a twitter block with updated_date means that the article was updated to include that twitter block.", "pbj": { "type": "date-time", "rule": "single" } }, "aside": { "type": "boolean", "description": "When true it means this block represents a portion of a document whose content is only indirectly related to the document's main content. Asides are frequently presented as sidebars or call-out boxes.", "pbj": { "type": "boolean", "rule": "single" } }, "node_ref": { "type": "string", "pattern": "^[\\w\\/\\.:-]+$", "pbj": { "type": "identifier", "rule": "single" } }, "title": { "type": "string", "minLength": 0, "maxLength": 255, "description": "An optional override for the title of the node.", "pbj": { "type": "string", "rule": "single" } }, "launch_text": { "type": "string", "minLength": 0, "maxLength": 255, "pbj": { "type": "string", "rule": "single" } }, "poster_image_ref": { "type": "string", "pattern": "^[\\w\\/\\.:-]+$", "description": "A reference to an image asset to use as the poster that will override what is provided by the target gallery.", "pbj": { "type": "identifier", "rule": "single" } }, "start_at_poster": { "type": "boolean", "default": true, "description": "When true the gallery should open at the poster image selected. This assumes the poster image is also in the selected gallery.", "pbj": { "type": "boolean", "rule": "single" } } }, "required": [ "node_ref" ], "additionalProperties": true }
o82655
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the triangle", "type": "number" }, "height": { "description": "The height of the triangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "side_length": { "description": "The side length of the square", "type": "number" } }, "required": [], "type": "object" }, "shape": { "description": "The shape to calculate the area for (circle, square, triangle, etc.)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_9861dcfd
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "items": { "type": "array", "items": { "title": "Workflow", "description": "Schema for a single Workflow", "type": "object", "properties": { "id": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "flowId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "applicationId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "creationDate": { "type": "string", "format": "date-time" }, "lastUpdated": { "type": "string", "format": "date-time" }, "name": { "type": "string", "minLength": 1, "maxLength": 255 }, "description": { "type": "string", "maxLength": 32767 }, "iconData": { "type": "string", "maxLength": 32767, "pattern": "^data:image/(jpg|jpeg|png|svg\\+xml);base64,[0-9a-zA-Z+/=]*$" }, "enabled": { "type": "boolean" }, "defaultVersionId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "minimumAgentVersion": { "type": "string", "pattern": "^(0|([1-9]\\d*))\\.(0|([1-9]\\d*))\\.(0|([1-9]\\d*))$" }, "flowClass": { "type": "string", "enum": [ "cloud", "edge", "experience", "customNode" ] }, "triggers": { "type": "array", "items": { "oneOf": [ { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "customNodeStart", "deviceCommand", "deviceIdConnect", "deviceTagConnect", "deviceIdDisconnect", "deviceTagDisconnect", "integration", "notebook", "onBoot", "onConnect", "onDisconnect", "request", "udp", "webhook" ] }, "config": { "type": "object", "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "customNodeStart", "deviceCommand", "deviceIdsTagsConnect", "deviceIdsTagsDisconnect", "flowError", "googlePubSub", "meridian", "mqtt", "notebook", "onBoot", "onConnect", "onDisconnect", "particle", "request", "udp", "webhook" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "triggerId": { "type": "string", "maxLength": 48 }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "dataTable" ] }, "config": { "type": "object", "properties": { "bulkInsert": { "type": "boolean" }, "delete": { "type": "boolean" }, "insert": { "type": "boolean" }, "update": { "type": "boolean" } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "dataTable" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "deviceId", "deviceTag" ] }, "config": { "type": "object", "properties": { "attributeBlacklist": { "type": "array", "maxItems": 100, "items": { "type": "string", "pattern": "^[0-9a-zA-Z_-]{1,255}$" } }, "attributeWhitelist": { "type": "array", "maxItems": 100, "items": { "type": "string", "pattern": "^[0-9a-zA-Z_-]{1,255}$" } }, "maxAge": { "type": "number" } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "deviceIdsTags", "device", "deviceTag" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 }, "timeUnit": { "type": "string", "maxLength": 48 }, "maxAgeToggle": { "type": "boolean" }, "allowedAttributeType": { "type": "string", "enum": [ "attributeWhitelist", "any", "attributeBlacklist" ] } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "deviceIdInactivity", "deviceTagInactivity" ] }, "config": { "type": "object", "properties": { "seconds": { "type": "number" } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "deviceIdsTagsInactivity" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "endpoint" ] }, "config": { "type": "object", "properties": { "experienceVersion": { "type": "string", "minLength": 1, "maxLength": 255 } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "endpoint" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "event" ] }, "config": { "type": "object", "properties": { "subject": { "type": "string", "maxLength": 255 }, "new": { "type": "boolean" }, "acknowledged": { "type": "boolean" }, "resolved": { "type": "boolean" } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "event" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "fileTail" ] }, "config": { "type": "object", "properties": { "path": { "type": "string", "maxLength": 1024 }, "encoding": { "type": "string", "maxLength": 48 }, "byteLength": { "type": "string", "maxLength": 48 }, "delimiter": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "fileTail" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "fileWatch" ] }, "config": { "type": "object", "properties": { "path": { "type": "string", "maxLength": 1024 }, "fileAdded": { "type": "boolean" }, "fileChanged": { "type": "boolean" }, "fileRemoved": { "type": "boolean" }, "directoryAdded": { "type": "boolean" }, "directoryRemoved": { "type": "boolean" } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "fileWatch" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "flowError" ] }, "config": { "type": "object", "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "flowError" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "mqttTopic" ] }, "config": { "type": "object", "properties": { "integrationId": { "type": "string", "enum": [ "losant", "local" ] } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "mqtt" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "triggerId": { "type": "string", "maxLength": 48 }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "opcua" ] }, "config": { "type": "object", "properties": { "uri": { "type": "string", "maxLength": 1024 }, "securityPolicy": { "type": "string", "maxLength": 255 }, "securityMode": { "type": "string", "maxLength": 255 }, "username": { "type": "string", "maxLength": 1024 }, "password": { "type": "string", "maxLength": 1024 }, "cert": { "type": "string", "maxLength": 32767 }, "privateKey": { "type": "string", "maxLength": 32767 }, "nameSpace": { "type": "string", "maxLength": 255 }, "identifier": { "type": "string", "maxLength": 255 }, "samplingInterval": { "type": "string", "maxLength": 255 }, "eventFilter": { "type": "array", "maxItems": 100, "items": { "type": "string", "maxLength": 255 } } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "opcua" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "redis" ] }, "config": { "type": "object", "properties": { "host": { "type": "string", "maxLength": 1024 }, "port": { "type": "string", "maxLength": 16 }, "password": { "type": "string", "maxLength": 1024 }, "topic": { "type": "string", "maxLength": 1024 }, "fileAdded": { "type": "boolean" }, "fileChanged": { "type": "boolean" }, "fileRemoved": { "type": "boolean" }, "directoryAdded": { "type": "boolean" }, "directoryRemoved": { "type": "boolean" } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "redisTrigger" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "serial" ] }, "config": { "type": "object", "properties": { "path": { "type": "string", "maxLength": 1024 }, "baudRate": { "type": "number" }, "encoding": { "type": "string", "maxLength": 48 }, "writeOnOpen": { "type": "string", "maxLength": 1024 }, "byteLength": { "type": "string", "maxLength": 48 }, "delimiter": { "type": "string", "maxLength": 48 } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "serial" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 }, "parseBy": { "type": "string", "enum": [ "byteLength", "delimiter" ] } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "timer" ] }, "config": { "type": "object", "properties": { "seconds": { "type": "number" }, "cron": { "type": "string", "maxLength": 255 }, "tz": { "type": "string", "maxLength": 255 } }, "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "timer" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 }, "timerTypeSelect": { "type": "string", "enum": [ "cronWeekly", "seconds", "cron" ] }, "timeAt": { "type": "string", "maxLength": 255 }, "timezone": { "type": "string", "maxLength": 255 }, "weekdays": { "type": "array", "maxItems": 7, "items": { "type": "number" } } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false }, { "type": "object", "properties": { "key": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "enum": [ "virtualButton" ] }, "config": { "type": "object", "additionalProperties": false }, "meta": { "type": "object", "properties": { "category": { "type": "string", "enum": [ "trigger" ] }, "name": { "type": "string", "enum": [ "virtualButton" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 255 }, "x": { "type": "number" }, "y": { "type": "number" }, "uiId": { "type": "string", "maxLength": 48 }, "groupId": { "type": "string", "maxLength": 48 }, "description": { "type": "string", "maxLength": 32767 }, "icon": { "type": "string", "maxLength": 1024 }, "color": { "type": "string", "maxLength": 1024 }, "inputCount": { "type": "number" }, "outputCount": { "type": "number" }, "id": { "type": "string", "maxLength": 48 }, "payload": { "type": "string", "maxLength": 262144 }, "deviceId": { "oneOf": [ { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, { "type": "string", "enum": [ "" ] }, { "type": "null" } ] } }, "additionalProperties": false }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "required": [ "type" ], "additionalProperties": false } ] } }, "nodes": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string", "maxLength": 1024 }, "type": { "type": "string", "minLength": 1, "maxLength": 1024 }, "config": { "type": "object" }, "meta": { "type": "object" }, "outputIds": { "type": "array", "items": { "type": "array", "items": { "type": "string", "maxLength": 255 }, "maxItems": 100 }, "maxItems": 100 } }, "additionalProperties": false, "required": [ "type" ] } }, "customNodeConfig": { "type": "object", "properties": { "outputCount": { "type": "number", "enum": [ 1, 2 ] }, "resultMode": { "type": "string", "enum": [ "optional", "required", "none" ] }, "resultDescription": { "type": "string", "maxLength": 32767 }, "fields": { "type": "array", "maxItems": 100, "items": { "oneOf": [ { "type": "object", "properties": { "type": { "type": "string", "enum": [ "checkbox" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 1024 }, "id": { "type": "string", "minLength": 1, "maxLength": 1024 }, "description": { "type": "string", "maxLength": 32767 }, "defaultValue": { "type": "boolean" } }, "additionalProperties": false, "required": [ "type", "label" ] }, { "type": "object", "properties": { "type": { "type": "string", "enum": [ "select" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 1024 }, "id": { "type": "string", "minLength": 1, "maxLength": 1024 }, "description": { "type": "string", "maxLength": 32767 }, "defaultValue": { "type": "string", "minLength": 1, "maxLength": 1024 }, "options": { "type": "array", "minItems": 1, "maxItems": 100, "items": { "type": "object", "properties": { "label": { "type": "string", "maxLength": 1024 }, "value": { "type": "string", "minLength": 1, "maxLength": 1024 } }, "additionalProperties": false, "required": [ "value" ] } } }, "additionalProperties": false, "required": [ "type", "label", "defaultValue", "options" ] }, { "type": "object", "properties": { "type": { "type": "string", "enum": [ "stringTemplate" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 1024 }, "id": { "type": "string", "minLength": 1, "maxLength": 1024 }, "description": { "type": "string", "maxLength": 32767 }, "defaultValue": { "type": "string", "maxLength": 1024 }, "required": { "type": "boolean" }, "validRegExp": { "type": "string", "maxLength": 1024 } }, "additionalProperties": false, "required": [ "type", "label" ] }, { "type": "object", "properties": { "type": { "type": "string", "enum": [ "numberTemplate" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 1024 }, "id": { "type": "string", "minLength": 1, "maxLength": 1024 }, "description": { "type": "string", "maxLength": 32767 }, "defaultValue": { "type": "number" }, "required": { "type": "boolean" }, "validMin": { "type": "number" }, "validMax": { "type": "number" } }, "additionalProperties": false, "required": [ "type", "label" ] }, { "type": "object", "properties": { "type": { "type": "string", "enum": [ "jsonTemplate" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 1024 }, "id": { "type": "string", "minLength": 1, "maxLength": 1024 }, "description": { "type": "string", "maxLength": 32767 }, "defaultValue": { "type": "string", "maxLength": 32767 }, "required": { "type": "boolean" } }, "additionalProperties": false, "required": [ "type", "label" ] }, { "type": "object", "properties": { "type": { "type": "string", "enum": [ "payloadPath" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 1024 }, "id": { "type": "string", "minLength": 1, "maxLength": 1024 }, "description": { "type": "string", "maxLength": 32767 }, "required": { "type": "boolean" } }, "additionalProperties": false, "required": [ "type", "label" ] }, { "type": "object", "properties": { "type": { "type": "string", "enum": [ "section" ] }, "label": { "type": "string", "minLength": 1, "maxLength": 1024 }, "id": { "type": "string", "minLength": 1, "maxLength": 1024 }, "description": { "type": "string", "maxLength": 32767 } }, "additionalProperties": false, "required": [ "type", "label" ] } ] } } }, "additionalProperties": false, "required": [ "outputCount", "resultMode", "fields" ] }, "customNodeSupports": { "type": "array", "items": { "type": "string", "enum": [ "cloud" ] } }, "customNodeUseCount": { "type": "number" }, "globals": { "type": "array", "maxItems": 100, "items": { "type": "object", "properties": { "key": { "type": "string", "pattern": "^[0-9a-zA-Z_-]{1,255}$" }, "json": { "type": "string", "minLength": 1, "maxLength": 32767 } }, "additionalProperties": false, "required": [ "key", "json" ] } }, "deletedInDevelop": { "type": "boolean" }, "stats": { "type": "object", "properties": { "runCount": { "type": "number" }, "errorCount": { "type": "number" }, "byVersion": { "type": "object", "patternProperties": { ".*": { "type": "object", "properties": { "runCount": { "type": "number" }, "errorCount": { "type": "number" } } } } } } } } } }, "count": { "type": "integer" }, "totalCount": { "type": "integer" }, "perPage": { "type": "integer" }, "page": { "type": "integer" }, "filter": { "type": "string" }, "filterField": { "type": "string" }, "sortField": { "type": "string" }, "sortDirection": { "type": "string", "enum": [ "asc", "desc", "ASC", "DESC", "" ] }, "applicationId": { "type": "string", "pattern": "^[A-Fa-f\\d]{24}$" }, "flowClass": { "type": "string", "enum": [ "cloud", "edge", "experience", "customNode" ] } } }
o9915
{ "properties": { "customer_details": { "properties": { "address": { "description": "The address of the customer", "type": "string" }, "email": { "description": "The email address of the customer", "format": "email", "type": "string" }, "name": { "description": "The name of the customer", "type": "string" } }, "required": [ "name", "email", "address" ], "type": "object" }, "items": { "items": { "properties": { "name": { "description": "The name of the item", "type": "string" }, "price": { "description": "The price of the item", "type": "number" }, "quantity": { "description": "The quantity of the item", "type": "integer" } }, "required": [ "name", "quantity", "price" ], "type": "object" }, "type": "array" } }, "required": [ "customer_details", "items" ], "type": "object" }
generate_invoice_ade9b710
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "", "type": "object", "properties": { "options": { "type": "object", "properties": { "minWidthBreakPoint": { "type": "number" }, "pessimisticAccessControl": { "type": "boolean" }, "rightPanelEnabled": { "type": "boolean" }, "theme": { "type": "string", "minLength": 1 } }, "required": [ "minWidthBreakPoint", "pessimisticAccessControl", "rightPanelEnabled", "theme" ] }, "modules": { "type": "object", "properties": { "embedDialogue": { "type": "object", "properties": { "options": { "type": "object", "properties": { "embedTemplate": { "type": "string", "minLength": 1 } }, "required": [ "embedTemplate" ] }, "content": { "type": "object", "properties": { "customSize": { "type": "string", "minLength": 1 }, "height": { "type": "string", "minLength": 1 }, "instructions": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 }, "width": { "type": "string", "minLength": 1 } }, "required": [ "customSize", "height", "instructions", "title", "width" ] } }, "required": [ "options", "content" ] }, "footerPanel": { "type": "object", "properties": { "content": { "type": "object", "properties": { "download": { "type": "string", "minLength": 1 }, "embed": { "type": "string", "minLength": 1 }, "exitFullScreen": { "type": "string", "minLength": 1 }, "fullScreen": { "type": "string", "minLength": 1 } }, "required": [ "download", "embed", "exitFullScreen", "fullScreen" ] } }, "required": [ "content" ] }, "genericDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "ok": { "type": "string", "minLength": 1 } }, "required": [ "ok" ] } }, "required": [ "content" ] }, "headerPanel": { "type": "object", "properties": { "content": { "type": "object", "properties": { "close": { "type": "string", "minLength": 1 }, "help": { "type": "string", "minLength": 1 } }, "required": [ "close", "help" ] } }, "required": [ "content" ] }, "helpDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "text": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 } }, "required": [ "text", "title" ] } }, "required": [ "content" ] }, "moreInfoRightPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "panelAnimationDuration": { "type": "number" }, "panelCollapsedWidth": { "type": "number" }, "panelExpandedWidth": { "type": "number" } }, "required": [ "panelAnimationDuration", "panelCollapsedWidth", "panelExpandedWidth" ] }, "content": { "type": "object", "properties": { "collapse": { "type": "string", "minLength": 1 }, "collapseFull": { "type": "string", "minLength": 1 }, "expand": { "type": "string", "minLength": 1 }, "expandFull": { "type": "string", "minLength": 1 }, "holdingText": { "type": "string", "minLength": 1 }, "noData": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 } }, "required": [ "collapse", "collapseFull", "expand", "expandFull", "holdingText", "noData", "title" ] } }, "required": [ "options", "content" ] }, "pdfCenterPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "titleEnabled": { "type": "boolean" }, "usePdfJs": { "type": "boolean" } }, "required": [ "titleEnabled", "usePdfJs" ] }, "content": { "type": "object", "properties": {}, "required": [] } }, "required": [ "options", "content" ] }, "treeViewLeftPanel": { "type": "object", "properties": { "options": { "type": "object", "properties": { "elideCount": { "type": "number" }, "galleryThumbHeight": { "type": "number" }, "galleryThumbWidth": { "type": "number" }, "oneColThumbHeight": { "type": "number" }, "oneColThumbWidth": { "type": "number" }, "pageModeEnabled": { "type": "boolean" }, "panelAnimationDuration": { "type": "number" }, "panelCollapsedWidth": { "type": "number" }, "panelExpandedWidth": { "type": "number" }, "panelOpen": { "type": "boolean" }, "thumbsEnabled": { "type": "boolean" }, "thumbsExtraHeight": { "type": "number" }, "thumbsImageFadeInDuration": { "type": "number" }, "thumbsLoadRange": { "type": "number" }, "treeEnabled": { "type": "boolean" }, "twoColThumbHeight": { "type": "number" }, "twoColThumbWidth": { "type": "number" } }, "required": [ "elideCount", "galleryThumbHeight", "galleryThumbWidth", "oneColThumbHeight", "oneColThumbWidth", "pageModeEnabled", "panelAnimationDuration", "panelCollapsedWidth", "panelExpandedWidth", "panelOpen", "thumbsEnabled", "thumbsExtraHeight", "thumbsImageFadeInDuration", "thumbsLoadRange", "treeEnabled", "twoColThumbHeight", "twoColThumbWidth" ] } }, "required": [ "options" ] }, "dialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "close": { "type": "string", "minLength": 1 } }, "required": [ "close" ] } }, "required": [ "content" ] }, "downloadDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "download": { "type": "string", "minLength": 1 }, "entireFileAsOriginal": { "type": "string", "minLength": 1 }, "noneAvailable": { "type": "string", "minLength": 1 }, "preview": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 } }, "required": [ "download", "entireFileAsOriginal", "noneAvailable", "preview", "title" ] } }, "required": [ "content" ] }, "settingsDialogue": { "type": "object", "properties": { "content": { "type": "object", "properties": { "locale": { "type": "string", "minLength": 1 }, "pagingEnabled": { "type": "string", "minLength": 1 }, "preserveViewport": { "type": "string", "minLength": 1 }, "title": { "type": "string", "minLength": 1 } }, "required": [ "locale", "pagingEnabled", "preserveViewport", "title" ] } }, "required": [ "content" ] } }, "required": [ "embedDialogue", "footerPanel", "genericDialogue", "headerPanel", "helpDialogue", "moreInfoRightPanel", "pdfCenterPanel", "treeViewLeftPanel", "dialogue", "downloadDialogue", "settingsDialogue" ] }, "localisation": { "type": "object", "properties": { "label": { "type": "string", "minLength": 1 }, "locales": { "type": "array", "_uniqueItems": true, "minItems": 1, "items": { "required": [ "name", "label" ], "properties": { "name": { "type": "string", "minLength": 1 }, "label": { "type": "string", "minLength": 1 } } } } }, "required": [ "label", "locales" ] }, "content": { "type": "object", "properties": { "degradedResource": { "type": "string", "minLength": 1 } }, "required": [ "degradedResource" ] } }, "required": [ "options", "modules", "localisation", "content" ] }
o34343
{ "default": true, "definitions": { "nonNegativeInteger": { "minimum": 0, "type": "integer" }, "nonNegativeIntegerDefault0": { "allOf": [ { "$ref": "#/definitions/nonNegativeInteger" }, { "default": 0 } ] }, "schemaArray": { "items": { "$ref": "#" }, "minItems": 1, "type": "array" }, "simpleTypes": { "enum": [ "array", "boolean", "integer", "null", "number", "object", "string" ] }, "stringArray": { "default": [], "items": { "type": "string" }, "type": "array", "_uniqueItems": true } }, "properties": { "$comment": { "type": "string" }, "$id": { "format": "uri-reference", "type": "string" }, "$ref": { "format": "uri-reference", "type": "string" }, "$schema": { "format": "uri", "type": "string" }, "additionalItems": { "$ref": "#" }, "additionalProperties": { "$ref": "#" }, "allOf": { "$ref": "#/definitions/schemaArray" }, "anyOf": { "$ref": "#/definitions/schemaArray" }, "const": true, "contains": { "$ref": "#" }, "contentEncoding": { "type": "string" }, "contentMediaType": { "type": "string" }, "default": true, "definitions": { "additionalProperties": { "$ref": "#" }, "default": {}, "type": "object" }, "dependencies": { "additionalProperties": { "anyOf": [ { "$ref": "#" }, { "$ref": "#/definitions/stringArray" } ] }, "type": "object" }, "deprecationMessage": { "description": "Non-standard: deprecation message for a property, if it is deprecated", "type": "string" }, "description": { "type": "string" }, "else": { "$ref": "#" }, "enum": { "items": true, "minItems": 1, "type": "array", "_uniqueItems": true }, "examples": { "items": true, "type": "array" }, "exclusiveMaximum": { "type": "number" }, "exclusiveMinimum": { "type": "number" }, "format": { "type": "string" }, "if": { "$ref": "#" }, "items": { "anyOf": [ { "$ref": "#" }, { "$ref": "#/definitions/schemaArray" } ], "default": true }, "maxItems": { "$ref": "#/definitions/nonNegativeInteger" }, "maxLength": { "$ref": "#/definitions/nonNegativeInteger" }, "maxProperties": { "$ref": "#/definitions/nonNegativeInteger" }, "maximum": { "type": "number" }, "minItems": { "$ref": "#/definitions/nonNegativeIntegerDefault0" }, "minLength": { "$ref": "#/definitions/nonNegativeIntegerDefault0" }, "minProperties": { "$ref": "#/definitions/nonNegativeIntegerDefault0" }, "minimum": { "type": "number" }, "multipleOf": { "exclusiveMinimum": 0, "type": "number" }, "not": { "$ref": "#" }, "oneOf": { "$ref": "#/definitions/schemaArray" }, "pattern": { "format": "regex", "type": "string" }, "patternProperties": { "additionalProperties": { "$ref": "#" }, "default": {}, "propertyNames": { "format": "regex" }, "type": "object" }, "properties": { "additionalProperties": { "$ref": "#" }, "default": {}, "type": "object" }, "propertyNames": { "$ref": "#" }, "readOnly": { "default": false, "type": "boolean" }, "required": { "$ref": "#/definitions/stringArray" }, "then": { "$ref": "#" }, "title": { "type": "string" }, "type": { "anyOf": [ { "$ref": "#/definitions/simpleTypes" }, { "items": { "$ref": "#/definitions/simpleTypes" }, "minItems": 1, "type": "array", "_uniqueItems": true } ] }, "_uniqueItems": { "default": false, "type": "boolean" }, "x-intellij-case-insensitive": { "description": "If 'true', enum options for this value will be checked case-insensitively", "type": "boolean" }, "x-intellij-enum-metadata": { "additionalProperties": { "oneOf": [ { "type": "string" }, { "additionalProperties": { "type": "string" }, "properties": { "deprecationMessage": { "description": "Deprecation message for an enum value", "type": "string" }, "description": { "description": "Description for an enum value", "type": "string" } }, "type": "object" } ] }, "description": "Provides description and deprecation data for enum values", "type": "object" }, "x-intellij-html-description": { "description": "Description in html format", "type": "string" }, "x-intellij-language-injection": { "description": "IntelliJ language ID for language injection", "oneOf": [ { "type": "string" }, { "properties": { "language": { "description": "Language ID. Invoke completion to see all options", "type": "string" }, "prefix": { "description": "Code fragment that will be appended before the user code", "type": "string" }, "suffix": { "description": "Code fragment that will be appended after the user code", "type": "string" } }, "type": "object" } ] } }, "title": "Core schema meta-schema", "type": [ "object", "boolean" ] }
o90925
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "PackingList", "description": "A list of products due on a delivery round", "type": "object", "properties": { "doc_type": { "type": "string", "pattern": "^packingList$" }, "version": { "type": "string", "format": "semver" }, "productID": { "type": "string", "chance": { "hash": { "length": 32 } } }, "expectedQty": { "type": "integer" }, "packedQty": { "type": "integer" }, "deliveredQty": { "type": "integer" }, "adjustmentReason": { "type": "string" } }, "required": [ "doc_type", "version", "productID", "expectedQty" ] }
o37728
{ "properties": { "customer_name": { "description": "The name of the customer", "type": "string" }, "items": { "description": "The items purchased", "items": { "properties": { "name": { "description": "The name of the item", "type": "string" }, "price": { "description": "The price per unit of the item", "type": "number" }, "quantity": { "description": "The quantity of the item", "type": "integer" } }, "required": [ "name", "quantity", "price" ], "type": "object" }, "type": "array" } }, "required": [ "customer_name", "items" ], "type": "object" }
generate_invoice_af4f51e9
{ "additionalProperties": false, "description": "Pool", "properties": { "pool": { "additionalProperties": false, "properties": { "attributes": { "additionalProperties": true, "description": "Pool attributes as name value pairs", "properties": { "scope": { "enum": [ "public", "private" ], "type": "string" } }, "type": "object" }, "created_at": { "description": "Date and time of pool creation", "format": "date-time", "readOnly": true, "type": "string" }, "description": { "description": "Description for the pool", "maxLength": 160, "type": [ "string", "null" ] }, "id": { "description": "Pool identifier", "pattern": "^([0-9a-fA-F]){8}-([0-9a-fA-F]){4}-([0-9a-fA-F]){4}-([0-9a-fA-F]){4}-([0-9a-fA-F]){12}$", "readOnly": true, "type": "string" }, "links": { "additionalProperties": false, "properties": { "self": { "format": "url", "type": "string" } }, "type": "object" }, "name": { "description": "Pool name", "immutable": true, "maxLength": 50, "type": "string" }, "ns_records": { "description": "List of NS Records for Zones in this pool", "items": { "additionalProperties": false, "properties": { "hostname": { "format": "hostname", "maxLength": 255, "type": "string" }, "priority": { "maximum": 1000, "minimum": 0, "type": "integer" } }, "required": [ "priority", "hostname" ], "type": "object" }, "minItems": 1, "type": "array" }, "project_id": { "description": "Project identifier", "immutable": true, "maxLength": 36, "type": [ "string", "null" ] }, "updated_at": { "description": "Date and time of last pool modification", "format": "date-time", "readOnly": true, "type": [ "string", "null" ] }, "version": { "description": "Pool version number", "readOnly": true, "type": "integer" } }, "required": [ "name", "attributes", "ns_records" ], "type": "object" } }, "required": [ "pool" ], "title": "pool" }
o55337
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricTarget": { "description": "MetricTarget defines the target value, average value, or average utilization of a specific metric", "properties": { "averageUtilization": { "_format": "int32", "description": "averageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods. Currently only valid for Resource metric source type", "type": "integer" }, "averageValue": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "averageValue is the target value of the average of the metric across all relevant pods (as a quantity)" }, "type": { "description": "type represents whether the metric type is Utilization, Value, or AverageValue", "type": "string" }, "value": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "value is the target value of the metric (as a quantity)." } }, "required": [ "type" ], "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_api_resource_Quantity": { "oneOf": [ { "type": "string" }, { "type": "number" } ] } }, "description": "ResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). The values will be averaged together before being compared to the target. Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source. Only one \"target\" type should be set.", "properties": { "name": { "description": "name is the name of the resource in question.", "type": [ "string", "null" ] }, "target": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_autoscaling_v2beta2_MetricTarget", "description": "target specifies the target value for the given metric" } }, "required": [ "name", "target" ], "type": "object" }
kb_830_Normalized
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_IDRange": { "description": "IDRange provides a min/max of an allowed range of IDs.", "properties": { "max": { "_format": "int64", "description": "max is the end of the range, inclusive.", "type": "integer" }, "min": { "_format": "int64", "description": "min is the start of the range, inclusive.", "type": "integer" } }, "required": [ "min", "max" ], "type": "object" } }, "description": "FSGroupStrategyOptions defines the strategy type and options used to create the strategy.", "properties": { "ranges": { "description": "ranges are the allowed ranges of fs groups. If you would like to force a single fs group then supply a single range with the same start and end. Required for MustRunAs.", "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_api_policy_v1beta1_IDRange" }, "type": [ "array", "null" ] }, "rule": { "description": "rule is the strategy that will dictate what FSGroup is used in the SecurityContext.", "type": [ "string", "null" ] } }, "type": "object" }
kb_373_Normalized
{ "properties": { "dimensions": { "properties": { "height": { "description": "The height of the triangle", "type": "number" }, "length": { "description": "The length of the rectangle or triangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "required": [ "radius", "length", "width", "height" ], "type": "object" }, "shape": { "description": "The type of geometric shape (e.g. circle, rectangle, triangle)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_9f489ec5
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "analysis": { "description": "This schema is in the definitions so that it can be referenced for pipeline-generated metadata.", "properties": { "analysis_type": { "description": "The analysis type needs to be tightly controlled because it is used in the metadata merging script to assign flags.", "enum": [ "qc", "sequence_upload", "sequence_upload_qc_report", "alignment", "alignment_qc_report", "rna_seq_quantification", "germline_variant_calling", "somatic_variant_calling", "immuno_target_pipelines", "cnv_variant_calling", "protect_immunology", "fusion_variant_calling" ] }, "bundle_uuid": { "$ref": "#/definitions/uuid" }, "parent_uuids": { "description": "parent UUIDs for this workflow", "items": { "$ref": "#/definitions/uuid" }, "type": "array" }, "timestamp": { "$ref": "#/definitions/time_stamp", "description": "We want this time stamp in detached analysis data, but not required when uploading via upload tool." }, "workflow_name": { "type": "string" }, "workflow_outputs": { "items": { "properties": { "file_path": { "type": "string" }, "file_type": { "type": "string" }, "file_uuid": { "$ref": "#/definitions/uuid" } }, "required": [ "file_path", "file_type" ], "type": "object" }, "type": "array" }, "workflow_version": { "type": "string" } }, "required": [ "analysis_type", "bundle_uuid", "workflow_name", "workflow_version", "workflow_outputs" ], "type": "object" }, "schema_version": { "description": "The version of this schema is ...", "pattern": "^[0-9]{1}.[0-9]{1}.[0-9]{1}$", "type": "string" }, "specimen_type": { "description": "The specimen type needs to be tightly controlled because it is used in the metadata merging script to assign flags.", "oneOf": [ { "pattern": "^Normal -" }, { "pattern": "^Primary tumour -" }, { "pattern": "^Recurrent tumour -" }, { "pattern": "^Metastatic tumour -" }, { "pattern": "^Cell line -" } ], "type": "string" }, "time_stamp": { "_format": "date-time", "description": "ISO 8601 / RFC 3339", "type": "string" }, "uuid": { "description": "uuid with all lower case or all upper case characters", "oneOf": [ { "description": "lower case", "pattern": "^[0-9a-f]{8}-([0-9a-f]{4}-){3}[0-9a-f]{12}$" }, { "description": "upper case", "pattern": "^[0-9A-F]{8}-([0-9A-F]{4}-){3}[0-9A-F]{12}$" } ], "type": "string" } }, "description": "This is UCSC Genomics Core's schema for a sample donor's metadata record.", "properties": { "center_name": { "type": "string" }, "donor_uuid": { "$ref": "#/definitions/uuid" }, "flags": { "description": "Indicate whether or not a workflow is complete", "properties": { "normal_alignment": { "type": "boolean" }, "normal_cnv_variant_calling": { "type": "boolean" }, "normal_cnv_workflow_1_0_x": { "type": "boolean" }, "normal_fusion_variant_calling": { "type": "boolean" }, "normal_fusion_workflow_0_2_x": { "type": "boolean" }, "normal_germline_variants": { "type": "boolean" }, "normal_protect_cgl_workflow_2_3_x": { "type": "boolean" }, "normal_protect_cgl_workflow_2_5_x": { "type": "boolean" }, "normal_protect_prediction": { "type": "boolean" }, "normal_rna_seq_cgl_workflow_3_0_x": { "type": "boolean" }, "normal_rna_seq_cgl_workflow_3_1_x": { "type": "boolean" }, "normal_rna_seq_cgl_workflow_3_2_x": { "type": "boolean" }, "normal_rna_seq_cgl_workflow_3_3_x": { "type": "boolean" }, "normal_rna_seq_quantification": { "type": "boolean" }, "normal_sequence": { "type": "boolean" }, "tumor_alignment": { "type": "boolean" }, "tumor_cnv_variant_calling": { "type": "boolean" }, "tumor_cnv_workflow_1_0_x": { "type": "boolean" }, "tumor_fusion_variant_calling": { "type": "boolean" }, "tumor_fusion_workflow_0_2_x": { "type": "boolean" }, "tumor_protect_cgl_workflow_2_3_x": { "type": "boolean" }, "tumor_protect_cgl_workflow_2_5_x": { "type": "boolean" }, "tumor_protect_prediction": { "type": "boolean" }, "tumor_rna_seq_cgl_workflow_3_0_x": { "type": "boolean" }, "tumor_rna_seq_cgl_workflow_3_1_x": { "type": "boolean" }, "tumor_rna_seq_cgl_workflow_3_2_x": { "type": "boolean" }, "tumor_rna_seq_cgl_workflow_3_3_x": { "type": "boolean" }, "tumor_rna_seq_quantification": { "type": "boolean" }, "tumor_sequence": { "type": "boolean" }, "tumor_somatic_variants": { "type": "boolean" } }, "required": [ "normal_sequence", "tumor_sequence", "normal_alignment", "tumor_alignment", "normal_rna_seq_quantification", "tumor_rna_seq_quantification", "normal_germline_variants", "tumor_somatic_variants", "normal_rna_seq_cgl_workflow_3_0_x", "tumor_rna_seq_cgl_workflow_3_0_x", "normal_rna_seq_cgl_workflow_3_1_x", "tumor_rna_seq_cgl_workflow_3_1_x", "normal_rna_seq_cgl_workflow_3_2_x", "tumor_rna_seq_cgl_workflow_3_2_x", "normal_rna_seq_cgl_workflow_3_3_x", "tumor_rna_seq_cgl_workflow_3_3_x", "normal_protect_prediction", "tumor_protect_prediction", "normal_protect_cgl_workflow_2_3_x", "tumor_protect_cgl_workflow_2_3_x", "normal_protect_cgl_workflow_2_5_x", "tumor_protect_cgl_workflow_2_5_x", "normal_cnv_variant_calling", "tumor_cnv_variant_calling", "normal_cnv_workflow_1_0_x", "tumor_cnv_workflow_1_0_x", "normal_fusion_variant_calling", "tumor_fusion_variant_calling", "normal_fusion_workflow_0_2_x", "tumor_fusion_workflow_0_2_x" ], "type": "object" }, "missing_items": { "description": "record parent_uuids of missing items", "properties": { "normal_alignment": { "items": { "$ref": "#/definitions/uuid" }, "type": "array" }, "normal_cnv_variant_calling": { "items": { "$ref": "#/definitions/uuid" }, "type": "array" }, "normal_cnv_workflow_1_0_x": { "items": { "$ref": "#/definitions/uuid" }, "type": "array" }, "normal_fusion_variant_calling": { "items": { "$ref": "#/definitions/uuid" }, "type": "array" }, "normal_fusion_workflow_0_2_x": { "items": { "$ref": "#/definitions/uuid" }, "type": "array" }, "normal_germline_variants": { "items": { "$ref": "#/definitions/uuid" }, "type": "array" }, "normal_protect_cgl_workflow_2_3_x": { "items": { "$ref": "#/definitions/uuid" }, "type": "array" }, "normal_protect_cgl_workflow_2_5_x": { "items": { "$ref": "#/definitions/uuid" }, "type": "array" }, "normal_protect_prediction": { "items": { "$ref": "#/definitions/uuid" }, "type": "array" }, "normal_rna_seq_cgl_workflow_3_0_x": { "items": { "$ref": "#/definitions/uuid" }, "type": "array" }, "normal_rna_seq_cgl_workflow_3_1_x": { "items": { "$ref": "#/definitions/uuid" }, "type": "array" }, "normal_rna_seq_cgl_workflow_3_2_x": { "items": { "$ref": "#/definitions/uuid" }, "type": "array" }, "normal_rna_seq_cgl_workflow_3_3_x": { "items": { "$ref": "#/definitions/uuid" }, "type": "array" }, "normal_rna_seq_quantification": { "items": { "$ref": "#/definitions/uuid" }, "type": "array" }, "normal_sequence": { "items": { "$ref": "#/definitions/uuid" }, "type": "array" }, "tumor_alignment": { "items": { "$ref": "#/definitions/uuid" }, "type": "array" }, "tumor_cnv_variant_calling": { "items": { "$ref": "#/definitions/uuid" }, "type": "array" }, "tumor_cnv_workflow_1_0_x": { "items": { "$ref": "#/definitions/uuid" }, "type": "array" }, "tumor_fusion_variant_calling": { "items": { "$ref": "#/definitions/uuid" }, "type": "array" }, "tumor_fusion_workflow_0_2_x": { "items": { "$ref": "#/definitions/uuid" }, "type": "array" }, "tumor_protect_cgl_workflow_2_3_x": { "items": { "$ref": "#/definitions/uuid" }, "type": "array" }, "tumor_protect_cgl_workflow_2_5_x": { "items": { "$ref": "#/definitions/uuid" }, "type": "array" }, "tumor_protect_prediction": { "items": { "$ref": "#/definitions/uuid" }, "type": "array" }, "tumor_rna_seq_cgl_workflow_3_0_x": { "items": { "$ref": "#/definitions/uuid" }, "type": "array" }, "tumor_rna_seq_cgl_workflow_3_1_x": { "items": { "$ref": "#/definitions/uuid" }, "type": "array" }, "tumor_rna_seq_cgl_workflow_3_2_x": { "items": { "$ref": "#/definitions/uuid" }, "type": "array" }, "tumor_rna_seq_cgl_workflow_3_3_x": { "items": { "$ref": "#/definitions/uuid" }, "type": "array" }, "tumor_rna_seq_quantification": { "items": { "$ref": "#/definitions/uuid" }, "type": "array" }, "tumor_sequence": { "items": { "$ref": "#/definitions/uuid" }, "type": "array" }, "tumor_somatic_variants": { "items": { "$ref": "#/definitions/uuid" }, "type": "array" } }, "required": [ "normal_sequence", "tumor_sequence", "normal_alignment", "tumor_alignment", "normal_germline_variants", "tumor_somatic_variants", "normal_rna_seq_quantification", "tumor_rna_seq_quantification", "normal_rna_seq_cgl_workflow_3_0_x", "tumor_rna_seq_cgl_workflow_3_0_x", "normal_rna_seq_cgl_workflow_3_1_x", "tumor_rna_seq_cgl_workflow_3_1_x", "normal_rna_seq_cgl_workflow_3_2_x", "tumor_rna_seq_cgl_workflow_3_2_x", "normal_rna_seq_cgl_workflow_3_3_x", "tumor_rna_seq_cgl_workflow_3_3_x", "normal_protect_prediction", "tumor_protect_prediction", "normal_protect_cgl_workflow_2_3_x", "tumor_protect_cgl_workflow_2_3_x", "normal_protect_cgl_workflow_2_5_x", "tumor_protect_cgl_workflow_2_5_x", "normal_cnv_variant_calling", "tumor_cnv_variant_calling", "normal_cnv_workflow_1_0_x", "tumor_cnv_workflow_1_0_x", "normal_fusion_variant_calling", "tumor_fusion_variant_calling", "normal_fusion_workflow_0_2_x", "tumor_fusion_workflow_0_2_x" ], "type": "object" }, "program": { "type": "string" }, "project": { "type": "string" }, "schema_version": { "$ref": "#/definitions/schema_version" }, "specimen": { "items": { "properties": { "samples": { "items": { "properties": { "analysis": { "items": { "$ref": "#/definitions/analysis" }, "type": "array" }, "sample_uuid": { "$ref": "#/definitions/uuid" }, "submitter_sample_id": { "type": "string" } }, "required": [ "submitter_sample_id", "sample_uuid", "analysis" ], "type": "object" }, "type": "array" }, "specimen_uuid": { "$ref": "#/definitions/uuid" }, "submitter_specimen_id": { "type": "string" }, "submitter_specimen_type": { "$ref": "#/definitions/specimen_type" } }, "required": [ "submitter_specimen_id", "specimen_uuid", "submitter_specimen_type", "samples" ], "type": "object" }, "type": "array" }, "submitter_donor_id": { "type": "string" }, "timestamp": { "$ref": "#/definitions/time_stamp" } }, "required": [ "program", "project", "center_name", "submitter_donor_id", "donor_uuid", "schema_version", "timestamp", "specimen" ], "title": "metadata_schema", "type": "object" }
o2070
{ "$schema": "http://json-schema.org/draft-04/schema", "additionalProperties": false, "definitions": { "dataset": { "description": "Files in the archive that contain the data of interest", "items": { "description": "Use 'data:<mime-type>[;base64],<...>' for data URIs, 'file:<...>' for file references, and 'http://<host>/<file>' for external references.", "title": "Data-URI encoded reference.", "type": "string" }, "minitems": "1", "title": "A set of files", "type": "array" }, "date": { "_format": "date-time", "description": "ISO 8601 date.", "title": "Datestamp", "type": "string" }, "description": { "description": "The detailed description of the data element", "title": "Description", "type": "string" }, "geometry": { "description": "The geometry of the data element", "properties": { "data": { "$ref": "#/definitions/dataset" }, "type": { "description": "The pseudo-mime type of the geometry. E.g. 'text/x-ewkt'. The type controls the interpretation of the 'data' elements.", "enum": [ "text/x-ewkt" ], "title": "Geometry type", "type": "string" } }, "required": [ "data", "type" ], "title": "Data geometry", "type": "object" }, "georeference": { "description": "A georeference object that locates the element in space.", "properties": { "elevation": { "description": "The elevation of the object.", "title": "Georeference elevation", "type": "number" }, "latitude": { "description": "The latitude of the object.", "title": "Georeference latitude", "type": "number" }, "longitude": { "description": "The longitude of the object.", "title": "Georeference longitude", "type": "number" } }, "required": [ "latitude", "longitude" ], "title": "Georeference", "type": "object" }, "imagegeoref": { "description": "GeoReference in structured format", "properties": { "pixel_height": { "type": "number" }, "pixel_units": { "type": "string" }, "pixel_width": { "type": "number" }, "rotation_x": { "type": "number" }, "rotation_y": { "type": "number" }, "upperleft": { "$ref": "#/definitions/georeference" } }, "required": [ "pixel_width", "pixel_height", "pixel_units", "rotation_x", "rotation_y", "upperleft" ], "title": "GeoReference of an image", "type": "object" }, "imagegeoref_wf": { "description": "GeoReference in worldfile format", "properties": { "data": { "$ref": "#/definitions/dataset" }, "type": { "description": "The type of the bounds data. E.g. 'text/x-worldfile'.", "enum": [ "text/x-worldfile" ], "title": "Bounds type", "type": "string" } }, "required": [ "data", "type" ], "title": "GeoReference in worldfile format", "type": "object" }, "name": { "description": "The display name of the data element", "title": "Content name", "type": "string" } }, "id": "https://aptomar.com/pub/dev/apt.schema.json", "minProperties": 4, "properties": { "area": { "additionalProperties": false, "properties": { "created": { "$ref": "#/definitions/date" }, "description": { "$ref": "#/definitions/description" }, "geometry": { "$ref": "#/definitions/geometry" }, "name": { "$ref": "#/definitions/name" }, "oil_spill": { "additionalProperties": false, "properties": { "max_thickness": { "type": "number" }, "min_thickness": { "type": "number" } }, "type": "object" } }, "required": [ "created", "description", "name", "geometry" ], "type": "object" }, "asset": { "additionalProperties": false, "properties": { "groups": { "additionalProperties": false, "minProperties": 1, "patternProperties": { "group": { "additionalProperties": false, "properties": { "layers": { "description": "This is an array of layers that are included in the group.", "items": { "type": "string" }, "minitems": "1", "title": "Group layers", "type": "array" }, "name": { "description": "The name of the group. Required for display purposes.", "title": "Group name", "type": "string" } }, "required": [ "layers", "name" ], "type": "object" } }, "type": "object" }, "layers": { "additionalProperties": false, "description": "The data layers included in the .apt archive.", "minProperties": 1, "patternProperties": { "layer": { "additionalProperties": false, "properties": { "geometry": { "additionalProperties": false, "properties": { "data": { "$ref": "#/definitions/dataset" }, "type": { "enum": [ "text/x-shapefile" ], "type": "string" } }, "required": [ "data", "type" ], "type": "object" }, "name": { "description": "The name of the layer. Required for display purposes.", "title": "Layer name", "type": "string" }, "resources": { "additionalProperties": false, "description": "The resources needed for styling the layer", "properties": { "data": { "$ref": "#/definitions/dataset" } }, "required": [ "data" ], "title": "Layer resources", "type": "object" }, "style": { "additionalProperties": false, "description": "The style description for the layer", "properties": { "data": { "$ref": "#/definitions/dataset" }, "type": { "description": "The pseudo-mime type of the styling information. E.g. 'text/x-sld'", "enum": [ "text/x-sld" ], "title": "Style type", "type": "string" } }, "required": [ "data", "type" ], "title": "Layer style", "type": "object" } }, "required": [ "geometry", "name", "style" ], "type": "object" } }, "title": "Data layers", "type": "object" } }, "required": [ "groups", "layers" ], "type": "object" }, "date": { "$ref": "#/definitions/date" }, "description": { "$ref": "#/definitions/description" }, "generator": { "additionalProperties": false, "description": "Contains information about the generating program / organization.", "properties": { "creator": { "type": "string" }, "program": { "type": "string" } }, "required": [ "creator", "program" ], "title": "Archive generator", "type": "object" }, "image": { "additionalProperties": false, "properties": { "bounds": { "oneOf": [ { "$ref": "#/definitions/imagegeoref_wf" }, { "$ref": "#/definitions/imagegeoref" } ], "type": "object" }, "created": { "$ref": "#/definitions/date" }, "data": { "$ref": "#/definitions/dataset" }, "description": { "$ref": "#/definitions/description" }, "georeference": { "$ref": "#/definitions/georeference" }, "name": { "$ref": "#/definitions/name" } }, "required": [ "created", "description", "name", "data" ], "type": "object" }, "manifest_version": { "description": "The version of the manifest schema used to validate the manifest contents.", "title": "Manifest version", "type": "number" }, "observation": { "additionalProperties": false, "properties": { "bounds_nw": { "$ref": "#/definitions/georeference" }, "bounds_se": { "$ref": "#/definitions/georeference" }, "date": { "$ref": "#/definitions/date" } }, "required": [ "date", "bounds_nw", "bounds_se" ], "type": "object" }, "point": { "additionalProperties": false, "description": "A representation of a point-of-interest", "properties": { "created": { "$ref": "#/definitions/date" }, "description": { "$ref": "#/definitions/description" }, "geometry": { "$ref": "#/definitions/geometry" }, "name": { "$ref": "#/definitions/name" }, "object-type": { "description": "The type of the point-of-interest", "enum": [ "boat", "bouy", "debris", "fishfarm", "green", "oil", "personnel", "red", "unknown", "vessel", "yellow" ], "title": "Object type", "type": "string" } }, "required": [ "created", "description", "name", "geometry", "object-type" ], "title": "Point-of-Interest", "type": "object" }, "route": { "additionalProperties": false, "description": "A represtentation of a route generated by or for display in Scope.", "properties": { "created": { "$ref": "#/definitions/date" }, "description": { "$ref": "#/definitions/description" }, "geometry": { "$ref": "#/definitions/geometry" }, "name": { "$ref": "#/definitions/name" } }, "required": [ "created", "description", "name", "geometry" ], "title": "Route", "type": "object" }, "sensor": { "additionalProperties": false, "properties": { "location_name": { "type": "string" }, "manufacturer_name": { "type": "string" }, "model_number": { "type": "string" }, "serial_number": { "type": "string" }, "shortname": { "type": "string" } }, "required": [ "shortname", "location_name", "manufacturer_name", "model_number", "serial_number" ], "type": "object" }, "video": { "additionalProperties": false, "properties": { "created": { "$ref": "#/definitions/date" }, "data": { "$ref": "#/definitions/dataset" }, "description": { "$ref": "#/definitions/description" }, "georeference": { "$ref": "#/definitions/georeference" }, "name": { "$ref": "#/definitions/name" } }, "required": [ "created", "description", "name", "data" ], "type": "object" } }, "required": [ "date", "description", "manifest_version", "generator" ], "type": "object" }
o23230
{ "properties": { "items": { "items": { "properties": { "name": { "description": "The name of the item", "type": "string" }, "price": { "description": "The price of the item", "type": "number" }, "quantity": { "description": "The quantity of the item", "type": "integer" } }, "required": [ "name", "price", "quantity" ], "type": "object" }, "type": "array" }, "tax_rate": { "description": "The tax rate in percentage", "type": "number" } }, "required": [ "items" ], "type": "object" }
generate_invoice_6a91916e
{ "properties": { "attribute1": { "type": "string" }, "attribute10": { "type": "string" }, "attribute11": { "type": "string" }, "attribute12": { "type": "string" }, "attribute13": { "type": "string" }, "attribute14": { "type": "string" }, "attribute15": { "type": "string" }, "attribute16": { "type": "string" }, "attribute2": { "type": "string" }, "attribute3": { "type": "string" }, "attribute4": { "type": "string" }, "attribute5": { "type": "string" }, "attribute6": { "type": "string" }, "attribute7": { "type": "string" }, "attribute8": { "type": "string" }, "attribute9": { "type": "string" }, "attributes": { "type": "string" }, "audience": { "type": "string" }, "authentication": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "authorizationendpoint": { "type": "string" }, "certendpoint": { "type": "string" }, "certfilepath": { "type": "string" }, "clientid": { "type": "string" }, "clientsecret": { "type": "string" }, "defaultauthenticationgroup": { "type": "string" }, "granttype": { "enum": [ "CODE", "PASSWORD" ], "type": "string" }, "graphendpoint": { "type": "string" }, "idtokendecryptendpoint": { "type": "string" }, "issuer": { "type": "string" }, "name": { "type": "string" }, "oauthstatus": { "enum": [ "INIT", "CERTFETCH", "AADFORGRAPH", "GRAPH", "AADFORMDM", "MDMINFO", "COMPLETE" ], "readonly": true, "type": "string" }, "oauthtype": { "enum": [ "GENERIC", "INTUNE", "ATHENA" ], "type": "string" }, "refreshinterval": { "type": "integer" }, "skewtime": { "type": "integer" }, "tenantid": { "type": "string" }, "tokenendpoint": { "type": "string" }, "userinfourl": { "type": "string" }, "usernamefield": { "type": "string" } }, "title": "authenticationoauthaction", "type": "object" }
o30119
{ "properties": { "measurements": { "description": "The measurements required to calculate the area", "properties": { "base": { "description": "The base of the shape", "type": "number" }, "height": { "description": "The height of the shape", "type": "number" }, "length": { "description": "The length of the shape", "type": "number" }, "radius": { "description": "The radius of the shape", "type": "number" }, "width": { "description": "The width of the shape", "type": "number" } }, "required": [ "length", "width", "radius", "base", "height" ], "type": "object" }, "shape": { "description": "The type of shape (e.g. rectangle, circle, triangle)", "type": "string" } }, "required": [ "shape", "measurements" ], "type": "object" }
calculate_area_0fa5538b
{ "$schema": "http://json-schema.org/draft-07/schema", "title": "JFrog File Spec", "description": "JFrog File Spec schema definition.", "additionalProperties": false, "properties": { "files": { "type": "array", "items": { "$ref": "#/$file" }, "description": "Details of files to be uploaded or downloaded from Artifactory.", "minItems": 1, "uniqueItems": true, "default": [ { "pattern": "" } ] } }, "$file": { "additionalProperties": false, "properties": { "ant": { "type": "string", "enum": ["true", "false"], "description": "If true, the command will interpret the patterns which describes the local file-system paths, as ANT patterns.", "default": "false" }, "aql": { "description": "An AQL query that specified artifacts in Artifactory.", "additionalProperties": false, "properties": { "items.find": {} }, "default": { "items.find": { "repo": "my-local-repo", "path": "my-path", "file": "my-file" } } }, "archive": { "type": "string", "enum": ["zip"], "description": "Set to \"zip\" to pack and deploy the files to Artifactory inside a ZIP archive. Currently, the only packaging format supported is zip." }, "archiveEntries": { "type": "string", "description": "If specified, only archive artifacts containing entries matching this pattern are matched. You can use wildcards to specify multiple artifacts." }, "build": { "type": "string", "description": "If specified, only artifacts of the specified build are matched. The property format is build-name/build-number. If you do not specify the build number, the artifacts are filtered by the latest build number.", "examples": ["buildName", "buildName/buildNumber"] }, "bundle": { "type": "string", "description": "If specified, only artifacts of the specified bundle are matched. The value format is bundle-name/bundle-version.", "examples": ["buildName/bundleVersion"] }, "excludeArtifacts": { "type": "string", "enum": ["true", "false"], "description": "If specified, build artifacts are not matched.", "default": "false" }, "excludeProps": { "type": "string", "description": "List of \"key=value\" pairs separated by a semi-colon. Only artifacts without all of the specified properties names and values will be affected.", "examples": ["key1=value1;key2=value2;key3=value3"] }, "exclusions": { "type": "array", "description": "An array (enclosed with square brackets) of patterns to be excluded from uploading/downloading.", "examples": [["*.sha1", "*.md5"]] }, "explode": { "type": "string", "enum": ["true", "false"], "description": "If true, archive file is extracted after the operation. The archived file itself is deleted. The supported archive types are: zip, tar; tar.gz; and tgz.", "default": "false" }, "bypass-archive-inspection": { "type": "string", "enum": ["true", "false"], "description": "If true, bypass the security inspection the archive go through before it is unarchived.", "default": "false" }, "flat": { "type": "string", "enum": ["true", "false"], "description": "If true, artifacts are uploaded/downloaded to the exact target path specified and their hierarchy in the source file system is ignored.", "default": "true" }, "includeDeps": { "type": "string", "enum": ["true", "false"], "description": "If specified, also dependencies of the specified build are matched.", "default": "true" }, "includeDirs": { "type": "string", "enum": ["true", "false"], "description": "If true, the source path applies to bottom-chain directories and not only to files. Bottom-chain directories are either empty or do not include other directories that match the source path.", "default": "false" }, "limit": { "type": "integer", "description": "The maximum number of items to fetch. Usually used with the sortBy option." }, "offset": { "type": "integer", "description": "The offset from which to fetch items (i.e. how many items should be skipped). Usually used with the 'sort-by' option." }, "pattern": { "type": "string", "description": "Specifies a local file system path or a path in Artifactory." }, "props": { "type": "string", "description": "List of \"key=value\" pairs separated by a semi-colon. Only artifacts with all of the specified properties names and values will be affected.", "examples": ["key1=value1;key2=value2;key3=value3"] }, "recursive": { "type": "string", "enum": ["true", "false"], "description": "If true, files are also collected from sub-folders of the source directory.", "default": "true" }, "regexp": { "type": "string", "description": "If true, the command will interpret the patterns which describes the local file-system paths, as regular expressions.", "default": "false" }, "sortBy": { "type": "array", "items": { "type": "string" }, "description": "A list of fields to sort by. The fields must be part of the 'items' AQL domain.", "examples": [ "repo", "path", "name", "created", "modified", "updated", "created_by", "modified_by", "type", "depth", "original_md5", "actual_md5", "original_sha1", "actual_sha1", "sha256", "size", "virtual_repos" ] }, "sortOrder": { "type": "string", "enum": ["asc", "desc"], "description": "The order by which fields in the sortBy option should be sorted.", "default": "asc" }, "symlinks": { "type": "string", "description": "If true, the command will preserve the soft links structure in Artifactory. The symlink file representation will contain the symbolic link and checksum properties.", "default": "false" }, "target": { "type": "string", "description": "Specifies a local file system path or a path in Artifactory.", "default": "./" }, "targetProps": { "type": "string", "description": "List of \"key=value\" pairs separated by a semi-colon. The specified properties will be attached to the affected artifacts.", "examples": ["key1=value1;key2=value2;key3=value3"] }, "validateSymlinks": { "type": "string", "description": "If true, the command will validate that symlinks are pointing to existing and unchanged files, by comparing their sha1. Applicable to files and not directories.", "default": "false" }, "include-dirs": { "type": "string", "enum": ["true", "false"], "description": "Set to true if you'd like to also apply the source path pattern for directories and not just for files.", "default": "false" }, "from-rt": { "type": "string", "enum": ["true", "false"], "description": "If true, search the files in Artifactory, rather than on the local file system. The --regexp option is not supported when --from-rt is set to true.", "default": "false" }, "gpg-key": { "type": "string", "description": "Path to the public GPG key file located on the file system, used to validate downloaded release bundles." } }, "anyOf": [ { "required": ["pattern"] }, { "required": ["aql"] }, { "required": ["build"] }, { "required": ["bundle"] } ], "dependencies": { "pattern": { "not": { "required": ["aql"] } }, "aql": { "not": { "required": [ "pattern", "exclusions", "props", "targetProps", "excludeProps", "recursive", "regexp", "archiveEntries" ] } }, "build": { "not": { "required": ["bundle", "limit", "offset"] } }, "bundle": { "not": { "required": ["build", "limit", "offset"] } }, "excludeArtifacts": { "required": ["build"] }, "includeDeps": { "required": ["build"] } } } }
filespec-schema
{ "default": 1, "definitions": {}, "description": "Version of file", "examples": [ 1, 1.1, 2.9, 3 ], "title": "The Version Schema ", "type": "number" }
o34209
{ "$id": "https://github.com/dsternlicht/RESTool/blob/master/config.schema.json", "$schema": "http://json-schema.org/draft-07/schema#", "description": "The configuration file used for a RESTool application, see https://github.com/dsternlicht/RESTool", "type": "object", "additionalProperties": false, "properties": { "name": { "type": "string", "description": "The name of your app." }, "pages": { "type": "array", "items": { "$ref": "#/definitions/page" } }, "baseUrl": { "type": "string", "description": "Base url of the api. This will prefix the url of all the api methods defined for all pages. This is normally the domain plus a base path. For example: \"https://restool-sample-app.herokuapp.com/api\"\n\nNote: If different pages use different base urls this should not be used. Instead, you should explicitly define absolute urls for each method." }, "errorMessageDataPath": { "$ref": "#/definitions/errorMessageDataPath" }, "requestHeaders": { "$ref": "#/definitions/requestHeaders" }, "unauthorizedRedirectUrl": { "type": "string", "description": "Path to navigate to when the api returns a 401 (Unauthorized) error. You can use :returnUrl to pass a return location. For example: \"/login/myLoginPage?return=:returnUrl\"" }, "favicon": { "type": "string", "description": "A URL for you app's favicon." }, "customStyles": { "$ref": "#/definitions/customStyles" }, "customLabels": { "$ref": "#/definitions/customLabels" } }, "required": [ "name", "pages" ], "definitions": { "errorMessageDataPath": { "type": "array", "items": { "type": "string" }, "description": "The path within an error response object to look for an error message. If multiple are provided, each will be tried in order until a message is found." }, "customStyles": { "type": "object", "additionalProperties": false, "properties": { "vars": { "type": "object", "additionalProperties": false, "properties": { "appText": { "type": "string", "description": "Root text color." }, "appBackground": { "type": "string", "description": "App background color." }, "navBackground": { "type": "string", "description": "Navigation menu background color." }, "navText": { "type": "string", "description": "Navigation menu text color." }, "navItemText": { "type": "string", "description": "Navigation item text color." }, "navItemHoverBackground": { "type": "string", "description": "Navigation item background color on hover event." }, "navItemActiveBackground": { "type": "string", "description": "Active navigation item background color." }, "actionButtonBackground": { "type": "string", "description": "Action button background color." }, "actionButtonHoverBackground": { "type": "string", "description": "Action button background color on hover event." }, "actionButtonText": { "type": "string", "description": "Action button text color." } } } } }, "page": { "type": "object", "additionalProperties": false, "properties": { "name": { "type": "string", "description": "The name of the page. This will be presented in the menu." }, "id": { "type": "string", "description": "A unique identifier for the page. RESTool will use it to navigate between pages." }, "description": { "type": "string", "description": "A short description about the page and its usage." }, "requestHeaders": { "$ref": "#/definitions/requestHeaders" }, "methods": { "$ref": "#/definitions/methods" }, "customActions": { "type": "array", "items": { "$ref": "#/definitions/customAction" }, "description": "A list of extra (non RESTful) endpoints available in your RESTful API. Specifically customActions is a list of PUT or POST method objects." }, "customLabels": { "$ref": "#/definitions/customLabels" } }, "required": [ "name", "id" ] }, "requestHeaders": { "patternProperties": { "^": { "type": "string" } }, "description": "A list of key-value headers you wish to add to every request we're making.\nFor example:\n{ Authentication: 'SECRET_KEY', 'X-USER-ID': 'USER_ID' }" }, "methods": { "type": "object", "additionalProperties": false, "properties": { "getAll": { "$ref": "#/definitions/getAll" }, "getSingle": { "$ref": "#/definitions/getSingle" }, "post": { "$ref": "#/definitions/post" }, "put": { "$ref": "#/definitions/put" }, "delete": { "$ref": "#/definitions/delete" } }, "required": [ "getAll" ] }, "method": { "type": "object", "properties": { "url": { "type": "string", "description": "The url for making the request. The url could be either relative or absolute. If a baseUrl is defined then you should only provide a relative path. For example: /users/:id.\nThe url could contain parameters that will be extracted if needed. For example: \nhttps://website.com/users/:id - note that the parameter name in the url should match the one you're returning in your API." }, "actualMethod": { "type": "string", "enum": [ "get", "put", "post", "delete", "patch" ] }, "requestHeaders": { "$ref": "#/definitions/requestHeaders" }, "queryParams": { "type": "array", "items": { "$ref": "#/definitions/inputField" }, "description": "An array of query parameters fields that will be added to the request.\nIf your url includes the name of the parameter, it will be used as part of the path rather than as a query parameter. For example if your url is /api/contact/234/address you might make a parameter called contactId then set the url as follows: /api/contact/:contactId/address.\nEach query param item is an object. See input fields." } }, "required": [ "url" ] }, "getAll": { "allOf": [ { "$ref": "#/definitions/method" }, { "properties": { "fields": { "type": "array", "items": { "$ref": "#/definitions/displayField" } }, "dataPath": { "type": "string", "description": "TODO" }, "display": { "type": "object", "properties": { "type": { "enum": [ "table", "cards" ] } }, "description": "RESTool allows you to control how to output the data. The display object has a type property that will define how to display the data. RESTool supports two display type: \"table\" and \"cards\"." }, "sortBy": { "type": [ "string", "array" ], "items": { "type": "string" }, "description": "One or more paths to properties in the result object to sort the list by." }, "pagination": { "$ref": "#/definitions/pagination" }, "dataTransform": { "description": "Relevant only when using dynamic (js) config. A function to allow manipulation on the response data. Useful for changing/adding data for display purposes." } }, "required": [ "display", "fields" ] } ] }, "getSingle": { "$ref": "#/definitions/method", "description": "This method will be fired once you hit the edit button on an item in order to get a single item's data. By default, if this method hasn't been set, when editing an item, RESTool will take the raw data from the original getAll request." }, "post": { "allOf": [ { "$ref": "#/definitions/method" }, { "properties": { "fields": { "type": "array", "items": { "$ref": "#/definitions/inputField" } } }, "required": [ "fields" ] } ], "description": "The post method will be used to create new items in your API resource." }, "put": { "allOf": [ { "$ref": "#/definitions/method" }, { "properties": { "fields": { "type": "array", "items": { "$ref": "#/definitions/inputField" } }, "includeOriginalFields": { "type": "boolean", "description": "When set to true, all fields from the original object are merged and sent in the request body. Default is false." } }, "required": [ "fields" ] } ], "description": "The put method will be used to update an existing item in your API resource." }, "delete": { "$ref": "#/definitions/method", "description": "The delete method will be used to delete an existing item in your API resource." }, "inputField": { "additionalProperties": false, "properties": { "name": { "type": "string", "description": "The name of the field / parameter to be sent." }, "type": { "type": "string", "enum": [ "text", "long-text", "object", "encode", "integer", "number", "boolean", "date", "email", "color", "select", "array", "file", "password", "note", "hidden" ], "description": "Use the type field to define the type of the field." }, "readonly": { "type": "boolean" }, "label": { "type": "string", "description": "A label that describes the field. This will act as a label in RESTool's forms." }, "dataPath": { "type": "string", "description": "Use this field to let RESTool know what is the path of this field in the body of the request." }, "options": { "type": "array", "items": { "anyOf": [ { "type": "string" }, { "type": "object", "properties": { "display": { "type": "string" }, "value": {} } } ] }, "description": "Add the options field if you chose a select as a type. This field should contain an array of options to be displayed in the select box." }, "arrayType": { "type": "string", "enum": [ "text", "object" ], "description": "For array field type, you should specify another property called arrayType so RESTool will know how to present & send the data in the POST and PUT methods." }, "value": { "description": "Set a default value to the field." }, "required": { "type": "boolean", "description": "If true, a field will be marked as required on PUT and POST forms." }, "placeholder": { "type": "string", "description": "Input field placeholder." }, "accept": { "type": "string", "description": "An optional setting for file type inputs. When set, the file input's accept property will perform file type filtering when browsing for files." }, "useInUrl": { "type": "boolean", "description": "If true, a field can be used as a parameter in a PUT url. Otherwise only fields retrieved in the original GET can be used as parameters. It's data will still be added to the PUT request body." }, "urlReplaceOnly": { "type": "boolean", "description": "If true, a field will only be replaced in the URL and is not appended to the final query string." }, "optionSource": { "$ref": "#/definitions/optionSource", "description": "Use the optionSource field to load options for a select box from a REST service. If this is used with options, the items from options will be added to the select box before those fetched from the api." } }, "required": [ "name", "type" ] }, "displayField": { "additionalProperties": false, "properties": { "name": { "type": "string", "description": "The property name of the field that contains the value in the API result." }, "type": { "type": "string", "enum": [ "text", "url", "image", "colorbox", "boolean" ], "description": "This will help RESTool to render the main view.\ntext - will parse the value as a text\nurl - will render an anchor element with a clickable link\nimage - will render an image from the url\ncolorbox - will render a #RRGGBB hex string as an 80 x 20 pixel colored rectangle, overlaid with the hex color string" }, "label": { "type": "string", "description": "A label that describes the field. Will be presented as table headers in the main view." }, "dataPath": { "type": "string", "description": "" }, "url": { "type": "string", "description": "URL for url typed fields" }, "urlLabel": { "type": "string", "description": "Display the url label rather than the entire value." }, "filterable": { "type": "boolean", "description": "Set to true to enable a text control to do simple client-side filtering by values of this field. Can be specified for multiple fields." }, "truncate": { "type": "boolean", "description": "Causes long values to be truncated. By default, truncation is not enabled for fields." } }, "required": [ "name", "type" ] }, "optionSource": { "additionalProperties": false, "properties": { "url": { "type": "string", "description": "url to fetch data from" }, "dataPath": { "type": [ "string", "null" ], "description": "let us know where we should take the data from" }, "displayPath": { "type": "string", "description": "property of the object to take the display value from" }, "valuePath": { "type": "string", "description": "property of the object to take the option value from" }, "sortBy": { "type": [ "string", "array" ], "items": { "type": "string" }, "description": "one or more properties to sort the objects by" } } }, "pagination": { "additionalProperties": false, "required": [ "source", "type", "params" ], "properties": { "source": { "enum": [ "query" ], "description": "Where the pagination parameters are written to. Only supports query parameters for now." }, "type": { "enum": [ "buttons", "infinite-scroll" ], "description": "Type of pagination. Buttons is the standard one. You can also have a inifite scroll with lazy loading." }, "params": { "$ref": "#/definitions/paginationParams" }, "fields": { "$ref": "#/definitions/paginationFields" } } }, "paginationParams": { "additionalProperties": false, "required": [ "page" ], "properties": { "page": { "$ref": "#/definitions/queryParamConfig", "description": "The parameter definition of the page number." }, "limit": { "$ref": "#/definitions/queryParamConfig", "description": "The parameter definition of the maximum number of items to be returned by the API." }, "sortBy": { "$ref": "#/definitions/queryParamConfig", "description": "The parameter definition of the sorting value." }, "descending": { "$ref": "#/definitions/queryParamConfig", "description": "The parameter definition of the order in which the API should return items. false by default." } } }, "paginationFields": { "additionalProperties": false, "properties": { "page": { "$ref": "#/definitions/paginationField" }, "total": { "$ref": "#/definitions/paginationField" } } }, "paginationField": { "additionalProperties": false, "required": [ "dataPath" ], "properties": { "dataPath": { "type": "string" }, "display": { "type": "boolean" } } }, "queryParamConfig": { "additionalProperties": false, "required": [ "name" ], "properties": { "name": { "type": "string" }, "value": { "type": "string" }, "urlReplaceOnly": { "type": "boolean" }, "label": { "type": "string" } } }, "customAction": { "allOf": [ { "$ref": "#/definitions/put" }, { "type": "object", "properties": { "icon": { "type": "string", "description": "You may configure the icon of the action. RESTool uses font-awesome and you may use any icon name you want from their collection." } } } ], "description": "Specifically customActions is a list of PUT or POST method objects. For example this could enable an endpoint like: PUT /users/:id/disable" }, "customLabels": { "additionalProperties": false, "properties": { "buttons": { "$ref": "#/definitions/buttonLabels" }, "formTitles": { "$ref": "#/definitions/formTitleLabels" }, "placeholders": { "$ref": "#/definitions/placeholderLabels" }, "tableColumnHeaders": { "$ref": "#/definitions/tableColumnHeaders" }, "pagination": { "$ref": "#/definitions/paginationLabels" } } }, "buttonLabels": { "additionalProperties": false, "properties": { "addItem": { "type": "string", "description": "Content of the add button on a page.", "default": "+ Add Item" }, "editItem": { "type": "string", "description": "Title of the edit button on a row or a card.", "default": "Edit" }, "deleteItem": { "type": "string", "description": "Title of the delete button on a row or a card.", "default": "Delete" }, "clearInput": { "type": "string", "description": "Title of the clear button on form inputs.", "default": "Clear" }, "closeForm": { "type": "string", "description": "Title of the close button in forms.", "default": "Close" }, "addArrayItem": { "type": "string", "description": "Title of the add button on arrays inputs in forms.", "default": "Add Item" } } }, "formTitleLabels": { "additionalProperties": false, "properties": { "addItem": { "type": "string", "description": "Content of the add button on a page.", "default": "Add Item" }, "editItem": { "type": "string", "description": "Title of the edit button on a row or a card.", "default": "Edit Item" } } }, "placeholderLabels": { "additionalProperties": false, "properties": { "object": { "type": "string", "description": "JSON input placeholder.", "default": "Enter JSON..." }, "array": { "type": "string", "description": "JSON array input placeholder.", "default": "Enter JSON array..." }, "text": { "type": "string", "description": "Text input placeholder.", "default": "Enter text..." }, "number": { "type": "string", "description": "Number input placeholder.", "default": 0 }, "color": { "type": "string", "description": "Color input placeholder.", "default": "Enter color..." }, "email": { "type": "string", "description": "Email input placeholder.", "default": "Enter email..." }, "password": { "type": "string", "description": "Password input placeholder.", "default": "Enter password..." }, "date": { "type": "string", "description": "Date input placeholder.", "default": "Enter date..." }, "file": { "type": "string", "description": "File input placeholder.", "default": "Select file..." } } }, "tableColumnHeaders": { "additionalProperties": false, "properties": { "actions": { "type": "string", "description": "Header of the action column in tables.", "default": "Actions" } } }, "paginationLabels": { "additionalProperties": false, "properties": { "itemsCount": { "type": "string", "description": "", "default": "Showing :currentCountFrom-:currentCountTo out of :totalCount items" }, "previousPageTitle": { "type": "string", "description": "", "default": "Previous page" }, "nextPageTitle": { "type": "string", "description": "", "default": "Next page" } } } } }
o37603
{ "$schema": "http://json-schema.org/draft-06/schema#", "description": "Resource json format", "type": "object", "properties": { "street": { "description": "Street name", "type": "string" }, "number": { "description": "Construction street number", "type": "integer" }, "dir": { "description": "The root directory for all resources for this construction", "type": "string", "format": "uri-reference" }, "location": { "description": "The geographical coordinates of construction", "type": "object", "properties": { "type": { "description": "GeoJSON type Point", "type": "string" }, "coordinates": { "description": "GeoJSON value, longitude and latitide", "type": "array", "minItems": 2, "items": { "type": "number" } } } }, "resources": { "description": "Array of models related to this construction", "type": "array", "items": { "description": "Model document", "type": "object", "properties": { "format": { "description": "Format type of model", "type": "string" }, "filename": { "description": "Filename of model", "type": "string" }, "url": { "description": "Full URL of model", "type": "string", "format": "uri-reference" }, "uploaded": { "description": "The timestamp of upload", "type": "string", "format": "date-time" }, "textures": { "description": "Textures assigned to this model", "type": "array", "items": { "description": "Texture document", "type": "object", "properties": { "type": { "description": "Texture type", "type": "integer" }, "format": { "description": "Format type of texture", "type": "string" }, "filename": { "description": "Filename of texture", "type": "string" }, "url": { "description": "Full URL of texture", "type": "string", "format": "uri-reference" }, "uploaded": { "description": "The timestamp of upload", "type": "string", "format": "date-time" } } } } } } } } }
o81880
{ "title": "JSON schema for the https://cypress.io Test Runner's configuration file. Details at https://on.cypress.io/configuration", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "definitions": { "cypressConfig": { "properties": { "baseUrl": { "type": "string", "default": null, "description": "Url used as prefix for cy.visit() or cy.request() command’s url. Example http://localhost:3030 or https://test.my-domain.com" }, "env": { "type": "object", "description": "Any values to be set as environment variables. See https://on.cypress.io/environment-variables", "body": {} }, "ignoreTestFiles": { "type": [ "string", "array" ], "items": { "type": "string" }, "description": "A String or Array of glob patterns used to ignore test files that would otherwise be shown in your list of tests. Cypress uses minimatch with the options: {dot: true, matchBase: true}. We suggest using http://globtester.com to test what files would match." }, "numTestsKeptInMemory": { "type": "number", "default": 50, "description": "The number of tests for which snapshots and command data are kept in memory. Reduce this number if you are experiencing high memory consumption in your browser during a test run." }, "port": { "type": "number", "default": null, "description": "Port used to host Cypress. Normally this is a randomly generated port" }, "reporter": { "type": "string", "default": "spec", "description": "The reporter used when running headlessly or in CI. See https://on.cypress.io/reporters" }, "reporterOptions": { "type": "object", "default": null, "description": "The reporter options used. Supported options depend on the reporter. See https://on.cypress.io/reporters#Reporter-Options" }, "slowTestThreshold": { "type": "number", "default": 10000, "description": "Slow test threshold in milliseconds. Only affects the visual output of some reporters. For example, the spec reporter will display the test time in yellow if over the threshold. See https://on.cypress.io/configuration#Timeouts" }, "testFiles": { "type": [ "string", "array" ], "default": "**/*.*", "description": "A String or Array of string glob patterns of the test files to load. See https://on.cypress.io/configuration#Global" }, "watchForFileChanges": { "type": "boolean", "default": true, "description": "Whether Cypress will watch and restart tests on test file changes" }, "defaultCommandTimeout": { "type": "number", "default": 4000, "description": "Time, in milliseconds, to wait until most DOM based commands are considered timed out" }, "execTimeout": { "type": "number", "default": 60000, "description": "Time, in milliseconds, to wait for a system command to finish executing during a cy.exec() command" }, "taskTimeout": { "type": "number", "default": 60000, "description": "Time, in milliseconds, to wait for a task to finish executing during a cy.task() command" }, "pageLoadTimeout": { "type": "number", "default": 60000, "description": "Time, in milliseconds, to wait for page transition events or cy.visit(), cy.go(), cy.reload() commands to fire their page load events. Network requests are limited by the underlying operating system, and may still time out if this value is increased." }, "requestTimeout": { "type": "number", "default": 5000, "description": "Time, in milliseconds, to wait for an XHR request to go out in a cy.wait() command" }, "responseTimeout": { "type": "number", "default": 30000, "description": "Time, in milliseconds, to wait until a response in a cy.request(), cy.wait(), cy.fixture(), cy.getCookie(), cy.getCookies(), cy.setCookie(), cy.clearCookie(), cy.clearCookies(), and cy.screenshot() commands" }, "fileServerFolder": { "type": "string", "default": "root project folder", "description": "Path to folder where application files will attempt to be served from" }, "fixturesFolder": { "type": [ "string", "boolean" ], "default": "cypress/fixtures", "description": "Path to folder containing fixture files (Pass false to disable)" }, "integrationFolder": { "type": "string", "default": "cypress/integration", "description": "Path to folder containing integration test files" }, "downloadsFolder": { "type": "string", "default": "cypress/downloads", "description": "Path to folder where files downloaded during a test are saved" }, "componentFolder": { "type": [ "string", "boolean" ], "default": false, "description": "Path to folder containing component test files (Pass false to disable)" }, "pluginsFile": { "type": [ "string", "boolean" ], "default": "cypress/plugins/index.js", "description": "Path to plugins file. (Pass false to disable)" }, "screenshotOnRunFailure": { "type": "boolean", "default": true, "description": "Whether Cypress will take a screenshot when a test fails during cypress run" }, "screenshotsFolder": { "type": "string", "default": "cypress/screenshots", "description": "Path to folder where screenshots will be saved from cy.screenshot() command or after a test fails during cypress run" }, "supportFile": { "type": [ "string", "boolean" ], "default": "cypress/support/index.js", "description": "Path to file to load before test files load. This file is compiled and bundled. (Pass false to disable)" }, "videosFolder": { "type": "string", "default": "cypress/videos", "description": "Path to folder where videos will be saved during cypress run" }, "trashAssetsBeforeRuns": { "type": "boolean", "default": true, "description": "Whether Cypress will trash assets within the screenshotsFolder and videosFolder before tests run with cypress run" }, "videoCompression": { "type": [ "number", "boolean" ], "default": 32, "description": "The quality setting for the video compression, in Constant Rate Factor (CRF). The value can be false to disable compression or a value between 0 and 51, where a lower value results in better quality (at the expense of a higher file size)." }, "video": { "type": "boolean", "default": true, "description": "Whether Cypress will capture a video of the tests run with cypress run" }, "videoUploadOnPasses": { "type": "boolean", "default": true, "description": "Whether Cypress will process, compress, and upload videos to the Dashboard even when all tests in a spec file are passing. This only applies when recording your runs to the Dashboard. Turn this off if you’d like to only upload the spec file’s video when there are failing tests." }, "chromeWebSecurity": { "type": "boolean", "default": true, "description": "Whether Chrome Web Security for same-origin policy and insecure mixed content is enabled. Read more about this at https://on.cypress.io/web-security" }, "userAgent": { "type": "string", "default": null, "description": "Enables you to override the default user agent the browser sends in all request headers. User agent values are typically used by servers to help identify the operating system, browser, and browser version. See User-Agent MDN Documentation for example user agent values here: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/User-Agent" }, "blockHosts": { "type": [ "string", "array" ], "items": { "type": "string" }, "default": null, "description": "A String or Array of hosts that you wish to block traffic for. Please read the notes for examples on using this https://on.cypress.io/configuration#blockHosts" }, "modifyObstructiveCode": { "type": "boolean", "default": true, "description": "Whether Cypress will search for and replace obstructive JS code found in .js or .html files that prevent Cypress from working. Please read the notes for more information on this setting. https://on.cypress.io/configuration#modifyObstructiveCode" }, "viewportHeight": { "type": "number", "default": 660, "description": "Default height in pixels for the application under tests’ viewport (Override with cy.viewport() command)" }, "viewportWidth": { "type": "number", "default": 1000, "description": "Default width in pixels for the application under tests’ viewport. (Override with cy.viewport() command)" }, "animationDistanceThreshold": { "type": "number", "default": 5, "description": "The distance in pixels an element must exceed over time to be considered animating" }, "waitForAnimations": { "type": "boolean", "default": true, "description": "Whether to wait for elements to finish animating before executing commands" }, "scrollBehavior": { "enum": [ false, "center", "top", "bottom", "nearest" ], "default": "top", "description": "Viewport position to which an element should be scrolled prior to action commands. Setting `false` disables scrolling." }, "projectId": { "type": "string", "default": null, "description": "A 6 character string use to identify this project in the Cypress Dashboard. See https://on.cypress.io/dashboard-service#Identification" }, "nodeVersion": { "enum": [ "system", "bundled" ], "default": "system", "description": "DEPRECATED: If set to 'bundled', Cypress will use the Node version bundled with Cypress. Otherwise, Cypress will use the Node version that was used to launch the Cypress. This Node version is used when executing your plugins file and building spec files." }, "experimentalInteractiveRunEvents": { "type": "boolean", "default": false, "description": "Allows listening to the `before:run`, `after:run`, `before:spec`, and `after:spec` events in the plugins file during interactive mode." }, "experimentalSourceRewriting": { "type": "boolean", "default": false, "description": "Enables AST-based JS/HTML rewriting. This may fix issues caused by the existing regex-based JS/HTML replacement algorithm." }, "experimentalSessionSupport": { "type": "boolean", "default": false, "description": "Enable experimental session support. See https://on.cypress.io/session" }, "experimentalFetchPolyfill": { "type": "boolean", "default": false, "description": "Polyfills `window.fetch` to enable Network spying and stubbing" }, "experimentalStudio": { "type": "boolean", "default": false, "description": "Generate and save commands directly to your test suite by interacting with your app as an end user would." }, "retries": { "type": [ "object", "number", "null" ], "default": { "runMode": 0, "openMode": 0 }, "description": "The number of times to retry a failing. Can be configured to apply only in runMode or openMode" }, "includeShadowDom": { "type": "boolean", "default": false, "description": "Enables including elements within the shadow DOM when using querying commands (e.g. cy.get(), cy.find()). Can be set globally in cypress.json, per-suite or per-test in the test configuration object, or programmatically with Cypress.config()" }, "clientCertificates": { "description": "Defines client certificates to use when sending requests to the specified URLs", "type": "array", "items": { "type": "object", "properties": { "url": { "description": "Requests for URLs matching this minimatch pattern will use the supplied client certificate", "type": "string" }, "ca": { "description": "Path(s) to CA file(s) to validate certs against, relative to project root", "type": "array", "items": { "type": "string" } }, "certs": { "type": "array", "items": { "anyOf": [ { "description": "PEM file specific properties", "type": "object", "properties": { "cert": { "description": "Path to the certificate, relative to project root", "type": "string" }, "key": { "description": "Path to the private key, relative to project root", "type": "string" }, "passphrase": { "description": "(Optional) File path to a UTF-8 text file containing the passphrase for the key, relative to project root", "type": "string" } }, "required": [ "cert", "key" ] }, { "description": "PFX file specific properties", "type": "object", "properties": { "pfx": { "description": "Path to the certificate container, relative to project root", "type": "string" }, "passphrase": { "description": "(Optional) File path to a UTF-8 text file containing the passphrase for the container, relative to project root", "type": "string" } }, "required": [ "pfx" ] } ] } } }, "required": [ "url", "certs" ] } } } } }, "allOf": [ { "$ref": "#/definitions/cypressConfig" }, { "properties": { "component": { "description": "Any component runner specific overrides", "$ref": "#/definitions/cypressConfig" }, "e2e": { "description": "Any e2e runner specific overrides", "$ref": "#/definitions/cypressConfig" } } } ] }
cypress
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "required": [ "name", "description" ], "properties": { "name": { "type": "string", "description": "The name of the control." }, "description": { "type": "string", "description": "A short description of the purpose of this control." }, "integration": { "type": "object", "description": "How this control should be loaded by the LaxarJS runtime.", "properties": { "technology": { "type": "string", "description": "Underlying technology of the control, which will be used to load the controller and template.", "default": "plain" } }, "default": {}, "additionalProperties": false }, "controls": { "type": "array", "description": "Each control as a path that can be resolved using the module system.", "default": [], "items": { "type": "string" } }, "templateSource": { "type": "string", "description": "The location of the control's HTML template." }, "styleSource": { "type": "string", "description": "The location of the control's stylesheet." }, "assets": { "type": "array", "description": "A list of files to make available as raw content via the artifact provider API.", "items": { "type": "string" } }, "assetUrls": { "type": "array", "description": "A list of files to make available as URLs via the artifact provider API.", "items": { "type": "string" } }, "assetsForTheme": { "type": "array", "description": "A list of themed files to make available as raw content via the artifact provider API.", "items": { "type": "string" } }, "assetUrlsForTheme": { "type": "array", "description": "A list of themed files to make available as URLs via the artifact provider API.", "items": { "type": "string" } } }, "additionalProperties": false }
o9385
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_ExternalDocumentation": { "description": "ExternalDocumentation allows referencing an external resource for extended documentation.", "properties": { "description": { "type": "string" }, "url": { "type": "string" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSON": { "description": "JSON represents any valid JSON value. These types are supported: bool, int64, float64, string, []interface{}, map[string]interface{} and nil." }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps": { "description": "JSONSchemaProps is a JSON-Schema following Specification Draft 4 (http://json-schema.org/).", "properties": { "$ref": { "type": "string" }, "$schema": { "type": "string" }, "additionalItems": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaPropsOrBool" }, "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaPropsOrBool" }, "allOf": { "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps" }, "type": "array" }, "anyOf": { "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps" }, "type": "array" }, "default": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSON", "description": "default is a default value for undefined object fields. Defaulting is a beta feature under the CustomResourceDefaulting feature gate. CustomResourceDefinitions with defaults must be created using the v1 (or newer) CustomResourceDefinition API." }, "definitions": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps" }, "type": "object" }, "dependencies": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaPropsOrStringArray" }, "type": "object" }, "description": { "type": "string" }, "enum": { "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSON" }, "type": "array" }, "example": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSON" }, "exclusiveMaximum": { "type": "boolean" }, "exclusiveMinimum": { "type": "boolean" }, "externalDocs": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_ExternalDocumentation" }, "format": { "description": "format is an OpenAPI v3 format string. Unknown formats are ignored. The following formats are validated:\n\n- bsonobjectid: a bson object ID, i.e. a 24 characters hex string - uri: an URI as parsed by Golang net/url.ParseRequestURI - email: an email address as parsed by Golang net/mail.ParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 3.1 [RFC1034]. - ipv4: an IPv4 IP as parsed by Golang net.ParseIP - ipv6: an IPv6 IP as parsed by Golang net.ParseIP - cidr: a CIDR as parsed by Golang net.ParseCIDR - mac: a MAC address as parsed by Golang net.ParseMAC - uuid: an UUID that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid3: an UUID3 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?3[0-9a-f]{3}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid4: an UUID4 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?4[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - uuid5: an UUID5 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?5[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - isbn: an ISBN10 or ISBN13 number string like \"0321751043\" or \"978-0321751041\" - isbn10: an ISBN10 number string like \"0321751043\" - isbn13: an ISBN13 number string like \"978-0321751041\" - creditcard: a credit card number defined by the regex ^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\\d{3})\\d{11})$ with any non digit characters mixed in - ssn: a U.S. social security number following the regex ^\\d{3}[- ]?\\d{2}[- ]?\\d{4}$ - hexcolor: an hexadecimal color code like \"#FFFFFF: following the regex ^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$ - rgbcolor: an RGB color code like rgb like \"rgb(255,255,2559\" - byte: base64 encoded binary data - password: any kind of string - date: a date string like \"2006-01-02\" as defined by full-date in RFC3339 - duration: a duration string like \"22 ns\" as parsed by Golang time.ParseDuration or compatible with Scala duration format - datetime: a date time string like \"2014-12-15T19:30:20.000Z\" as defined by date-time in RFC3339.", "type": "string" }, "id": { "type": "string" }, "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaPropsOrArray" }, "maxItems": { "_format": "int64", "type": "integer" }, "maxLength": { "_format": "int64", "type": "integer" }, "maxProperties": { "_format": "int64", "type": "integer" }, "maximum": { "format": "double", "type": "number" }, "minItems": { "_format": "int64", "type": "integer" }, "minLength": { "_format": "int64", "type": "integer" }, "minProperties": { "_format": "int64", "type": "integer" }, "minimum": { "format": "double", "type": "number" }, "multipleOf": { "format": "double", "type": "number" }, "not": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps" }, "nullable": { "type": "boolean" }, "oneOf": { "items": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps" }, "type": "array" }, "pattern": { "type": "string" }, "patternProperties": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps" }, "type": "object" }, "properties": { "additionalProperties": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps" }, "type": "object" }, "required": { "items": { "type": "string" }, "type": "array" }, "title": { "type": "string" }, "type": { "type": "string" }, "uniqueItems": { "type": "boolean" }, "x-kubernetes-embedded-resource": { "description": "x-kubernetes-embedded-resource defines that the value is an embedded Kubernetes runtime.Object, with TypeMeta and ObjectMeta. The type must be object. It is allowed to further restrict the embedded object. kind, apiVersion and metadata are validated automatically. x-kubernetes-preserve-unknown-fields is allowed to be true, but does not have to be if the object is fully specified (up to kind, apiVersion, metadata).", "type": "boolean" }, "x-kubernetes-int-or-string": { "description": "x-kubernetes-int-or-string specifies that this value is either an integer or a string. If this is true, an empty type is allowed and type as child of anyOf is permitted if following one of the following patterns:\n\n1) anyOf:\n - type: integer\n - type: string\n2) allOf:\n - anyOf:\n - type: integer\n - type: string\n - ... zero or more", "type": "boolean" }, "x-kubernetes-list-map-keys": { "description": "x-kubernetes-list-map-keys annotates an array with the x-kubernetes-list-type `map` by specifying the keys used as the index of the map.\n\nThis tag MUST only be used on lists that have the \"x-kubernetes-list-type\" extension set to \"map\". Also, the values specified for this attribute must be a scalar typed field of the child structure (no nesting is supported).\n\nThe properties specified must either be required or have a default value, to ensure those properties are present for all list items.", "items": { "type": "string" }, "type": "array" }, "x-kubernetes-list-type": { "description": "x-kubernetes-list-type annotates an array to further describe its topology. This extension must only be used on lists and may have 3 possible values:\n\n1) `atomic`: the list is treated as a single entity, like a scalar.\n Atomic lists will be entirely replaced when updated. This extension\n may be used on any type of list (struct, scalar, ...).\n2) `set`:\n Sets are lists that must not have multiple items with the same value. Each\n value must be a scalar, an object with x-kubernetes-map-type `atomic` or an\n array with x-kubernetes-list-type `atomic`.\n3) `map`:\n These lists are like maps in that their elements have a non-index key\n used to identify them. Order is preserved upon merge. The map tag\n must only be used on a list with elements of type object.\nDefaults to atomic for arrays.", "type": "string" }, "x-kubernetes-map-type": { "description": "x-kubernetes-map-type annotates an object to further describe its topology. This extension must only be used when type is object and may have 2 possible values:\n\n1) `granular`:\n These maps are actual maps (key-value pairs) and each fields are independent\n from each other (they can each be manipulated by separate actors). This is\n the default behaviour for all maps.\n2) `atomic`: the list is treated as a single entity, like a scalar.\n Atomic maps will be entirely replaced when updated.", "type": "string" }, "x-kubernetes-preserve-unknown-fields": { "description": "x-kubernetes-preserve-unknown-fields stops the API server decoding step from pruning fields which are not specified in the validation schema. This affects fields recursively, but switches back to normal pruning behaviour if nested properties or additionalProperties are specified in the schema. This can either be true or undefined. False is forbidden.", "type": "boolean" } }, "type": "object" }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaPropsOrArray": { "description": "JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps or an array of JSONSchemaProps. Mainly here for serialization purposes." }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaPropsOrBool": { "description": "JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value. Defaults to true for the boolean property." }, "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaPropsOrStringArray": { "description": "JSONSchemaPropsOrStringArray represents a JSONSchemaProps or a string array." } }, "description": "CustomResourceValidation is a list of validation methods for CustomResources.", "properties": { "openAPIV3Schema": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps", "description": "openAPIV3Schema is the OpenAPI v3 schema to use for validation and pruning." } }, "type": "object" }
kb_221_Normalized
{ "description": "A description of the confidence a Seller has in delivering services.", "properties": { "color": { "description": "A color that indicates confidence. Green = Serviceable, Red = Unserviceable, Yellow = We'll get back to you.", "enum": [ "GREEN", "YELLOW", "RED" ], "type": "string" }, "estimatedResponseDate": { "description": "When the color is Yellow (meaning 'We'll get back to you'), this date indicates when the Seller plans to provide a more complete response. The date formatted as YYYY-MM-DD (eg 1997-07-16) or YYYY-MM-DDThh:mmTZD (eg 1997-07-16T19:20+01:00).", "formate": "date-time", "type": "string" }, "objectType": { "description": "The type of the object, serviceabilityConfidence.", "enum": [ "serviceabilityConfidence" ], "type": "string" }, "reason": { "description": "A description of the reason a particular color is being provided. This may include a specific standard reason codes and descriptions.", "maxLength": 100, "type": "string" } }, "required": [ "objectType", "color" ], "title": "serviceabilityConfidence", "type": "object" }
o28145
{ "definitions": { "https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_MicroTime": { "_format": "date-time", "description": "MicroTime is version of Time with microsecond level precision.", "type": "string" } }, "description": "EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time.", "properties": { "count": { "description": "Number of occurrences in this series up to the last heartbeat time", "format": "int32", "type": [ "integer", "null" ] }, "lastObservedTime": { "$ref": "#/definitions/https:__kubernetesjsonschema_dev_master__defs_json_defs_io_k8s_apimachinery_pkg_apis_meta_v1_MicroTime", "description": "Time when last Event from the series was seen before last heartbeat." }, "state": { "description": "Information whether this series is ongoing or finished. Deprecated. Planned removal for 1.18", "type": [ "string", "null" ] } }, "required": [ "count", "lastObservedTime", "state" ], "type": "object" }
kb_332_Normalized
{ "properties": { "point1": { "properties": { "latitude": { "description": "Latitude of point 1", "type": "number" }, "longitude": { "description": "Longitude of point 1", "type": "number" } }, "required": [ "latitude", "longitude" ], "type": "object" }, "point2": { "properties": { "latitude": { "description": "Latitude of point 2", "type": "number" }, "longitude": { "description": "Longitude of point 2", "type": "number" } }, "required": [ "latitude", "longitude" ], "type": "object" } }, "required": [ "point1", "point2" ], "type": "object" }
calculate_distance_31e06a85
{ "$id": "https://json.schemastore.org/jreleaser-1.7.0.json", "$ref": "#/definitions/JReleaserModel", "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "Active": { "type": "string", "enum": [ "ALWAYS", "NEVER", "RELEASE", "PRERELEASE", "RELEASE_PRERELEASE", "SNAPSHOT" ] }, "Algorithm": { "type": "string", "enum": [ "MD2", "MD5", "RMD160", "SHA_1", "SHA_256", "SHA_384", "SHA_512", "SHA3_224", "SHA3_256", "SHA3_384", "SHA3_512" ] }, "Announce": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "article": { "$ref": "#/definitions/ArticleAnnouncer" }, "bluesky": { "$ref": "#/definitions/BlueskyAnnouncer" }, "configuredHttp": { "$ref": "#/definitions/HttpAnnouncers" }, "configuredWebhooks": { "$ref": "#/definitions/WebhooksAnnouncer" }, "discord": { "allOf": [ { "$ref": "#/definitions/DiscordAnnouncer" }, { "description": "announce.discord is deprecated since 1.4.0 and will be removed in 2.0.0" } ] }, "discourse": { "$ref": "#/definitions/DiscourseAnnouncer" }, "discussions": { "$ref": "#/definitions/DiscussionsAnnouncer" }, "gitter": { "allOf": [ { "$ref": "#/definitions/GitterAnnouncer" }, { "description": "announce.gitter is deprecated since 1.4.0 and will be removed in 2.0.0" } ] }, "googleChat": { "allOf": [ { "$ref": "#/definitions/GoogleChatAnnouncer" }, { "description": "announce.googleChat is deprecated since 1.4.0 and will be removed in 2.0.0" } ] }, "http": { "allOf": [ { "$ref": "#/definitions/HttpAnnouncerMap" }, { "additionalProperties": { "$ref": "#/definitions/HttpAnnouncer" }, "type": ["object", "null"] } ] }, "linkedin": { "$ref": "#/definitions/LinkedinAnnouncer" }, "mail": { "allOf": [ { "$ref": "#/definitions/SmtpAnnouncer" }, { "description": "announce.mail is deprecated since 1.4.0 and will be removed in 2.0.0" } ] }, "mastodon": { "$ref": "#/definitions/MastodonAnnouncer" }, "mattermost": { "allOf": [ { "$ref": "#/definitions/MattermostAnnouncer" }, { "description": "announce.mattermost is deprecated since 1.4.0 and will be removed in 2.0.0" } ] }, "openCollective": { "$ref": "#/definitions/OpenCollectiveAnnouncer" }, "sdkman": { "$ref": "#/definitions/SdkmanAnnouncer" }, "slack": { "$ref": "#/definitions/SlackAnnouncer" }, "smtp": { "$ref": "#/definitions/SmtpAnnouncer" }, "teams": { "allOf": [ { "$ref": "#/definitions/TeamsAnnouncer" }, { "description": "announce.teams is deprecated since 1.4.0 and will be removed in 2.0.0" } ] }, "telegram": { "$ref": "#/definitions/TelegramAnnouncer" }, "twitter": { "$ref": "#/definitions/TwitterAnnouncer" }, "webhooks": { "allOf": [ { "$ref": "#/definitions/WebhookAnnouncerMap" }, { "additionalProperties": { "$ref": "#/definitions/WebhookAnnouncer" }, "type": ["object", "null"] } ] }, "zulip": { "$ref": "#/definitions/ZulipAnnouncer" } }, "additionalProperties": false }, "AppImagePackager": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "categories": { "type": "array", "items": { "type": "string" } }, "commitAuthor": { "$ref": "#/definitions/CommitAuthor" }, "componentId": { "type": "string" }, "continueOnError": { "type": "boolean" }, "developerName": { "type": "string" }, "downloadUrl": { "type": "string" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "icons": { "type": "array", "items": { "$ref": "#/definitions/Icon" } }, "repository": { "$ref": "#/definitions/AppImageRepository" }, "requiresTerminal": { "type": "boolean" }, "screenshots": { "type": "array", "items": { "$ref": "#/definitions/Screenshot" } }, "skipReleases": { "type": "array", "items": { "type": "string" } }, "skipTemplates": { "type": "array", "items": { "type": "string" } }, "templateDirectory": { "type": "string" } }, "additionalProperties": false }, "AppImageRepository": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "branch": { "type": "string" }, "branchPush": { "type": "string" }, "commitMessage": { "type": "string" }, "name": { "type": "string" }, "owner": { "type": "string" }, "tagName": { "type": "string" }, "token": { "type": "string" }, "username": { "type": "string" } }, "additionalProperties": false }, "Append": { "type": "object", "properties": { "content": { "type": "string" }, "contentTemplate": { "type": "string" }, "enabled": { "type": "boolean" }, "target": { "type": "string" }, "title": { "type": "string" } }, "additionalProperties": false }, "ApplicationPackage": { "type": "object", "properties": { "appName": { "type": "string" }, "appVersion": { "type": "string" }, "copyright": { "type": "string" }, "fileAssociations": { "type": "array", "items": { "type": "string" } }, "licenseFile": { "type": "string" }, "vendor": { "type": "string" } }, "additionalProperties": false }, "Apply": { "type": "string", "enum": ["NEVER", "ALWAYS", "WARN", "FORCE"] }, "Architecture": { "type": "object", "properties": { "buildOn": { "type": "array", "items": { "type": "string" } }, "ignoreError": { "type": "boolean" }, "runOn": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false }, "ArchiveAssembler": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "archiveName": { "type": "string" }, "artifacts": { "type": "array", "items": { "$ref": "#/definitions/Artifact" } }, "attachPlatform": { "type": "boolean" }, "distributionType": { "$ref": "#/definitions/DistributionType" }, "exported": { "type": "boolean" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "fileSets": { "type": "array", "items": { "$ref": "#/definitions/FileSet" } }, "files": { "type": "array", "items": { "$ref": "#/definitions/Glob" } }, "formats": { "type": "array", "items": { "$ref": "#/definitions/Format-1" } }, "options": { "$ref": "#/definitions/ArchiveOptions" }, "platform": { "$ref": "#/definitions/Platform" }, "skipTemplates": { "type": "array", "items": { "type": "string" } }, "stereotype": { "$ref": "#/definitions/Stereotype" }, "templateDirectory": { "type": "string" } }, "additionalProperties": false }, "ArchiveAssemblerMap": { "type": "object", "additionalProperties": { "$ref": "#/definitions/ArchiveAssembler" }, "patternProperties": { "^[a-zA-Z][a-zA-Z0-9-]*[a-zA-Z0-9]?$": { "$ref": "#/definitions/ArchiveAssembler" } } }, "ArchiveOptions": { "type": "object", "properties": { "bigNumberMode": { "$ref": "#/definitions/TarMode" }, "longFileMode": { "$ref": "#/definitions/TarMode" }, "timestamp": { "type": "string" } }, "additionalProperties": false }, "ArticleAnnouncer": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "commitAuthor": { "$ref": "#/definitions/CommitAuthor" }, "connectTimeout": { "type": "integer" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "files": { "type": "array", "items": { "$ref": "#/definitions/Artifact" } }, "readTimeout": { "type": "integer" }, "repository": { "$ref": "#/definitions/Repository" }, "templateDirectory": { "type": "string" } }, "additionalProperties": false }, "Artifact": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "path": { "type": "string" }, "platform": { "type": "string" }, "transform": { "type": "string" } }, "additionalProperties": false }, "ArtifactOverride": { "type": "object", "properties": { "artifactId": { "type": "string" }, "groupId": { "type": "string" }, "javadocJar": { "type": "boolean" }, "sourceJar": { "type": "boolean" } }, "additionalProperties": false }, "ArtifactoryMavenDeployer": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "applyMavenCentralRules": { "type": "boolean" }, "artifactOverrides": { "type": "array", "items": { "$ref": "#/definitions/ArtifactOverride" } }, "authorization": { "$ref": "#/definitions/Authorization" }, "checksums": { "type": "boolean" }, "connectTimeout": { "type": "integer" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "javadocJar": { "type": "boolean" }, "password": { "type": "string" }, "readTimeout": { "type": "integer" }, "sign": { "type": "boolean" }, "sourceJar": { "type": "boolean" }, "stagingRepositories": { "type": "array", "items": { "type": "string" } }, "url": { "type": "string" }, "username": { "type": "string" }, "verifyPom": { "type": "boolean" } }, "additionalProperties": false }, "ArtifactoryMavenDeployerMap": { "type": "object", "additionalProperties": { "$ref": "#/definitions/ArtifactoryMavenDeployer" }, "patternProperties": { "^[a-zA-Z][a-zA-Z0-9-]*[a-zA-Z0-9]?$": { "$ref": "#/definitions/ArtifactoryMavenDeployer" } } }, "ArtifactoryRepository": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "fileTypes": { "type": "array", "items": { "$ref": "#/definitions/FileType" } }, "path": { "type": "string" } }, "additionalProperties": false }, "ArtifactoryUploader": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "artifacts": { "type": "boolean" }, "authorization": { "$ref": "#/definitions/Authorization" }, "catalogs": { "type": "boolean" }, "checksums": { "type": "boolean" }, "connectTimeout": { "type": "integer" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "files": { "type": "boolean" }, "headers": { "allOf": [ { "$ref": "#/definitions/StringProperties" }, { "additionalProperties": { "type": "string" }, "type": ["object", "null"] } ] }, "host": { "type": "string" }, "password": { "type": "string" }, "readTimeout": { "type": "integer" }, "repositories": { "type": "array", "items": { "$ref": "#/definitions/ArtifactoryRepository" } }, "signatures": { "type": "boolean" }, "username": { "type": "string" } }, "additionalProperties": false }, "ArtifactoryUploaderMap": { "type": "object", "additionalProperties": { "$ref": "#/definitions/ArtifactoryUploader" }, "patternProperties": { "^[a-zA-Z][a-zA-Z0-9-]*[a-zA-Z0-9]?$": { "$ref": "#/definitions/ArtifactoryUploader" } } }, "AsdfPackager": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "commitAuthor": { "$ref": "#/definitions/CommitAuthor" }, "continueOnError": { "type": "boolean" }, "downloadUrl": { "type": "string" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "repository": { "$ref": "#/definitions/AsdfRepository" }, "skipTemplates": { "type": "array", "items": { "type": "string" } }, "templateDirectory": { "type": "string" }, "toolCheck": { "type": "string" } }, "additionalProperties": false }, "AsdfRepository": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "branch": { "type": "string" }, "branchPush": { "type": "string" }, "commitMessage": { "type": "string" }, "name": { "type": "string" }, "owner": { "type": "string" }, "tagName": { "type": "string" }, "token": { "type": "string" }, "username": { "type": "string" } }, "additionalProperties": false }, "Assemble": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "archive": { "allOf": [ { "$ref": "#/definitions/ArchiveAssemblerMap" }, { "additionalProperties": { "$ref": "#/definitions/ArchiveAssembler" }, "type": ["object", "null"] } ] }, "javaArchive": { "allOf": [ { "$ref": "#/definitions/JavaArchiveAssemblerMap" }, { "additionalProperties": { "$ref": "#/definitions/JavaArchiveAssembler" }, "type": ["object", "null"] } ] }, "jlink": { "allOf": [ { "$ref": "#/definitions/JlinkAssemblerMap" }, { "additionalProperties": { "$ref": "#/definitions/JlinkAssembler" }, "type": ["object", "null"] } ] }, "jpackage": { "allOf": [ { "$ref": "#/definitions/JpackageAssemblerMap" }, { "additionalProperties": { "$ref": "#/definitions/JpackageAssembler" }, "type": ["object", "null"] } ] }, "nativeImage": { "allOf": [ { "$ref": "#/definitions/NativeImageAssemblerMap" }, { "additionalProperties": { "$ref": "#/definitions/NativeImageAssembler" }, "type": ["object", "null"] } ] } }, "additionalProperties": false }, "Asset": { "type": "object", "properties": { "input": { "type": "string" }, "output": { "type": "string" }, "unpack": { "$ref": "#/definitions/Unpack" } }, "additionalProperties": false }, "Authorization": { "type": "string", "enum": ["NONE", "BASIC", "BEARER"] }, "AzureMavenDeployer": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "applyMavenCentralRules": { "type": "boolean" }, "artifactOverrides": { "type": "array", "items": { "$ref": "#/definitions/ArtifactOverride" } }, "authorization": { "$ref": "#/definitions/Authorization" }, "checksums": { "type": "boolean" }, "connectTimeout": { "type": "integer" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "javadocJar": { "type": "boolean" }, "password": { "type": "string" }, "readTimeout": { "type": "integer" }, "sign": { "type": "boolean" }, "sourceJar": { "type": "boolean" }, "stagingRepositories": { "type": "array", "items": { "type": "string" } }, "url": { "type": "string" }, "username": { "type": "string" }, "verifyPom": { "type": "boolean" } }, "additionalProperties": false }, "AzureMavenDeployerMap": { "type": "object", "additionalProperties": { "$ref": "#/definitions/AzureMavenDeployer" }, "patternProperties": { "^[a-zA-Z][a-zA-Z0-9-]*[a-zA-Z0-9]?$": { "$ref": "#/definitions/AzureMavenDeployer" } } }, "BlueskyAnnouncer": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "connectTimeout": { "type": "integer" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "handle": { "type": "string" }, "host": { "type": "string" }, "password": { "type": "string" }, "readTimeout": { "type": "integer" }, "status": { "type": "string" }, "statusTemplate": { "type": "string" }, "statuses": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false }, "BrewPackager": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "cask": { "$ref": "#/definitions/Cask" }, "commitAuthor": { "$ref": "#/definitions/CommitAuthor" }, "continueOnError": { "type": "boolean" }, "dependencies": { "type": "array", "items": { "$ref": "#/definitions/Dependency" } }, "downloadUrl": { "type": "string" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "formulaName": { "type": "string" }, "livecheck": { "type": "array", "items": { "type": "string" } }, "multiPlatform": { "type": "boolean" }, "skipTemplates": { "type": "array", "items": { "type": "string" } }, "tap": { "$ref": "#/definitions/HomebrewTap" }, "templateDirectory": { "type": "string" } }, "additionalProperties": false }, "Buildx": { "type": "object", "properties": { "createBuilder": { "type": "boolean" }, "createBuilderFlags": { "type": "array", "items": { "type": "string" } }, "enabled": { "type": "boolean" }, "platforms": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false }, "Cask": { "type": "object", "properties": { "appName": { "type": "string" }, "appcast": { "type": "string" }, "displayName": { "type": "string" }, "enabled": { "type": "boolean" }, "name": { "type": "string" }, "pkgName": { "type": "string" }, "uninstall": { "type": "array", "items": { "$ref": "#/definitions/CaskItem" } }, "zap": { "type": "array", "items": { "$ref": "#/definitions/CaskItem" } } }, "additionalProperties": false }, "CaskItem": { "type": "object", "properties": { "items": { "type": "array", "items": { "type": "string" } }, "name": { "type": "string" } }, "additionalProperties": false }, "Catalog": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "sbom": { "$ref": "#/definitions/Sbom" }, "slsa": { "$ref": "#/definitions/SlsaCataloger" } }, "additionalProperties": false }, "Category": { "type": "object", "properties": { "format": { "type": "string" }, "key": { "type": "string" }, "labels": { "type": "array", "items": { "type": "string" } }, "order": { "type": "integer" }, "title": { "type": "string" } }, "additionalProperties": false }, "Changelog": { "type": "object", "properties": { "append": { "$ref": "#/definitions/Append" }, "categories": { "type": "array", "items": { "$ref": "#/definitions/Category" } }, "categoryTitleFormat": { "type": "string" }, "content": { "type": "string" }, "contentTemplate": { "type": "string" }, "contributors": { "$ref": "#/definitions/Contributors" }, "contributorsTitleFormat": { "type": "string" }, "enabled": { "type": "boolean" }, "excludeLabels": { "type": "array", "items": { "type": "string" } }, "external": { "type": "string" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "format": { "type": "string" }, "formatted": { "$ref": "#/definitions/Active" }, "hide": { "$ref": "#/definitions/Hide" }, "includeLabels": { "type": "array", "items": { "type": "string" } }, "labelers": { "type": "array", "items": { "$ref": "#/definitions/Labeler" } }, "links": { "type": "boolean" }, "preset": { "type": "string" }, "replacers": { "type": "array", "items": { "$ref": "#/definitions/Replacer" } }, "skipMergeCommits": { "type": "boolean" }, "sort": { "$ref": "#/definitions/Sort" } }, "additionalProperties": false }, "Checksum": { "type": "object", "properties": { "algorithms": { "type": "array", "items": { "$ref": "#/definitions/Algorithm" } }, "artifacts": { "type": "boolean" }, "files": { "type": "boolean" }, "individual": { "type": "boolean" }, "name": { "type": "string" } }, "additionalProperties": false }, "ChocolateyPackager": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "apiKey": { "type": "string" }, "bucket": { "$ref": "#/definitions/ChocolateyRepository" }, "commitAuthor": { "$ref": "#/definitions/CommitAuthor" }, "continueOnError": { "type": "boolean" }, "downloadUrl": { "type": "string" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "iconUrl": { "type": "string" }, "packageName": { "type": "string" }, "packageVersion": { "type": "string" }, "remoteBuild": { "type": "boolean" }, "skipTemplates": { "type": "array", "items": { "type": "string" } }, "source": { "type": "string" }, "templateDirectory": { "type": "string" }, "title": { "type": "string" }, "username": { "type": "string" } }, "additionalProperties": false }, "ChocolateyRepository": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "branch": { "type": "string" }, "branchPush": { "type": "string" }, "commitMessage": { "type": "string" }, "name": { "type": "string" }, "owner": { "type": "string" }, "tagName": { "type": "string" }, "token": { "type": "string" }, "username": { "type": "string" } }, "additionalProperties": false }, "CodebergReleaser": { "type": "object", "properties": { "apiEndpoint": { "type": "string" }, "artifacts": { "type": "boolean" }, "branch": { "type": "string" }, "branchPush": { "type": "string" }, "catalogs": { "type": "boolean" }, "changelog": { "$ref": "#/definitions/Changelog" }, "checksums": { "type": "boolean" }, "commitAuthor": { "$ref": "#/definitions/CommitAuthor" }, "commitUrl": { "type": "string" }, "connectTimeout": { "type": "integer" }, "downloadUrl": { "type": "string" }, "draft": { "type": "boolean" }, "enabled": { "type": "boolean" }, "files": { "type": "boolean" }, "host": { "type": "string" }, "issueTrackerUrl": { "type": "string" }, "issues": { "$ref": "#/definitions/Issues" }, "latestReleaseUrl": { "type": "string" }, "milestone": { "$ref": "#/definitions/Milestone" }, "name": { "type": "string" }, "overwrite": { "type": "boolean" }, "owner": { "type": "string" }, "prerelease": { "$ref": "#/definitions/Prerelease" }, "previousTagName": { "type": "string" }, "readTimeout": { "type": "integer" }, "releaseName": { "type": "string" }, "releaseNotesUrl": { "type": "string" }, "repoCloneUrl": { "type": "string" }, "repoUrl": { "type": "string" }, "sign": { "type": "boolean" }, "signatures": { "type": "boolean" }, "skipRelease": { "type": "boolean" }, "skipTag": { "type": "boolean" }, "srcUrl": { "type": "string" }, "tagName": { "type": "string" }, "token": { "type": "string" }, "update": { "$ref": "#/definitions/Update" }, "uploadAssets": { "$ref": "#/definitions/Active" }, "username": { "type": "string" } }, "additionalProperties": false }, "Command-1": { "type": "string", "enum": ["MAJOR", "MINOR"] }, "Command-2": { "type": "object", "properties": { "args": { "type": "array", "items": { "type": "string" } }, "defaultKeyring": { "type": "boolean" }, "executable": { "type": "string" }, "homeDir": { "type": "string" }, "keyName": { "type": "string" }, "publicKeyring": { "type": "string" } }, "additionalProperties": false }, "CommandHook": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "cmd": { "type": "string" }, "condition": { "type": "string" }, "continueOnError": { "type": "boolean" }, "environment": { "allOf": [ { "$ref": "#/definitions/StringProperties" }, { "additionalProperties": { "type": "string" }, "type": ["object", "null"] } ] }, "filter": { "$ref": "#/definitions/Filter" }, "platforms": { "type": "array", "items": { "type": "string" } }, "verbose": { "type": "boolean" } }, "additionalProperties": false }, "CommandHooks": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "before": { "type": "array", "items": { "$ref": "#/definitions/CommandHook" } }, "environment": { "allOf": [ { "$ref": "#/definitions/StringProperties" }, { "additionalProperties": { "type": "string" }, "type": ["object", "null"] } ] }, "failure": { "type": "array", "items": { "$ref": "#/definitions/CommandHook" } }, "success": { "type": "array", "items": { "$ref": "#/definitions/CommandHook" } } }, "additionalProperties": false }, "CommitAuthor": { "type": "object", "properties": { "email": { "type": "string" }, "name": { "type": "string" } }, "additionalProperties": false }, "Contributors": { "type": "object", "properties": { "enabled": { "type": "boolean" }, "format": { "type": "string" } }, "additionalProperties": false }, "Cosign": { "type": "object", "properties": { "privateKeyFile": { "type": "string" }, "publicKeyFile": { "type": "string" }, "version": { "type": "string" } }, "additionalProperties": false }, "CyclonedxSbomCataloger": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "distributions": { "type": "boolean" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "files": { "type": "boolean" }, "formats": { "type": "array", "items": { "$ref": "#/definitions/Format-2" } }, "pack": { "$ref": "#/definitions/Pack" }, "version": { "type": "string" } }, "additionalProperties": false }, "Dependency": { "type": "object", "properties": { "key": { "type": "string" }, "value": { "type": "string" } }, "additionalProperties": false }, "Deploy": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "maven": { "$ref": "#/definitions/Maven" } }, "additionalProperties": false }, "DiscordAnnouncer": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "connectTimeout": { "type": "integer" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "message": { "type": "string" }, "messageTemplate": { "type": "string" }, "readTimeout": { "type": "integer" }, "webhook": { "type": "string" } }, "additionalProperties": false }, "DiscourseAnnouncer": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "apiKey": { "type": "string" }, "categoryName": { "type": "string" }, "connectTimeout": { "type": "integer" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "host": { "type": "string" }, "message": { "type": "string" }, "messageTemplate": { "type": "string" }, "readTimeout": { "type": "integer" }, "title": { "type": "string" }, "username": { "type": "string" } }, "additionalProperties": false }, "DiscussionsAnnouncer": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "connectTimeout": { "type": "integer" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "message": { "type": "string" }, "messageTemplate": { "type": "string" }, "organization": { "type": "string" }, "readTimeout": { "type": "integer" }, "team": { "type": "string" }, "title": { "type": "string" } }, "additionalProperties": false }, "Distribution": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "appImage": { "$ref": "#/definitions/AppImagePackager" }, "artifacts": { "type": "array", "items": { "$ref": "#/definitions/Artifact" } }, "asdf": { "$ref": "#/definitions/AsdfPackager" }, "brew": { "$ref": "#/definitions/BrewPackager" }, "chocolatey": { "$ref": "#/definitions/ChocolateyPackager" }, "docker": { "$ref": "#/definitions/DockerPackager" }, "executable": { "$ref": "#/definitions/Executable" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "flatpak": { "$ref": "#/definitions/FlatpakPackager" }, "gofish": { "$ref": "#/definitions/GofishPackager" }, "java": { "$ref": "#/definitions/Java-2" }, "jbang": { "$ref": "#/definitions/JbangPackager" }, "jib": { "$ref": "#/definitions/JibPackager" }, "macports": { "$ref": "#/definitions/MacportsPackager" }, "name": { "type": "string" }, "platform": { "$ref": "#/definitions/Platform" }, "scoop": { "$ref": "#/definitions/ScoopPackager" }, "sdkman": { "$ref": "#/definitions/SdkmanPackager" }, "snap": { "$ref": "#/definitions/SnapPackager" }, "spec": { "$ref": "#/definitions/SpecPackager" }, "stereotype": { "$ref": "#/definitions/Stereotype" }, "tags": { "type": "array", "items": { "type": "string" } }, "type": { "$ref": "#/definitions/DistributionType" }, "winget": { "$ref": "#/definitions/WingetPackager" } }, "additionalProperties": false }, "DistributionMap": { "type": "object", "additionalProperties": { "$ref": "#/definitions/Distribution" }, "patternProperties": { "^[a-zA-Z][a-zA-Z0-9-]*[a-zA-Z0-9]?$": { "$ref": "#/definitions/Distribution" } } }, "DistributionType": { "type": "string", "enum": [ "BINARY", "FLAT_BINARY", "JAVA_BINARY", "JLINK", "SINGLE_JAR", "NATIVE_IMAGE", "NATIVE_PACKAGE" ] }, "DockerPackager": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "baseImage": { "type": "string" }, "buildArgs": { "type": "array", "items": { "type": "string" } }, "buildx": { "$ref": "#/definitions/Buildx" }, "commitAuthor": { "$ref": "#/definitions/CommitAuthor" }, "continueOnError": { "type": "boolean" }, "downloadUrl": { "type": "string" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "imageNames": { "type": "array", "items": { "type": "string" } }, "labels": { "allOf": [ { "$ref": "#/definitions/StringProperties" }, { "additionalProperties": { "type": "string" }, "type": ["object", "null"] } ] }, "postCommands": { "type": "array", "items": { "type": "string" } }, "preCommands": { "type": "array", "items": { "type": "string" } }, "registries": { "type": "array", "items": { "$ref": "#/definitions/Registry-1" } }, "repository": { "$ref": "#/definitions/DockerRepository" }, "skipTemplates": { "type": "array", "items": { "type": "string" } }, "specs": { "allOf": [ { "$ref": "#/definitions/DockerSpecMap" }, { "additionalProperties": { "$ref": "#/definitions/DockerSpec" }, "type": ["object", "null"] } ] }, "templateDirectory": { "type": "string" }, "useLocalArtifact": { "type": "boolean" } }, "additionalProperties": false }, "DockerRepository": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "branch": { "type": "string" }, "branchPush": { "type": "string" }, "commitMessage": { "type": "string" }, "name": { "type": "string" }, "owner": { "type": "string" }, "tagName": { "type": "string" }, "token": { "type": "string" }, "username": { "type": "string" }, "versionedSubfolders": { "type": "boolean" } }, "additionalProperties": false }, "DockerSpec": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "artifact": { "$ref": "#/definitions/Artifact" }, "baseImage": { "type": "string" }, "buildArgs": { "type": "array", "items": { "type": "string" } }, "buildx": { "$ref": "#/definitions/Buildx" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "imageNames": { "type": "array", "items": { "type": "string" } }, "labels": { "allOf": [ { "$ref": "#/definitions/StringProperties" }, { "additionalProperties": { "type": "string" }, "type": ["object", "null"] } ] }, "matchers": { "$ref": "#/definitions/Properties" }, "name": { "type": "string" }, "postCommands": { "type": "array", "items": { "type": "string" } }, "preCommands": { "type": "array", "items": { "type": "string" } }, "registries": { "type": "array", "items": { "$ref": "#/definitions/Registry-1" } }, "skipTemplates": { "type": "array", "items": { "type": "string" } }, "templateDirectory": { "type": "string" }, "useLocalArtifact": { "type": "boolean" } }, "additionalProperties": false }, "DockerSpecMap": { "type": "object", "additionalProperties": { "$ref": "#/definitions/DockerSpec" }, "patternProperties": { "^[a-zA-Z][a-zA-Z0-9-]*[a-zA-Z0-9]?$": { "$ref": "#/definitions/DockerSpec" } } }, "Download": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "ftp": { "allOf": [ { "$ref": "#/definitions/FtpDownloaderMap" }, { "additionalProperties": { "$ref": "#/definitions/FtpDownloader" }, "type": ["object", "null"] } ] }, "http": { "allOf": [ { "$ref": "#/definitions/HttpDownloaderMap" }, { "additionalProperties": { "$ref": "#/definitions/HttpDownloader" }, "type": ["object", "null"] } ] }, "scp": { "allOf": [ { "$ref": "#/definitions/ScpDownloaderMap" }, { "additionalProperties": { "$ref": "#/definitions/ScpDownloader" }, "type": ["object", "null"] } ] }, "sftp": { "allOf": [ { "$ref": "#/definitions/SftpDownloaderMap" }, { "additionalProperties": { "$ref": "#/definitions/SftpDownloader" }, "type": ["object", "null"] } ] } }, "additionalProperties": false }, "Environment": { "type": "object", "properties": { "properties": { "$ref": "#/definitions/Properties" }, "variables": { "type": "string" } }, "additionalProperties": false }, "Executable": { "type": "object", "properties": { "name": { "type": "string" }, "unixExtension": { "type": "string" }, "windowsExtension": { "type": "string" } }, "additionalProperties": false }, "Extension": { "type": "object", "properties": { "directory": { "type": "string" }, "enabled": { "type": "boolean" }, "gav": { "type": "string" }, "name": { "type": "string" }, "providers": { "type": "array", "items": { "$ref": "#/definitions/Provider" } } }, "additionalProperties": false }, "ExtensionMap": { "type": "object", "additionalProperties": { "$ref": "#/definitions/Extension" }, "patternProperties": { "^[a-zA-Z][a-zA-Z0-9-]*[a-zA-Z0-9]?$": { "$ref": "#/definitions/Extension" } } }, "FileSet": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "excludes": { "type": "array", "items": { "type": "string" } }, "extraProperties": { "$ref": "#/definitions/Properties" }, "failOnMissingInput": { "type": "boolean" }, "includes": { "type": "array", "items": { "type": "string" } }, "input": { "type": "string" }, "output": { "type": "string" }, "platform": { "type": "string" } }, "additionalProperties": false }, "FileType": { "type": "string", "enum": [ "ASC", "BAT", "CMD", "DEB", "DMG", "EXE", "JAR", "MSI", "NUGET", "PKG", "PS1", "RPM", "SH", "SIG", "TAR", "TAR_BZ2", "TAR_GZ", "TAR_XZ", "TAR_ZST", "TBZ2", "TGZ", "TXZ", "ZIP", "ZST" ] }, "Files": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "artifacts": { "type": "array", "items": { "$ref": "#/definitions/Artifact" } }, "globs": { "type": "array", "items": { "$ref": "#/definitions/Glob" } } }, "additionalProperties": false }, "Filter": { "type": "object", "properties": { "excludes": { "type": "array", "items": { "type": "string" } }, "includes": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false }, "FlatpakPackager": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "categories": { "type": "array", "items": { "type": "string" } }, "commitAuthor": { "$ref": "#/definitions/CommitAuthor" }, "componentId": { "type": "string" }, "continueOnError": { "type": "boolean" }, "developerName": { "type": "string" }, "downloadUrl": { "type": "string" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "finishArgs": { "type": "array", "items": { "type": "string" } }, "icons": { "type": "array", "items": { "$ref": "#/definitions/Icon" } }, "repository": { "$ref": "#/definitions/FlatpakRepository" }, "runtime": { "$ref": "#/definitions/Runtime" }, "runtimeVersion": { "type": "string" }, "screenshots": { "type": "array", "items": { "$ref": "#/definitions/Screenshot" } }, "sdkExtensions": { "type": "array", "items": { "type": "string" } }, "skipReleases": { "type": "array", "items": { "type": "string" } }, "skipTemplates": { "type": "array", "items": { "type": "string" } }, "templateDirectory": { "type": "string" } }, "additionalProperties": false }, "FlatpakRepository": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "branch": { "type": "string" }, "branchPush": { "type": "string" }, "commitMessage": { "type": "string" }, "name": { "type": "string" }, "owner": { "type": "string" }, "tagName": { "type": "string" }, "token": { "type": "string" }, "username": { "type": "string" } }, "additionalProperties": false }, "Format-1": { "type": "string", "enum": [ "ZIP", "TAR", "TAR_BZ2", "TAR_GZ", "TAR_XZ", "TAR_ZST", "TBZ2", "TGZ", "TXZ" ] }, "Format-2": { "type": "string", "enum": ["JSON", "XML", "PROTOBUF"] }, "Format-3": { "type": "string", "enum": [ "SYFT_JSON", "CYCLONEDX_XML", "CYCLONEDX_JSON", "GITHUB_JSON", "SPDX_JSON", "TABLE", "TEXT" ] }, "Format-4": { "type": "string", "enum": ["DOCKER", "OCI"] }, "FtpDownloader": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "assets": { "type": "array", "items": { "$ref": "#/definitions/Asset" } }, "connectTimeout": { "type": "integer" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "host": { "type": "string" }, "password": { "type": "string" }, "port": { "type": "integer" }, "readTimeout": { "type": "integer" }, "username": { "type": "string" } }, "additionalProperties": false }, "FtpDownloaderMap": { "type": "object", "additionalProperties": { "$ref": "#/definitions/FtpDownloader" }, "patternProperties": { "^[a-zA-Z][a-zA-Z0-9-]*[a-zA-Z0-9]?$": { "$ref": "#/definitions/FtpDownloader" } } }, "FtpUploader": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "artifacts": { "type": "boolean" }, "catalogs": { "type": "boolean" }, "checksums": { "type": "boolean" }, "connectTimeout": { "type": "integer" }, "downloadUrl": { "type": "string" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "files": { "type": "boolean" }, "host": { "type": "string" }, "password": { "type": "string" }, "path": { "type": "string" }, "port": { "type": "integer" }, "readTimeout": { "type": "integer" }, "signatures": { "type": "boolean" }, "username": { "type": "string" } }, "additionalProperties": false }, "FtpUploaderMap": { "type": "object", "additionalProperties": { "$ref": "#/definitions/FtpUploader" }, "patternProperties": { "^[a-zA-Z][a-zA-Z0-9-]*[a-zA-Z0-9]?$": { "$ref": "#/definitions/FtpUploader" } } }, "GenericGitReleaser": { "type": "object", "properties": { "apiEndpoint": { "type": "string" }, "artifacts": { "type": "boolean" }, "branch": { "type": "string" }, "branchPush": { "type": "string" }, "catalogs": { "type": "boolean" }, "changelog": { "$ref": "#/definitions/Changelog" }, "checksums": { "type": "boolean" }, "commitAuthor": { "$ref": "#/definitions/CommitAuthor" }, "commitUrl": { "type": "string" }, "connectTimeout": { "type": "integer" }, "downloadUrl": { "type": "string" }, "enabled": { "type": "boolean" }, "files": { "type": "boolean" }, "host": { "type": "string" }, "issueTrackerUrl": { "type": "string" }, "issues": { "$ref": "#/definitions/Issues" }, "latestReleaseUrl": { "type": "string" }, "milestone": { "$ref": "#/definitions/Milestone" }, "name": { "type": "string" }, "overwrite": { "type": "boolean" }, "owner": { "type": "string" }, "prerelease": { "$ref": "#/definitions/Prerelease" }, "previousTagName": { "type": "string" }, "readTimeout": { "type": "integer" }, "releaseName": { "type": "string" }, "releaseNotesUrl": { "type": "string" }, "repoCloneUrl": { "type": "string" }, "repoUrl": { "type": "string" }, "sign": { "type": "boolean" }, "signatures": { "type": "boolean" }, "skipRelease": { "type": "boolean" }, "skipTag": { "type": "boolean" }, "srcUrl": { "type": "string" }, "tagName": { "type": "string" }, "token": { "type": "string" }, "update": { "$ref": "#/definitions/Update" }, "uploadAssets": { "$ref": "#/definitions/Active" }, "username": { "type": "string" } }, "additionalProperties": false }, "GiteaMavenDeployer": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "applyMavenCentralRules": { "type": "boolean" }, "artifactOverrides": { "type": "array", "items": { "$ref": "#/definitions/ArtifactOverride" } }, "authorization": { "$ref": "#/definitions/Authorization" }, "checksums": { "type": "boolean" }, "connectTimeout": { "type": "integer" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "javadocJar": { "type": "boolean" }, "password": { "type": "string" }, "readTimeout": { "type": "integer" }, "sign": { "type": "boolean" }, "sourceJar": { "type": "boolean" }, "stagingRepositories": { "type": "array", "items": { "type": "string" } }, "url": { "type": "string" }, "username": { "type": "string" }, "verifyPom": { "type": "boolean" } }, "additionalProperties": false }, "GiteaMavenDeployerMap": { "type": "object", "additionalProperties": { "$ref": "#/definitions/GiteaMavenDeployer" }, "patternProperties": { "^[a-zA-Z][a-zA-Z0-9-]*[a-zA-Z0-9]?$": { "$ref": "#/definitions/GiteaMavenDeployer" } } }, "GiteaReleaser": { "type": "object", "properties": { "apiEndpoint": { "type": "string" }, "artifacts": { "type": "boolean" }, "branch": { "type": "string" }, "branchPush": { "type": "string" }, "catalogs": { "type": "boolean" }, "changelog": { "$ref": "#/definitions/Changelog" }, "checksums": { "type": "boolean" }, "commitAuthor": { "$ref": "#/definitions/CommitAuthor" }, "commitUrl": { "type": "string" }, "connectTimeout": { "type": "integer" }, "downloadUrl": { "type": "string" }, "draft": { "type": "boolean" }, "enabled": { "type": "boolean" }, "files": { "type": "boolean" }, "host": { "type": "string" }, "issueTrackerUrl": { "type": "string" }, "issues": { "$ref": "#/definitions/Issues" }, "latestReleaseUrl": { "type": "string" }, "milestone": { "$ref": "#/definitions/Milestone" }, "name": { "type": "string" }, "overwrite": { "type": "boolean" }, "owner": { "type": "string" }, "prerelease": { "$ref": "#/definitions/Prerelease" }, "previousTagName": { "type": "string" }, "readTimeout": { "type": "integer" }, "releaseName": { "type": "string" }, "releaseNotesUrl": { "type": "string" }, "repoCloneUrl": { "type": "string" }, "repoUrl": { "type": "string" }, "sign": { "type": "boolean" }, "signatures": { "type": "boolean" }, "skipRelease": { "type": "boolean" }, "skipTag": { "type": "boolean" }, "srcUrl": { "type": "string" }, "tagName": { "type": "string" }, "token": { "type": "string" }, "update": { "$ref": "#/definitions/Update" }, "uploadAssets": { "$ref": "#/definitions/Active" }, "username": { "type": "string" } }, "additionalProperties": false }, "GiteaUploader": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "artifacts": { "type": "boolean" }, "catalogs": { "type": "boolean" }, "checksums": { "type": "boolean" }, "connectTimeout": { "type": "integer" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "files": { "type": "boolean" }, "host": { "type": "string" }, "owner": { "type": "string" }, "packageName": { "type": "string" }, "packageVersion": { "type": "string" }, "readTimeout": { "type": "integer" }, "signatures": { "type": "boolean" }, "token": { "type": "string" } }, "additionalProperties": false }, "GiteaUploaderMap": { "type": "object", "additionalProperties": { "$ref": "#/definitions/GiteaUploader" }, "patternProperties": { "^[a-zA-Z][a-zA-Z0-9-]*[a-zA-Z0-9]?$": { "$ref": "#/definitions/GiteaUploader" } } }, "GithubMavenDeployer": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "applyMavenCentralRules": { "type": "boolean" }, "artifactOverrides": { "type": "array", "items": { "$ref": "#/definitions/ArtifactOverride" } }, "authorization": { "$ref": "#/definitions/Authorization" }, "checksums": { "type": "boolean" }, "connectTimeout": { "type": "integer" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "javadocJar": { "type": "boolean" }, "password": { "type": "string" }, "readTimeout": { "type": "integer" }, "repository": { "type": "string" }, "sign": { "type": "boolean" }, "sourceJar": { "type": "boolean" }, "stagingRepositories": { "type": "array", "items": { "type": "string" } }, "url": { "type": "string" }, "username": { "type": "string" }, "verifyPom": { "type": "boolean" } }, "additionalProperties": false }, "GithubMavenDeployerMap": { "type": "object", "additionalProperties": { "$ref": "#/definitions/GithubMavenDeployer" }, "patternProperties": { "^[a-zA-Z][a-zA-Z0-9-]*[a-zA-Z0-9]?$": { "$ref": "#/definitions/GithubMavenDeployer" } } }, "GithubReleaser": { "type": "object", "properties": { "apiEndpoint": { "type": "string" }, "artifacts": { "type": "boolean" }, "branch": { "type": "string" }, "branchPush": { "type": "string" }, "catalogs": { "type": "boolean" }, "changelog": { "$ref": "#/definitions/Changelog" }, "checksums": { "type": "boolean" }, "commitAuthor": { "$ref": "#/definitions/CommitAuthor" }, "commitUrl": { "type": "string" }, "connectTimeout": { "type": "integer" }, "discussionCategoryName": { "type": "string" }, "downloadUrl": { "type": "string" }, "draft": { "type": "boolean" }, "enabled": { "type": "boolean" }, "files": { "type": "boolean" }, "host": { "type": "string" }, "issueTrackerUrl": { "type": "string" }, "issues": { "$ref": "#/definitions/Issues" }, "latestReleaseUrl": { "type": "string" }, "milestone": { "$ref": "#/definitions/Milestone" }, "name": { "type": "string" }, "overwrite": { "type": "boolean" }, "owner": { "type": "string" }, "prerelease": { "$ref": "#/definitions/Prerelease" }, "previousTagName": { "type": "string" }, "readTimeout": { "type": "integer" }, "releaseName": { "type": "string" }, "releaseNotes": { "$ref": "#/definitions/ReleaseNotes" }, "releaseNotesUrl": { "type": "string" }, "repoCloneUrl": { "type": "string" }, "repoUrl": { "type": "string" }, "sign": { "type": "boolean" }, "signatures": { "type": "boolean" }, "skipRelease": { "type": "boolean" }, "skipTag": { "type": "boolean" }, "srcUrl": { "type": "string" }, "tagName": { "type": "string" }, "token": { "type": "string" }, "update": { "$ref": "#/definitions/Update" }, "uploadAssets": { "$ref": "#/definitions/Active" }, "username": { "type": "string" } }, "additionalProperties": false }, "GitlabMavenDeployer": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "applyMavenCentralRules": { "type": "boolean" }, "artifactOverrides": { "type": "array", "items": { "$ref": "#/definitions/ArtifactOverride" } }, "authorization": { "$ref": "#/definitions/Authorization" }, "checksums": { "type": "boolean" }, "connectTimeout": { "type": "integer" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "javadocJar": { "type": "boolean" }, "password": { "type": "string" }, "projectIdentifier": { "type": "string" }, "readTimeout": { "type": "integer" }, "sign": { "type": "boolean" }, "sourceJar": { "type": "boolean" }, "stagingRepositories": { "type": "array", "items": { "type": "string" } }, "url": { "type": "string" }, "username": { "type": "string" }, "verifyPom": { "type": "boolean" } }, "additionalProperties": false }, "GitlabMavenDeployerMap": { "type": "object", "additionalProperties": { "$ref": "#/definitions/GitlabMavenDeployer" }, "patternProperties": { "^[a-zA-Z][a-zA-Z0-9-]*[a-zA-Z0-9]?$": { "$ref": "#/definitions/GitlabMavenDeployer" } } }, "GitlabReleaser": { "type": "object", "properties": { "apiEndpoint": { "type": "string" }, "artifacts": { "type": "boolean" }, "branch": { "type": "string" }, "branchPush": { "type": "string" }, "catalogs": { "type": "boolean" }, "changelog": { "$ref": "#/definitions/Changelog" }, "checksums": { "type": "boolean" }, "commitAuthor": { "$ref": "#/definitions/CommitAuthor" }, "commitUrl": { "type": "string" }, "connectTimeout": { "type": "integer" }, "downloadUrl": { "type": "string" }, "enabled": { "type": "boolean" }, "files": { "type": "boolean" }, "host": { "type": "string" }, "issueTrackerUrl": { "type": "string" }, "issues": { "$ref": "#/definitions/Issues" }, "latestReleaseUrl": { "type": "string" }, "milestone": { "$ref": "#/definitions/Milestone" }, "name": { "type": "string" }, "overwrite": { "type": "boolean" }, "owner": { "type": "string" }, "prerelease": { "$ref": "#/definitions/Prerelease" }, "previousTagName": { "type": "string" }, "projectIdentifier": { "type": "string" }, "readTimeout": { "type": "integer" }, "releaseName": { "type": "string" }, "releaseNotesUrl": { "type": "string" }, "repoCloneUrl": { "type": "string" }, "repoUrl": { "type": "string" }, "sign": { "type": "boolean" }, "signatures": { "type": "boolean" }, "skipRelease": { "type": "boolean" }, "skipTag": { "type": "boolean" }, "srcUrl": { "type": "string" }, "tagName": { "type": "string" }, "token": { "type": "string" }, "update": { "$ref": "#/definitions/Update" }, "uploadAssets": { "$ref": "#/definitions/Active" }, "uploadLinks": { "allOf": [ { "$ref": "#/definitions/StringProperties" }, { "additionalProperties": { "type": "string" }, "type": ["object", "null"] } ] }, "username": { "type": "string" } }, "additionalProperties": false }, "GitlabUploader": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "artifacts": { "type": "boolean" }, "catalogs": { "type": "boolean" }, "checksums": { "type": "boolean" }, "connectTimeout": { "type": "integer" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "files": { "type": "boolean" }, "host": { "type": "string" }, "packageName": { "type": "string" }, "packageVersion": { "type": "string" }, "projectIdentifier": { "type": "string" }, "readTimeout": { "type": "integer" }, "signatures": { "type": "boolean" }, "token": { "type": "string" } }, "additionalProperties": false }, "GitlabUploaderMap": { "type": "object", "additionalProperties": { "$ref": "#/definitions/GitlabUploader" }, "patternProperties": { "^[a-zA-Z][a-zA-Z0-9-]*[a-zA-Z0-9]?$": { "$ref": "#/definitions/GitlabUploader" } } }, "GitterAnnouncer": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "connectTimeout": { "type": "integer" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "message": { "type": "string" }, "messageTemplate": { "type": "string" }, "readTimeout": { "type": "integer" }, "webhook": { "type": "string" } }, "additionalProperties": false }, "Glob": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "directory": { "type": "string" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "pattern": { "type": "string" }, "platform": { "type": "string" } }, "additionalProperties": false }, "GofishPackager": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "commitAuthor": { "$ref": "#/definitions/CommitAuthor" }, "continueOnError": { "type": "boolean" }, "downloadUrl": { "type": "string" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "repository": { "$ref": "#/definitions/GofishRepository" }, "skipTemplates": { "type": "array", "items": { "type": "string" } }, "templateDirectory": { "type": "string" } }, "additionalProperties": false }, "GofishRepository": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "branch": { "type": "string" }, "branchPush": { "type": "string" }, "commitMessage": { "type": "string" }, "name": { "type": "string" }, "owner": { "type": "string" }, "tagName": { "type": "string" }, "token": { "type": "string" }, "username": { "type": "string" } }, "additionalProperties": false }, "GoogleChatAnnouncer": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "connectTimeout": { "type": "integer" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "message": { "type": "string" }, "messageTemplate": { "type": "string" }, "readTimeout": { "type": "integer" }, "webhook": { "type": "string" } }, "additionalProperties": false }, "Hide": { "type": "object", "properties": { "categories": { "type": "array", "items": { "type": "string" } }, "contributors": { "type": "array", "items": { "type": "string" } }, "uncategorized": { "type": "boolean" } }, "additionalProperties": false }, "HomebrewTap": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "branch": { "type": "string" }, "branchPush": { "type": "string" }, "commitMessage": { "type": "string" }, "name": { "type": "string" }, "owner": { "type": "string" }, "tagName": { "type": "string" }, "token": { "type": "string" }, "username": { "type": "string" } }, "additionalProperties": false }, "Hooks": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "command": { "$ref": "#/definitions/CommandHooks" }, "environment": { "allOf": [ { "$ref": "#/definitions/StringProperties" }, { "additionalProperties": { "type": "string" }, "type": ["object", "null"] } ] }, "script": { "$ref": "#/definitions/ScriptHooks" } }, "additionalProperties": false }, "HttpAnnouncer": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "authorization": { "$ref": "#/definitions/Authorization" }, "bearerKeyword": { "type": "string" }, "connectTimeout": { "type": "integer" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "headers": { "allOf": [ { "$ref": "#/definitions/StringProperties" }, { "additionalProperties": { "type": "string" }, "type": ["object", "null"] } ] }, "method": { "$ref": "#/definitions/Method" }, "password": { "type": "string" }, "payload": { "type": "string" }, "payloadTemplate": { "type": "string" }, "readTimeout": { "type": "integer" }, "url": { "type": "string" }, "username": { "type": "string" } }, "additionalProperties": false }, "HttpAnnouncerMap": { "type": "object", "additionalProperties": { "$ref": "#/definitions/HttpAnnouncer" }, "patternProperties": { "^[a-zA-Z][a-zA-Z0-9-]*[a-zA-Z0-9]?$": { "$ref": "#/definitions/HttpAnnouncer" } } }, "HttpAnnouncers": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "connectTimeout": { "type": "integer" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "http": { "allOf": [ { "$ref": "#/definitions/HttpAnnouncerMap" }, { "additionalProperties": { "$ref": "#/definitions/HttpAnnouncer" }, "type": ["object", "null"] } ] }, "readTimeout": { "type": "integer" } }, "additionalProperties": false }, "HttpDownloader": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "assets": { "type": "array", "items": { "$ref": "#/definitions/Asset" } }, "authorization": { "$ref": "#/definitions/Authorization" }, "connectTimeout": { "type": "integer" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "headers": { "allOf": [ { "$ref": "#/definitions/StringProperties" }, { "additionalProperties": { "type": "string" }, "type": ["object", "null"] } ] }, "password": { "type": "string" }, "readTimeout": { "type": "integer" }, "username": { "type": "string" } }, "additionalProperties": false }, "HttpDownloaderMap": { "type": "object", "additionalProperties": { "$ref": "#/definitions/HttpDownloader" }, "patternProperties": { "^[a-zA-Z][a-zA-Z0-9-]*[a-zA-Z0-9]?$": { "$ref": "#/definitions/HttpDownloader" } } }, "HttpUploader": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "artifacts": { "type": "boolean" }, "authorization": { "$ref": "#/definitions/Authorization" }, "catalogs": { "type": "boolean" }, "checksums": { "type": "boolean" }, "connectTimeout": { "type": "integer" }, "downloadUrl": { "type": "string" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "files": { "type": "boolean" }, "headers": { "allOf": [ { "$ref": "#/definitions/StringProperties" }, { "additionalProperties": { "type": "string" }, "type": ["object", "null"] } ] }, "method": { "$ref": "#/definitions/Method" }, "password": { "type": "string" }, "readTimeout": { "type": "integer" }, "signatures": { "type": "boolean" }, "uploadUrl": { "type": "string" }, "username": { "type": "string" } }, "additionalProperties": false }, "HttpUploaderMap": { "type": "object", "additionalProperties": { "$ref": "#/definitions/HttpUploader" }, "patternProperties": { "^[a-zA-Z][a-zA-Z0-9-]*[a-zA-Z0-9]?$": { "$ref": "#/definitions/HttpUploader" } } }, "Icon": { "type": "object", "properties": { "extraProperties": { "$ref": "#/definitions/Properties" }, "height": { "type": "integer" }, "primary": { "type": "boolean" }, "url": { "type": "string" }, "width": { "type": "integer" } }, "additionalProperties": false }, "Installer": { "type": "object", "properties": { "command": { "type": "string" }, "modes": { "type": "array", "items": { "$ref": "#/definitions/Mode-1" } }, "scope": { "$ref": "#/definitions/Scope" }, "type": { "$ref": "#/definitions/Type-2" }, "upgradeBehavior": { "$ref": "#/definitions/UpgradeBehavior" } }, "additionalProperties": false }, "Issues": { "type": "object", "properties": { "applyMilestone": { "$ref": "#/definitions/Apply" }, "comment": { "type": "string" }, "enabled": { "type": "boolean" }, "label": { "$ref": "#/definitions/Label" } }, "additionalProperties": false }, "JReleaserModel": { "type": "object", "properties": { "announce": { "$ref": "#/definitions/Announce" }, "assemble": { "$ref": "#/definitions/Assemble" }, "catalog": { "$ref": "#/definitions/Catalog" }, "checksum": { "$ref": "#/definitions/Checksum" }, "deploy": { "$ref": "#/definitions/Deploy" }, "distributions": { "allOf": [ { "$ref": "#/definitions/DistributionMap" }, { "additionalProperties": { "$ref": "#/definitions/Distribution" }, "type": ["object", "null"] } ] }, "download": { "$ref": "#/definitions/Download" }, "environment": { "$ref": "#/definitions/Environment" }, "extensions": { "allOf": [ { "$ref": "#/definitions/ExtensionMap" }, { "additionalProperties": { "$ref": "#/definitions/Extension" }, "type": ["object", "null"] } ] }, "files": { "$ref": "#/definitions/Files" }, "hooks": { "$ref": "#/definitions/Hooks" }, "packagers": { "$ref": "#/definitions/Packagers" }, "platform": { "$ref": "#/definitions/Platform" }, "project": { "$ref": "#/definitions/Project" }, "release": { "$ref": "#/definitions/Release" }, "signing": { "$ref": "#/definitions/Signing" }, "upload": { "$ref": "#/definitions/Upload" } }, "description": "JReleaser 1.7.0", "additionalProperties": false }, "Java-1": { "type": "object", "properties": { "mainClass": { "type": "string" }, "mainModule": { "type": "string" }, "options": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false }, "Java-2": { "type": "object", "properties": { "artifactId": { "type": "string" }, "enabled": { "type": "boolean" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "groupId": { "type": "string" }, "mainClass": { "type": "string" }, "mainModule": { "type": "string" }, "multiProject": { "type": "boolean" }, "version": { "type": "string" } }, "additionalProperties": false }, "JavaArchive": { "type": "object", "properties": { "libDirectoryName": { "type": "string" }, "mainJarName": { "type": "string" }, "path": { "type": "string" } }, "additionalProperties": false }, "JavaArchiveAssembler": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "archiveName": { "type": "string" }, "artifacts": { "type": "array", "items": { "$ref": "#/definitions/Artifact" } }, "executable": { "$ref": "#/definitions/Executable" }, "exported": { "type": "boolean" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "fileSets": { "type": "array", "items": { "$ref": "#/definitions/FileSet" } }, "files": { "type": "array", "items": { "$ref": "#/definitions/Glob" } }, "formats": { "type": "array", "items": { "$ref": "#/definitions/Format-1" } }, "jars": { "type": "array", "items": { "$ref": "#/definitions/Glob" } }, "java": { "$ref": "#/definitions/Java-1" }, "mainJar": { "$ref": "#/definitions/Artifact" }, "options": { "$ref": "#/definitions/ArchiveOptions" }, "platform": { "$ref": "#/definitions/Platform" }, "skipTemplates": { "type": "array", "items": { "type": "string" } }, "stereotype": { "$ref": "#/definitions/Stereotype" }, "templateDirectory": { "type": "string" } }, "additionalProperties": false }, "JavaArchiveAssemblerMap": { "type": "object", "additionalProperties": { "$ref": "#/definitions/JavaArchiveAssembler" }, "patternProperties": { "^[a-zA-Z][a-zA-Z0-9-]*[a-zA-Z0-9]?$": { "$ref": "#/definitions/JavaArchiveAssembler" } } }, "JbangPackager": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "alias": { "type": "string" }, "catalog": { "$ref": "#/definitions/JbangRepository" }, "commitAuthor": { "$ref": "#/definitions/CommitAuthor" }, "continueOnError": { "type": "boolean" }, "downloadUrl": { "type": "string" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "skipTemplates": { "type": "array", "items": { "type": "string" } }, "templateDirectory": { "type": "string" } }, "additionalProperties": false }, "JbangRepository": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "branch": { "type": "string" }, "branchPush": { "type": "string" }, "commitMessage": { "type": "string" }, "name": { "type": "string" }, "owner": { "type": "string" }, "tagName": { "type": "string" }, "token": { "type": "string" }, "username": { "type": "string" } }, "additionalProperties": false }, "Jdeps": { "type": "object", "properties": { "enabled": { "type": "boolean" }, "ignoreMissingDeps": { "type": "boolean" }, "multiRelease": { "type": "string" }, "targets": { "type": "array", "items": { "type": "string" } }, "useWildcardInPath": { "type": "boolean" } }, "additionalProperties": false }, "JibPackager": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "baseImage": { "type": "string" }, "commitAuthor": { "$ref": "#/definitions/CommitAuthor" }, "continueOnError": { "type": "boolean" }, "creationTime": { "type": "string" }, "downloadUrl": { "type": "string" }, "environment": { "allOf": [ { "$ref": "#/definitions/StringProperties" }, { "additionalProperties": { "type": "string" }, "type": ["object", "null"] } ] }, "exposedPorts": { "type": "array", "items": { "type": "string" } }, "extraProperties": { "$ref": "#/definitions/Properties" }, "format": { "$ref": "#/definitions/Format-4" }, "imageNames": { "type": "array", "items": { "type": "string" } }, "labels": { "allOf": [ { "$ref": "#/definitions/StringProperties" }, { "additionalProperties": { "type": "string" }, "type": ["object", "null"] } ] }, "registries": { "type": "array", "items": { "$ref": "#/definitions/Registry-2" } }, "repository": { "$ref": "#/definitions/JibRepository" }, "skipTemplates": { "type": "array", "items": { "type": "string" } }, "specs": { "allOf": [ { "$ref": "#/definitions/JibSpecMap" }, { "additionalProperties": { "$ref": "#/definitions/JibSpec" }, "type": ["object", "null"] } ] }, "templateDirectory": { "type": "string" }, "user": { "type": "string" }, "version": { "type": "string" }, "volumes": { "type": "array", "items": { "type": "string" } }, "workingDirectory": { "type": "string" } }, "additionalProperties": false }, "JibRepository": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "branch": { "type": "string" }, "branchPush": { "type": "string" }, "commitMessage": { "type": "string" }, "name": { "type": "string" }, "owner": { "type": "string" }, "tagName": { "type": "string" }, "token": { "type": "string" }, "username": { "type": "string" }, "versionedSubfolders": { "type": "boolean" } }, "additionalProperties": false }, "JibSpec": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "artifact": { "$ref": "#/definitions/Artifact" }, "baseImage": { "type": "string" }, "creationTime": { "type": "string" }, "environment": { "allOf": [ { "$ref": "#/definitions/StringProperties" }, { "additionalProperties": { "type": "string" }, "type": ["object", "null"] } ] }, "exposedPorts": { "type": "array", "items": { "type": "string" } }, "extraProperties": { "$ref": "#/definitions/Properties" }, "format": { "$ref": "#/definitions/Format-4" }, "imageNames": { "type": "array", "items": { "type": "string" } }, "labels": { "allOf": [ { "$ref": "#/definitions/StringProperties" }, { "additionalProperties": { "type": "string" }, "type": ["object", "null"] } ] }, "matchers": { "$ref": "#/definitions/Properties" }, "name": { "type": "string" }, "registries": { "type": "array", "items": { "$ref": "#/definitions/Registry-2" } }, "skipTemplates": { "type": "array", "items": { "type": "string" } }, "templateDirectory": { "type": "string" }, "user": { "type": "string" }, "volumes": { "type": "array", "items": { "type": "string" } }, "workingDirectory": { "type": "string" } }, "additionalProperties": false }, "JibSpecMap": { "type": "object", "additionalProperties": { "$ref": "#/definitions/JibSpec" }, "patternProperties": { "^[a-zA-Z][a-zA-Z0-9-]*[a-zA-Z0-9]?$": { "$ref": "#/definitions/JibSpec" } } }, "JlinkAssembler": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "additionalModuleNames": { "type": "array", "items": { "type": "string" } }, "archiveFormat": { "$ref": "#/definitions/Format-1" }, "args": { "type": "array", "items": { "type": "string" } }, "artifacts": { "type": "array", "items": { "$ref": "#/definitions/Artifact" } }, "copyJars": { "type": "boolean" }, "executable": { "type": "string" }, "exported": { "type": "boolean" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "fileSets": { "type": "array", "items": { "$ref": "#/definitions/FileSet" } }, "files": { "type": "array", "items": { "$ref": "#/definitions/Glob" } }, "imageName": { "type": "string" }, "imageNameTransform": { "type": "string" }, "jars": { "type": "array", "items": { "$ref": "#/definitions/Glob" } }, "java": { "$ref": "#/definitions/Java-2" }, "javaArchive": { "$ref": "#/definitions/JavaArchive" }, "jdeps": { "$ref": "#/definitions/Jdeps" }, "jdk": { "$ref": "#/definitions/Artifact" }, "mainJar": { "$ref": "#/definitions/Artifact" }, "moduleNames": { "type": "array", "items": { "type": "string" } }, "options": { "$ref": "#/definitions/ArchiveOptions" }, "platform": { "$ref": "#/definitions/Platform" }, "skipTemplates": { "type": "array", "items": { "type": "string" } }, "stereotype": { "$ref": "#/definitions/Stereotype" }, "targetJdks": { "type": "array", "items": { "$ref": "#/definitions/Artifact" } }, "templateDirectory": { "type": "string" } }, "additionalProperties": false }, "JlinkAssemblerMap": { "type": "object", "additionalProperties": { "$ref": "#/definitions/JlinkAssembler" }, "patternProperties": { "^[a-zA-Z][a-zA-Z0-9-]*[a-zA-Z0-9]?$": { "$ref": "#/definitions/JlinkAssembler" } } }, "JpackageAssembler": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "applicationPackage": { "$ref": "#/definitions/ApplicationPackage" }, "artifacts": { "type": "array", "items": { "$ref": "#/definitions/Artifact" } }, "attachPlatform": { "type": "boolean" }, "executable": { "type": "string" }, "exported": { "type": "boolean" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "fileSets": { "type": "array", "items": { "$ref": "#/definitions/FileSet" } }, "files": { "type": "array", "items": { "$ref": "#/definitions/Glob" } }, "jars": { "type": "array", "items": { "$ref": "#/definitions/Glob" } }, "java": { "$ref": "#/definitions/Java-2" }, "jlink": { "type": "string" }, "launcher": { "$ref": "#/definitions/Launcher" }, "linux": { "$ref": "#/definitions/Linux-1" }, "mainJar": { "$ref": "#/definitions/Artifact" }, "osx": { "$ref": "#/definitions/Osx-1" }, "platform": { "$ref": "#/definitions/Platform" }, "runtimeImages": { "type": "array", "items": { "$ref": "#/definitions/Artifact" } }, "skipTemplates": { "type": "array", "items": { "type": "string" } }, "stereotype": { "$ref": "#/definitions/Stereotype" }, "templateDirectory": { "type": "string" }, "verbose": { "type": "boolean" }, "windows": { "$ref": "#/definitions/Windows-1" } }, "additionalProperties": false }, "JpackageAssemblerMap": { "type": "object", "additionalProperties": { "$ref": "#/definitions/JpackageAssembler" }, "patternProperties": { "^[a-zA-Z][a-zA-Z0-9-]*[a-zA-Z0-9]?$": { "$ref": "#/definitions/JpackageAssembler" } } }, "Label": { "type": "object", "properties": { "color": { "type": "string" }, "description": { "type": "string" }, "name": { "type": "string" } }, "additionalProperties": false }, "Labeler": { "type": "object", "properties": { "body": { "type": "string" }, "label": { "type": "string" }, "order": { "type": "integer" }, "title": { "type": "string" } }, "additionalProperties": false }, "Launcher": { "type": "object", "properties": { "arguments": { "type": "array", "items": { "type": "string" } }, "javaOptions": { "type": "array", "items": { "type": "string" } }, "launchers": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false }, "LinkedinAnnouncer": { "type": "object", "properties": { "accessToken": { "type": "string" }, "active": { "$ref": "#/definitions/Active" }, "connectTimeout": { "type": "integer" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "message": { "type": "string" }, "messageTemplate": { "type": "string" }, "owner": { "type": "string" }, "readTimeout": { "type": "integer" }, "subject": { "type": "string" } }, "additionalProperties": false }, "Links": { "type": "object", "properties": { "bugTracker": { "type": "string" }, "contact": { "type": "string" }, "contribute": { "type": "string" }, "documentation": { "type": "string" }, "donation": { "type": "string" }, "faq": { "type": "string" }, "help": { "type": "string" }, "homepage": { "type": "string" }, "license": { "type": "string" }, "translate": { "type": "string" }, "vcsBrowser": { "type": "string" } }, "additionalProperties": false }, "Linux-1": { "type": "object", "properties": { "appCategory": { "type": "string" }, "appName": { "type": "string" }, "appRelease": { "type": "string" }, "icon": { "type": "string" }, "installDir": { "type": "string" }, "jdk": { "$ref": "#/definitions/Artifact" }, "license": { "type": "string" }, "maintainer": { "type": "string" }, "menuGroup": { "type": "string" }, "packageDeps": { "type": "array", "items": { "type": "string" } }, "packageName": { "type": "string" }, "platform": { "type": "string" }, "resourceDir": { "type": "string" }, "shortcut": { "type": "boolean" }, "types": { "type": "array", "items": { "type": "string" } }, "validTypes": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false }, "Linux-2": { "type": "object", "properties": { "args": { "type": "array", "items": { "type": "string" } }, "platform": { "type": "string" } }, "additionalProperties": false }, "MacportsPackager": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "categories": { "type": "array", "items": { "type": "string" } }, "commitAuthor": { "$ref": "#/definitions/CommitAuthor" }, "continueOnError": { "type": "boolean" }, "downloadUrl": { "type": "string" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "maintainers": { "type": "array", "items": { "type": "string" } }, "packageName": { "type": "string" }, "repository": { "$ref": "#/definitions/MacportsRepository" }, "revision": { "type": "integer" }, "skipTemplates": { "type": "array", "items": { "type": "string" } }, "templateDirectory": { "type": "string" } }, "additionalProperties": false }, "MacportsRepository": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "branch": { "type": "string" }, "branchPush": { "type": "string" }, "commitMessage": { "type": "string" }, "name": { "type": "string" }, "owner": { "type": "string" }, "tagName": { "type": "string" }, "token": { "type": "string" }, "username": { "type": "string" } }, "additionalProperties": false }, "MastodonAnnouncer": { "type": "object", "properties": { "accessToken": { "type": "string" }, "active": { "$ref": "#/definitions/Active" }, "connectTimeout": { "type": "integer" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "host": { "type": "string" }, "readTimeout": { "type": "integer" }, "status": { "type": "string" }, "statusTemplate": { "type": "string" }, "statuses": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false }, "MattermostAnnouncer": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "connectTimeout": { "type": "integer" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "message": { "type": "string" }, "messageTemplate": { "type": "string" }, "readTimeout": { "type": "integer" }, "structuredMessage": { "type": "boolean" }, "webhook": { "type": "string" } }, "additionalProperties": false }, "Maven": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "artifactory": { "allOf": [ { "$ref": "#/definitions/ArtifactoryMavenDeployerMap" }, { "additionalProperties": { "$ref": "#/definitions/ArtifactoryMavenDeployer" }, "type": ["object", "null"] } ] }, "azure": { "allOf": [ { "$ref": "#/definitions/AzureMavenDeployerMap" }, { "additionalProperties": { "$ref": "#/definitions/AzureMavenDeployer" }, "type": ["object", "null"] } ] }, "gitea": { "allOf": [ { "$ref": "#/definitions/GiteaMavenDeployerMap" }, { "additionalProperties": { "$ref": "#/definitions/GiteaMavenDeployer" }, "type": ["object", "null"] } ] }, "github": { "allOf": [ { "$ref": "#/definitions/GithubMavenDeployerMap" }, { "additionalProperties": { "$ref": "#/definitions/GithubMavenDeployer" }, "type": ["object", "null"] } ] }, "gitlab": { "allOf": [ { "$ref": "#/definitions/GitlabMavenDeployerMap" }, { "additionalProperties": { "$ref": "#/definitions/GitlabMavenDeployer" }, "type": ["object", "null"] } ] }, "nexus2": { "allOf": [ { "$ref": "#/definitions/Nexus2MavenDeployerMap" }, { "additionalProperties": { "$ref": "#/definitions/Nexus2MavenDeployer" }, "type": ["object", "null"] } ] }, "pomchecker": { "$ref": "#/definitions/Pomchecker" } }, "additionalProperties": false }, "Method": { "type": "string", "enum": ["PUT", "POST"] }, "Milestone": { "type": "object", "properties": { "close": { "type": "boolean" }, "name": { "type": "string" } }, "additionalProperties": false }, "MimeType": { "type": "string", "enum": ["TEXT", "HTML"] }, "Mode-1": { "type": "string", "enum": ["INTERACTIVE", "SILENT", "SILENT_WITH_PROGRESS"] }, "Mode-2": { "type": "string", "enum": ["MEMORY", "FILE", "COMMAND", "COSIGN"] }, "NativeImageAssembler": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "archiveFormat": { "$ref": "#/definitions/Format-1" }, "args": { "type": "array", "items": { "type": "string" } }, "artifacts": { "type": "array", "items": { "$ref": "#/definitions/Artifact" } }, "components": { "type": "array", "items": { "type": "string" } }, "executable": { "type": "string" }, "exported": { "type": "boolean" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "fileSets": { "type": "array", "items": { "$ref": "#/definitions/FileSet" } }, "files": { "type": "array", "items": { "$ref": "#/definitions/Glob" } }, "graal": { "$ref": "#/definitions/Artifact" }, "graalJdks": { "type": "array", "items": { "$ref": "#/definitions/Artifact" } }, "imageName": { "type": "string" }, "imageNameTransform": { "type": "string" }, "jars": { "type": "array", "items": { "$ref": "#/definitions/Glob" } }, "java": { "$ref": "#/definitions/Java-2" }, "linux": { "$ref": "#/definitions/Linux-2" }, "mainJar": { "$ref": "#/definitions/Artifact" }, "options": { "$ref": "#/definitions/ArchiveOptions" }, "osx": { "$ref": "#/definitions/Osx-2" }, "platform": { "$ref": "#/definitions/Platform" }, "skipTemplates": { "type": "array", "items": { "type": "string" } }, "stereotype": { "$ref": "#/definitions/Stereotype" }, "templateDirectory": { "type": "string" }, "upx": { "$ref": "#/definitions/Upx" }, "windows": { "$ref": "#/definitions/Windows-2" } }, "additionalProperties": false }, "NativeImageAssemblerMap": { "type": "object", "additionalProperties": { "$ref": "#/definitions/NativeImageAssembler" }, "patternProperties": { "^[a-zA-Z][a-zA-Z0-9-]*[a-zA-Z0-9]?$": { "$ref": "#/definitions/NativeImageAssembler" } } }, "Nexus2MavenDeployer": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "applyMavenCentralRules": { "type": "boolean" }, "artifactOverrides": { "type": "array", "items": { "$ref": "#/definitions/ArtifactOverride" } }, "authorization": { "$ref": "#/definitions/Authorization" }, "checksums": { "type": "boolean" }, "closeRepository": { "type": "boolean" }, "connectTimeout": { "type": "integer" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "javadocJar": { "type": "boolean" }, "password": { "type": "string" }, "readTimeout": { "type": "integer" }, "releaseRepository": { "type": "boolean" }, "sign": { "type": "boolean" }, "snapshotUrl": { "type": "string" }, "sourceJar": { "type": "boolean" }, "stagingRepositories": { "type": "array", "items": { "type": "string" } }, "transitionDelay": { "type": "integer" }, "transitionMaxRetries": { "type": "integer" }, "url": { "type": "string" }, "username": { "type": "string" }, "verifyPom": { "type": "boolean" } }, "additionalProperties": false }, "Nexus2MavenDeployerMap": { "type": "object", "additionalProperties": { "$ref": "#/definitions/Nexus2MavenDeployer" }, "patternProperties": { "^[a-zA-Z][a-zA-Z0-9-]*[a-zA-Z0-9]?$": { "$ref": "#/definitions/Nexus2MavenDeployer" } } }, "OpenCollectiveAnnouncer": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "connectTimeout": { "type": "integer" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "host": { "type": "string" }, "message": { "type": "string" }, "messageTemplate": { "type": "string" }, "readTimeout": { "type": "integer" }, "slug": { "type": "string" }, "title": { "type": "string" }, "token": { "type": "string" } }, "additionalProperties": false }, "Osx-1": { "type": "object", "properties": { "appName": { "type": "string" }, "icon": { "type": "string" }, "installDir": { "type": "string" }, "jdk": { "$ref": "#/definitions/Artifact" }, "packageIdentifier": { "type": "string" }, "packageName": { "type": "string" }, "packageSigningPrefix": { "type": "string" }, "platform": { "type": "string" }, "resourceDir": { "type": "string" }, "sign": { "type": "boolean" }, "signingKeyUsername": { "type": "string" }, "signingKeychain": { "type": "string" }, "types": { "type": "array", "items": { "type": "string" } }, "validTypes": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false }, "Osx-2": { "type": "object", "properties": { "args": { "type": "array", "items": { "type": "string" } }, "platform": { "type": "string" } }, "additionalProperties": false }, "Pack": { "type": "object", "properties": { "enabled": { "type": "boolean" }, "name": { "type": "string" } }, "additionalProperties": false }, "Package": { "type": "object", "properties": { "identifier": { "type": "string" }, "name": { "type": "string" }, "url": { "type": "string" }, "version": { "type": "string" } }, "additionalProperties": false }, "Packagers": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "appImage": { "$ref": "#/definitions/AppImagePackager" }, "asdf": { "$ref": "#/definitions/AsdfPackager" }, "brew": { "$ref": "#/definitions/BrewPackager" }, "chocolatey": { "$ref": "#/definitions/ChocolateyPackager" }, "docker": { "$ref": "#/definitions/DockerPackager" }, "flatpak": { "$ref": "#/definitions/FlatpakPackager" }, "gofish": { "$ref": "#/definitions/GofishPackager" }, "jbang": { "$ref": "#/definitions/JbangPackager" }, "jib": { "$ref": "#/definitions/JibPackager" }, "macports": { "$ref": "#/definitions/MacportsPackager" }, "scoop": { "$ref": "#/definitions/ScoopPackager" }, "sdkman": { "$ref": "#/definitions/SdkmanPackager" }, "snap": { "$ref": "#/definitions/SnapPackager" }, "spec": { "$ref": "#/definitions/SpecPackager" }, "winget": { "$ref": "#/definitions/WingetPackager" } }, "additionalProperties": false }, "Platform": { "type": "object", "properties": { "replacements": { "allOf": [ { "$ref": "#/definitions/StringProperties" }, { "additionalProperties": { "type": "string" }, "type": ["object", "null"] } ] } }, "additionalProperties": false }, "Plug": { "type": "object", "properties": { "attributes": { "allOf": [ { "$ref": "#/definitions/StringProperties" }, { "additionalProperties": { "type": "string" }, "type": ["object", "null"] } ] }, "name": { "type": "string" }, "reads": { "type": "array", "items": { "type": "string" } }, "writes": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false }, "Pomchecker": { "type": "object", "properties": { "failOnError": { "type": "boolean" }, "failOnWarning": { "type": "boolean" }, "version": { "type": "string" } }, "additionalProperties": false }, "Prerelease": { "type": "object", "properties": { "enabled": { "type": "boolean" }, "pattern": { "type": "string" } }, "additionalProperties": false }, "Project": { "type": "object", "properties": { "authors": { "type": "array", "items": { "type": "string" } }, "copyright": { "type": "string" }, "description": { "type": "string" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "icons": { "type": "array", "items": { "$ref": "#/definitions/Icon" } }, "inceptionYear": { "type": "string" }, "java": { "$ref": "#/definitions/Java-2" }, "license": { "type": "string" }, "links": { "$ref": "#/definitions/Links" }, "longDescription": { "type": "string" }, "maintainers": { "type": "array", "items": { "type": "string" } }, "name": { "type": "string" }, "screenshots": { "type": "array", "items": { "$ref": "#/definitions/Screenshot" } }, "snapshot": { "$ref": "#/definitions/Snapshot" }, "stereotype": { "$ref": "#/definitions/Stereotype" }, "tags": { "type": "array", "items": { "type": "string" } }, "vendor": { "type": "string" }, "version": { "type": "string" }, "versionPattern": { "$ref": "#/definitions/VersionPattern" } }, "additionalProperties": false }, "Properties": { "type": "object", "additionalProperties": { "type": "string" } }, "Provider": { "type": "object", "properties": { "properties": { "$ref": "#/definitions/Properties" }, "type": { "type": "string" } }, "additionalProperties": false }, "Publisher": { "type": "object", "properties": { "name": { "type": "string" }, "supportUrl": { "type": "string" }, "url": { "type": "string" } }, "additionalProperties": false }, "Registry-1": { "type": "object", "properties": { "externalLogin": { "type": "boolean" }, "password": { "type": "string" }, "repositoryName": { "type": "string" }, "server": { "type": "string" }, "serverName": { "type": "string" }, "username": { "type": "string" } }, "additionalProperties": false }, "Registry-2": { "type": "object", "properties": { "fromPassword": { "type": "string" }, "fromUsername": { "type": "string" }, "name": { "type": "string" }, "password": { "type": "string" }, "server": { "type": "string" }, "toPassword": { "type": "string" }, "toUsername": { "type": "string" }, "username": { "type": "string" } }, "additionalProperties": false }, "Release": { "type": "object", "properties": { "codeberg": { "$ref": "#/definitions/CodebergReleaser" }, "generic": { "$ref": "#/definitions/GenericGitReleaser" }, "gitea": { "$ref": "#/definitions/GiteaReleaser" }, "github": { "$ref": "#/definitions/GithubReleaser" }, "gitlab": { "$ref": "#/definitions/GitlabReleaser" } }, "additionalProperties": false }, "ReleaseNotes": { "type": "object", "properties": { "configurationFile": { "type": "string" }, "enabled": { "type": "boolean" } }, "additionalProperties": false }, "Replacer": { "type": "object", "properties": { "replace": { "type": "string" }, "search": { "type": "string" } }, "additionalProperties": false }, "Repository": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "branch": { "type": "string" }, "branchPush": { "type": "string" }, "commitMessage": { "type": "string" }, "name": { "type": "string" }, "owner": { "type": "string" }, "tagName": { "type": "string" }, "token": { "type": "string" }, "username": { "type": "string" } }, "additionalProperties": false }, "Runtime": { "type": "string", "enum": ["FREEDESKTOP", "GNOME", "KDE", "ELEMENTARY"] }, "S3Uploader": { "type": "object", "properties": { "accessKeyId": { "type": "string" }, "active": { "$ref": "#/definitions/Active" }, "artifacts": { "type": "boolean" }, "bucket": { "type": "string" }, "catalogs": { "type": "boolean" }, "checksums": { "type": "boolean" }, "connectTimeout": { "type": "integer" }, "downloadUrl": { "type": "string" }, "endpoint": { "type": "string" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "files": { "type": "boolean" }, "headers": { "allOf": [ { "$ref": "#/definitions/StringProperties" }, { "additionalProperties": { "type": "string" }, "type": ["object", "null"] } ] }, "path": { "type": "string" }, "readTimeout": { "type": "integer" }, "region": { "type": "string" }, "secretKey": { "type": "string" }, "sessionToken": { "type": "string" }, "signatures": { "type": "boolean" } }, "additionalProperties": false }, "S3UploaderMap": { "type": "object", "additionalProperties": { "$ref": "#/definitions/S3Uploader" }, "patternProperties": { "^[a-zA-Z][a-zA-Z0-9-]*[a-zA-Z0-9]?$": { "$ref": "#/definitions/S3Uploader" } } }, "Sbom": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "cyclonedx": { "$ref": "#/definitions/CyclonedxSbomCataloger" }, "syft": { "$ref": "#/definitions/SyftSbomCataloger" } }, "additionalProperties": false }, "ScoopPackager": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "autoupdateUrl": { "type": "string" }, "bucket": { "$ref": "#/definitions/ScoopRepository" }, "checkverUrl": { "type": "string" }, "commitAuthor": { "$ref": "#/definitions/CommitAuthor" }, "continueOnError": { "type": "boolean" }, "downloadUrl": { "type": "string" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "packageName": { "type": "string" }, "skipTemplates": { "type": "array", "items": { "type": "string" } }, "templateDirectory": { "type": "string" } }, "additionalProperties": false }, "ScoopRepository": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "branch": { "type": "string" }, "branchPush": { "type": "string" }, "commitMessage": { "type": "string" }, "name": { "type": "string" }, "owner": { "type": "string" }, "tagName": { "type": "string" }, "token": { "type": "string" }, "username": { "type": "string" } }, "additionalProperties": false }, "Scope": { "type": "string", "enum": ["USER", "MACHINE"] }, "ScpDownloader": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "assets": { "type": "array", "items": { "$ref": "#/definitions/Asset" } }, "connectTimeout": { "type": "integer" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "fingerprint": { "type": "string" }, "host": { "type": "string" }, "knownHostsFile": { "type": "string" }, "passphrase": { "type": "string" }, "password": { "type": "string" }, "port": { "type": "integer" }, "privateKey": { "type": "string" }, "publicKey": { "type": "string" }, "readTimeout": { "type": "integer" }, "username": { "type": "string" } }, "additionalProperties": false }, "ScpDownloaderMap": { "type": "object", "additionalProperties": { "$ref": "#/definitions/ScpDownloader" }, "patternProperties": { "^[a-zA-Z][a-zA-Z0-9-]*[a-zA-Z0-9]?$": { "$ref": "#/definitions/ScpDownloader" } } }, "ScpUploader": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "artifacts": { "type": "boolean" }, "catalogs": { "type": "boolean" }, "checksums": { "type": "boolean" }, "connectTimeout": { "type": "integer" }, "downloadUrl": { "type": "string" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "files": { "type": "boolean" }, "fingerprint": { "type": "string" }, "host": { "type": "string" }, "knownHostsFile": { "type": "string" }, "passphrase": { "type": "string" }, "password": { "type": "string" }, "path": { "type": "string" }, "port": { "type": "integer" }, "privateKey": { "type": "string" }, "publicKey": { "type": "string" }, "readTimeout": { "type": "integer" }, "signatures": { "type": "boolean" }, "username": { "type": "string" } }, "additionalProperties": false }, "ScpUploaderMap": { "type": "object", "additionalProperties": { "$ref": "#/definitions/ScpUploader" }, "patternProperties": { "^[a-zA-Z][a-zA-Z0-9-]*[a-zA-Z0-9]?$": { "$ref": "#/definitions/ScpUploader" } } }, "Screenshot": { "type": "object", "properties": { "caption": { "type": "string" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "height": { "type": "integer" }, "primary": { "type": "boolean" }, "type": { "$ref": "#/definitions/Type-1" }, "url": { "type": "string" }, "width": { "type": "integer" } }, "additionalProperties": false }, "ScriptHook": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "condition": { "type": "string" }, "continueOnError": { "type": "boolean" }, "environment": { "allOf": [ { "$ref": "#/definitions/StringProperties" }, { "additionalProperties": { "type": "string" }, "type": ["object", "null"] } ] }, "filter": { "$ref": "#/definitions/Filter" }, "platforms": { "type": "array", "items": { "type": "string" } }, "run": { "type": "string" }, "shell": { "$ref": "#/definitions/Shell" }, "verbose": { "type": "boolean" } }, "additionalProperties": false }, "ScriptHooks": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "before": { "type": "array", "items": { "$ref": "#/definitions/ScriptHook" } }, "environment": { "allOf": [ { "$ref": "#/definitions/StringProperties" }, { "additionalProperties": { "type": "string" }, "type": ["object", "null"] } ] }, "failure": { "type": "array", "items": { "$ref": "#/definitions/ScriptHook" } }, "success": { "type": "array", "items": { "$ref": "#/definitions/ScriptHook" } } }, "additionalProperties": false }, "SdkmanAnnouncer": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "candidate": { "type": "string" }, "command": { "$ref": "#/definitions/Command-1" }, "connectTimeout": { "type": "integer" }, "consumerKey": { "type": "string" }, "consumerToken": { "type": "string" }, "downloadUrl": { "type": "string" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "readTimeout": { "type": "integer" }, "releaseNotesUrl": { "type": "string" } }, "additionalProperties": false }, "SdkmanPackager": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "candidate": { "type": "string" }, "command": { "$ref": "#/definitions/Command-1" }, "connectTimeout": { "type": "integer" }, "consumerKey": { "type": "string" }, "consumerToken": { "type": "string" }, "continueOnError": { "type": "boolean" }, "downloadUrl": { "type": "string" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "readTimeout": { "type": "integer" }, "releaseNotesUrl": { "type": "string" } }, "additionalProperties": false }, "SftpDownloader": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "assets": { "type": "array", "items": { "$ref": "#/definitions/Asset" } }, "connectTimeout": { "type": "integer" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "fingerprint": { "type": "string" }, "host": { "type": "string" }, "knownHostsFile": { "type": "string" }, "passphrase": { "type": "string" }, "password": { "type": "string" }, "port": { "type": "integer" }, "privateKey": { "type": "string" }, "publicKey": { "type": "string" }, "readTimeout": { "type": "integer" }, "username": { "type": "string" } }, "additionalProperties": false }, "SftpDownloaderMap": { "type": "object", "additionalProperties": { "$ref": "#/definitions/SftpDownloader" }, "patternProperties": { "^[a-zA-Z][a-zA-Z0-9-]*[a-zA-Z0-9]?$": { "$ref": "#/definitions/SftpDownloader" } } }, "SftpUploader": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "artifacts": { "type": "boolean" }, "catalogs": { "type": "boolean" }, "checksums": { "type": "boolean" }, "connectTimeout": { "type": "integer" }, "downloadUrl": { "type": "string" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "files": { "type": "boolean" }, "fingerprint": { "type": "string" }, "host": { "type": "string" }, "knownHostsFile": { "type": "string" }, "passphrase": { "type": "string" }, "password": { "type": "string" }, "path": { "type": "string" }, "port": { "type": "integer" }, "privateKey": { "type": "string" }, "publicKey": { "type": "string" }, "readTimeout": { "type": "integer" }, "signatures": { "type": "boolean" }, "username": { "type": "string" } }, "additionalProperties": false }, "SftpUploaderMap": { "type": "object", "additionalProperties": { "$ref": "#/definitions/SftpUploader" }, "patternProperties": { "^[a-zA-Z][a-zA-Z0-9-]*[a-zA-Z0-9]?$": { "$ref": "#/definitions/SftpUploader" } } }, "Shell": { "type": "string", "enum": ["BASH", "SH", "CMD", "PWSH", "POWERSHELL"] }, "Signing": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "armored": { "type": "boolean" }, "artifacts": { "type": "boolean" }, "catalogs": { "type": "boolean" }, "checksums": { "type": "boolean" }, "command": { "$ref": "#/definitions/Command-2" }, "cosign": { "$ref": "#/definitions/Cosign" }, "files": { "type": "boolean" }, "mode": { "$ref": "#/definitions/Mode-2" }, "passphrase": { "type": "string" }, "publicKey": { "type": "string" }, "secretKey": { "type": "string" }, "verify": { "type": "boolean" } }, "additionalProperties": false }, "SlackAnnouncer": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "channel": { "type": "string" }, "connectTimeout": { "type": "integer" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "message": { "type": "string" }, "messageTemplate": { "type": "string" }, "readTimeout": { "type": "integer" }, "token": { "type": "string" }, "webhook": { "type": "string" } }, "additionalProperties": false }, "Slot": { "type": "object", "properties": { "attributes": { "allOf": [ { "$ref": "#/definitions/StringProperties" }, { "additionalProperties": { "type": "string" }, "type": ["object", "null"] } ] }, "name": { "type": "string" }, "reads": { "type": "array", "items": { "type": "string" } }, "writes": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false }, "SlsaCataloger": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "artifacts": { "type": "boolean" }, "attestationName": { "type": "string" }, "deployables": { "type": "boolean" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "files": { "type": "boolean" } }, "additionalProperties": false }, "SmtpAnnouncer": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "auth": { "type": "boolean" }, "bcc": { "type": "string" }, "cc": { "type": "string" }, "connectTimeout": { "type": "integer" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "from": { "type": "string" }, "host": { "type": "string" }, "message": { "type": "string" }, "messageTemplate": { "type": "string" }, "mimeType": { "$ref": "#/definitions/MimeType" }, "password": { "type": "string" }, "port": { "type": "integer" }, "properties": { "allOf": [ { "$ref": "#/definitions/StringProperties" }, { "additionalProperties": { "type": "string" }, "type": ["object", "null"] } ] }, "readTimeout": { "type": "integer" }, "subject": { "type": "string" }, "to": { "type": "string" }, "transport": { "$ref": "#/definitions/Transport" }, "username": { "type": "string" } }, "additionalProperties": false }, "SnapPackager": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "architectures": { "type": "array", "items": { "$ref": "#/definitions/Architecture" } }, "base": { "type": "string" }, "commitAuthor": { "$ref": "#/definitions/CommitAuthor" }, "confinement": { "type": "string" }, "continueOnError": { "type": "boolean" }, "downloadUrl": { "type": "string" }, "exportedLogin": { "type": "string" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "grade": { "type": "string" }, "localPlugs": { "type": "array", "items": { "type": "string" } }, "localSlots": { "type": "array", "items": { "type": "string" } }, "packageName": { "type": "string" }, "plugs": { "type": "array", "items": { "$ref": "#/definitions/Plug" } }, "remoteBuild": { "type": "boolean" }, "skipTemplates": { "type": "array", "items": { "type": "string" } }, "slots": { "type": "array", "items": { "$ref": "#/definitions/Slot" } }, "snap": { "$ref": "#/definitions/SnapRepository" }, "templateDirectory": { "type": "string" } }, "additionalProperties": false }, "SnapRepository": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "branch": { "type": "string" }, "branchPush": { "type": "string" }, "commitMessage": { "type": "string" }, "name": { "type": "string" }, "owner": { "type": "string" }, "tagName": { "type": "string" }, "token": { "type": "string" }, "username": { "type": "string" } }, "additionalProperties": false }, "Snapshot": { "type": "object", "properties": { "fullChangelog": { "type": "boolean" }, "label": { "type": "string" }, "pattern": { "type": "string" } }, "additionalProperties": false }, "Sort": { "type": "string", "enum": ["ASC", "DESC"] }, "SpecPackager": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "commitAuthor": { "$ref": "#/definitions/CommitAuthor" }, "continueOnError": { "type": "boolean" }, "downloadUrl": { "type": "string" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "packageName": { "type": "string" }, "release": { "type": "string" }, "repository": { "$ref": "#/definitions/SpecRepository" }, "requires": { "type": "array", "items": { "type": "string" } }, "skipTemplates": { "type": "array", "items": { "type": "string" } }, "templateDirectory": { "type": "string" } }, "additionalProperties": false }, "SpecRepository": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "branch": { "type": "string" }, "branchPush": { "type": "string" }, "commitMessage": { "type": "string" }, "name": { "type": "string" }, "owner": { "type": "string" }, "tagName": { "type": "string" }, "token": { "type": "string" }, "username": { "type": "string" } }, "additionalProperties": false }, "Stereotype": { "type": "string", "enum": ["NONE", "CLI", "DESKTOP", "WEB", "MOBILE"] }, "StringProperties": { "type": "object", "additionalProperties": { "type": "string" } }, "SyftSbomCataloger": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "distributions": { "type": "boolean" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "files": { "type": "boolean" }, "formats": { "type": "array", "items": { "$ref": "#/definitions/Format-3" } }, "pack": { "$ref": "#/definitions/Pack" }, "version": { "type": "string" } }, "additionalProperties": false }, "TarMode": { "type": "string", "enum": ["GNU", "POSIX", "ERROR", "TRUNCATE"] }, "TeamsAnnouncer": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "connectTimeout": { "type": "integer" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "messageTemplate": { "type": "string" }, "readTimeout": { "type": "integer" }, "webhook": { "type": "string" } }, "additionalProperties": false }, "TelegramAnnouncer": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "chatId": { "type": "string" }, "connectTimeout": { "type": "integer" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "message": { "type": "string" }, "messageTemplate": { "type": "string" }, "readTimeout": { "type": "integer" }, "token": { "type": "string" } }, "additionalProperties": false }, "Transport": { "type": "string", "enum": ["SMTP", "SMTPS"] }, "TwitterAnnouncer": { "type": "object", "properties": { "accessToken": { "type": "string" }, "accessTokenSecret": { "type": "string" }, "active": { "$ref": "#/definitions/Active" }, "connectTimeout": { "type": "integer" }, "consumerKey": { "type": "string" }, "consumerSecret": { "type": "string" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "readTimeout": { "type": "integer" }, "status": { "type": "string" }, "statusTemplate": { "type": "string" }, "statuses": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false }, "Type-1": { "type": "string", "enum": ["SOURCE", "THUMBNAIL"] }, "Type-2": { "type": "string", "enum": [ "MSIX", "MSI", "APPX", "EXE", "ZIP", "INNO", "NULLSOFT", "WIX", "BURN", "PWA" ] }, "Type-3": { "type": "string", "enum": [ "SEMVER", "CALVER", "CHRONVER", "JAVA_RUNTIME", "JAVA_MODULE", "CUSTOM" ] }, "Unpack": { "type": "object", "properties": { "enabled": { "type": "boolean" }, "skipRootEntry": { "type": "boolean" } }, "additionalProperties": false }, "Update": { "type": "object", "properties": { "enabled": { "type": "boolean" }, "sections": { "type": "array", "items": { "$ref": "#/definitions/UpdateSection" } } }, "additionalProperties": false }, "UpdateSection": { "type": "string", "enum": ["TITLE", "BODY", "ASSETS"] }, "UpgradeBehavior": { "type": "string", "enum": ["INSTALL", "UNINSTALL_PREVIOUS"] }, "Upload": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "artifactory": { "allOf": [ { "$ref": "#/definitions/ArtifactoryUploaderMap" }, { "additionalProperties": { "$ref": "#/definitions/ArtifactoryUploader" }, "type": ["object", "null"] } ] }, "ftp": { "allOf": [ { "$ref": "#/definitions/FtpUploaderMap" }, { "additionalProperties": { "$ref": "#/definitions/FtpUploader" }, "type": ["object", "null"] } ] }, "gitea": { "allOf": [ { "$ref": "#/definitions/GiteaUploaderMap" }, { "additionalProperties": { "$ref": "#/definitions/GiteaUploader" }, "type": ["object", "null"] } ] }, "gitlab": { "allOf": [ { "$ref": "#/definitions/GitlabUploaderMap" }, { "additionalProperties": { "$ref": "#/definitions/GitlabUploader" }, "type": ["object", "null"] } ] }, "http": { "allOf": [ { "$ref": "#/definitions/HttpUploaderMap" }, { "additionalProperties": { "$ref": "#/definitions/HttpUploader" }, "type": ["object", "null"] } ] }, "s3": { "allOf": [ { "$ref": "#/definitions/S3UploaderMap" }, { "additionalProperties": { "$ref": "#/definitions/S3Uploader" }, "type": ["object", "null"] } ] }, "scp": { "allOf": [ { "$ref": "#/definitions/ScpUploaderMap" }, { "additionalProperties": { "$ref": "#/definitions/ScpUploader" }, "type": ["object", "null"] } ] }, "sftp": { "allOf": [ { "$ref": "#/definitions/SftpUploaderMap" }, { "additionalProperties": { "$ref": "#/definitions/SftpUploader" }, "type": ["object", "null"] } ] } }, "additionalProperties": false }, "Upx": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "args": { "type": "array", "items": { "type": "string" } }, "version": { "type": "string" } }, "additionalProperties": false }, "VersionPattern": { "type": "object", "properties": { "format": { "type": "string" }, "type": { "$ref": "#/definitions/Type-3" } }, "additionalProperties": false }, "WebhookAnnouncer": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "connectTimeout": { "type": "integer" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "message": { "type": "string" }, "messageProperty": { "type": "string" }, "messageTemplate": { "type": "string" }, "readTimeout": { "type": "integer" }, "structuredMessage": { "type": "boolean" }, "webhook": { "type": "string" } }, "additionalProperties": false }, "WebhookAnnouncerMap": { "type": "object", "additionalProperties": { "$ref": "#/definitions/WebhookAnnouncer" }, "patternProperties": { "^[a-zA-Z][a-zA-Z0-9-]*[a-zA-Z0-9]?$": { "$ref": "#/definitions/WebhookAnnouncer" } } }, "WebhooksAnnouncer": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "connectTimeout": { "type": "integer" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "readTimeout": { "type": "integer" }, "webhooks": { "allOf": [ { "$ref": "#/definitions/WebhookAnnouncerMap" }, { "additionalProperties": { "$ref": "#/definitions/WebhookAnnouncer" }, "type": ["object", "null"] } ] } }, "additionalProperties": false }, "Windows-1": { "type": "object", "properties": { "appName": { "type": "string" }, "console": { "type": "boolean" }, "dirChooser": { "type": "boolean" }, "icon": { "type": "string" }, "installDir": { "type": "string" }, "jdk": { "$ref": "#/definitions/Artifact" }, "menu": { "type": "boolean" }, "menuGroup": { "type": "string" }, "perUserInstall": { "type": "boolean" }, "platform": { "type": "string" }, "resourceDir": { "type": "string" }, "shortcut": { "type": "boolean" }, "types": { "type": "array", "items": { "type": "string" } }, "upgradeUuid": { "type": "string" }, "validTypes": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false }, "Windows-2": { "type": "object", "properties": { "args": { "type": "array", "items": { "type": "string" } }, "platform": { "type": "string" } }, "additionalProperties": false }, "WingetPackager": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "author": { "type": "string" }, "commitAuthor": { "$ref": "#/definitions/CommitAuthor" }, "continueOnError": { "type": "boolean" }, "defaultLocale": { "type": "string" }, "downloadUrl": { "type": "string" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "installer": { "$ref": "#/definitions/Installer" }, "minimumOsVersion": { "type": "string" }, "moniker": { "type": "string" }, "package": { "$ref": "#/definitions/Package" }, "productCode": { "type": "string" }, "publisher": { "$ref": "#/definitions/Publisher" }, "repository": { "$ref": "#/definitions/WingetRepository" }, "skipTemplates": { "type": "array", "items": { "type": "string" } }, "tags": { "type": "array", "items": { "type": "string" } }, "templateDirectory": { "type": "string" } }, "additionalProperties": false }, "WingetRepository": { "type": "object", "properties": { "active": { "$ref": "#/definitions/Active" }, "branch": { "type": "string" }, "branchPush": { "type": "string" }, "commitMessage": { "type": "string" }, "name": { "type": "string" }, "owner": { "type": "string" }, "tagName": { "type": "string" }, "token": { "type": "string" }, "username": { "type": "string" } }, "additionalProperties": false }, "ZulipAnnouncer": { "type": "object", "properties": { "account": { "type": "string" }, "active": { "$ref": "#/definitions/Active" }, "apiHost": { "type": "string" }, "apiKey": { "type": "string" }, "channel": { "type": "string" }, "connectTimeout": { "type": "integer" }, "extraProperties": { "$ref": "#/definitions/Properties" }, "message": { "type": "string" }, "messageTemplate": { "type": "string" }, "readTimeout": { "type": "integer" }, "subject": { "type": "string" } }, "additionalProperties": false } } }
jreleaser-1
{ "additionalProperties": false, "properties": { "port": { "default": 80, "type": "integer" }, "role": { "default": "slave_public", "type": "string" } }, "type": "object" }
o55101
{ "definitions": { "kindle": { "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "authors": { "description": "Authors of kindle - API Author", "example": [ "メーブ", "恵広史" ], "items": { "type": [ "string" ] }, "minItems": 1, "readOnly": true, "type": [ "array", "null" ], "_uniqueItems": true }, "created_at": { "description": "when kindle was created", "example": "2015-01-01T00:00:00.000Z", "format": "date-time", "type": [ "string" ] }, "id": { "description": "ASIN code (unique identifier)", "example": "B01N3PNATY", "pattern": "^[0-9A-Z]{10}$", "readOnly": true, "type": [ "string" ] }, "identity": { "$ref": "#/definitions/kindle/definitions/id" }, "images": { "description": "Images of kindle", "properties": { "large": { "description": "Image (h500,w336) - API ImageSet/LargeImage/URL", "example": "https://images-fe.ssl-images-amazon.com/images/G/09/nav2/dp/no-image-no-ciu.gif", "format": "uri", "pattern": "^https://images-fe\\.ssl-images-amazon\\.com/images/.*?(no-image-no-ciu)?\\.(gif|jpg)$", "readOnly": true, "type": [ "string" ] }, "medium": { "description": "Image (h160,w108) - API ImageSet/MediumImage/URL", "example": "https://images-fe.ssl-images-amazon.com/images/I/51ZcS0q0-BL._SL160_.jpg", "format": "uri", "pattern": "^https://images-fe\\.ssl-images-amazon\\.com/images/.*?(no-image-no-ciu)?\\._SL160_\\.(gif|jpg)$", "readOnly": true, "type": [ "string" ] }, "small": { "description": "Image (h75,w50) - API ImageSet/SmallImage/URL", "example": "https://images-fe.ssl-images-amazon.com/images/I/51ZcS0q0-BL._SL75_.jpg", "format": "uri", "pattern": "^https://images-fe\\.ssl-images-amazon\\.com/images/.*?(no-image-no-ciu)?\\._SL75_\\.(gif|jpg)$", "readOnly": true, "type": [ "string" ] }, "swatch": { "description": "Image (h30,w20) - API ImageSet/SwatchImage/URL", "example": "https://images-fe.ssl-images-amazon.com/images/I/51ZcS0q0-BL._SL30_.jpg", "format": "uri", "pattern": "^https://images-fe\\.ssl-images-amazon\\.com/images/.*?(no-image-no-ciu)?\\._SL30_\\.(gif|jpg)$", "readOnly": true, "type": [ "string" ] }, "tiny": { "description": "Image (h110,w74) - API ImageSet/TinyImage/URL", "example": "https://images-fe.ssl-images-amazon.com/images/I/51ZcS0q0-BL._SL110_.jpg", "format": "uri", "pattern": "^https://images-fe\\.ssl-images-amazon\\.com/images/.*?(no-image-no-ciu)?\\._SL110_\\.(gif|jpg)$", "readOnly": true, "type": [ "string" ] } }, "readOnly": true, "type": [ "object", "null" ] }, "published_at": { "description": "when kindle was released (API PublicationDate)", "example": "2015-01-01", "pattern": "^[12][0-9]{3}-[0-1][0-9]-[0-3][0-9]$", "type": [ "string", "null" ] }, "publisher": { "description": "Publisher of kindle - API Publisher", "example": "講談社", "readOnly": true, "type": [ "string", "null" ] }, "title": { "description": "Title of kindle", "example": "バトルスタディーズ(8) (モーニングコミックス)", "readOnly": true, "type": [ "string", "null" ] }, "updated_at": { "description": "when kindle was updated", "example": "2015-01-01T00:00:00.000Z", "format": "date-time", "type": [ "string" ] }, "url": { "description": "Detail page URL of kindle - API DetailPageURL", "example": "https://www.amazon.co.jp/o/ASIN/B00EI2Y81I/habitec-22/", "format": "uri", "pattern": "^https://(www\\.)?amazon\\.co\\.jp/o/ASIN/[0-9A-Z]{10}/habitec-22/?$", "readOnly": true, "type": [ "string" ] } }, "description": "Amazon.co.jpのKindleデータを操作する", "links": [ { "description": "Info for existing kindle.", "href": "/kindles/{(%23%2Fdefinitions%2Fkindle%2Fdefinitions%2Fidentity)}", "method": "GET", "rel": "self", "title": "Info" }, { "description": "Create a new kindle.", "href": "/kindles", "method": "POST", "rel": "create", "schema": { "properties": { "id": { "$ref": "#/definitions/kindle/definitions/id" } }, "required": [ "id" ] }, "title": "Create", "type": [ "object" ] }, { "description": "Update an existing kindle.", "href": "/kindles/{(%23%2Fdefinitions%2Fkindle%2Fdefinitions%2Fidentity)}", "method": "PATCH", "rel": "update", "schema": { "properties": {}, "type": [ "object" ] }, "title": "Update" } ], "properties": { "authors": { "$ref": "#/definitions/kindle/definitions/authors" }, "created_at": { "$ref": "#/definitions/kindle/definitions/created_at" }, "id": { "$ref": "#/definitions/kindle/definitions/id" }, "images": { "$ref": "#/definitions/kindle/definitions/images" }, "published_at": { "$ref": "#/definitions/kindle/definitions/published_at" }, "publisher": { "$ref": "#/definitions/kindle/definitions/publisher" }, "title": { "$ref": "#/definitions/kindle/definitions/title" }, "updated_at": { "$ref": "#/definitions/kindle/definitions/updated_at" }, "url": { "$ref": "#/definitions/kindle/definitions/url" } }, "stability": "prototype", "strictProperties": true, "title": "Kindle", "type": [ "object" ] } }, "description": "In this schema file, we represents the public interface of HabitEC API in JSON Hyper Schema draft v4.", "links": [ { "href": "https://example.com", "rel": "self" } ], "properties": { "kindle": { "$ref": "#/definitions/kindle" } }, "title": "HabitEC API JSON Schema", "type": [ "object" ] }
o64008
{ "definitions": { "Playlist": { "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "additionalProperties": false, "properties": { "name": { "type": "string" }, "description": { "type": "string" }, "isRanked": { "type": "boolean" }, "imageUrl": { "type": [ "string", "null" ] }, "gameMode": { "type": "string" }, "isActive": { "type": "boolean" }, "id": { "type": "string" }, "contentId": { "type": "string" } }, "required": [ "name", "description", "isRanked", "imageUrl", "gameMode", "isActive", "id", "contentId" ] } }, "$schema": "http://json-schema.org/draft-04/schema#", "type": "array", "items": { "$ref": "#/definitions/Playlist" } }
o43209
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Pause step", "type": "object", "properties": { "name": { "type": "string" }, "kind": { "enum": [ "pause" ] }, "label": { "type": "string" }, "title": { "type": "string" }, "length": { "type": "integer", "minimum": 1 }, "iface": { "type": "object" } }, "required": [ "name", "kind", "label", "title" ] }
o58486
{ "properties": { "control-center": { "properties": { "bootstrap-servers": { "default": "broker.confluent-kafka.l4lb.thisdcos.directory:9092", "description": "Seed list of brokers to which this instance will attach. Format is comma-separated list of <broker>:<port>", "type": "string" }, "confluent-controlcenter-connect-cluster": { "default": "8.0.8.3:8083", "description": "Kafka Connect Workers to which this instance will deploy connectors. Format is comma-separated list of <broker>:<port>; default is the expected VIP of the confluent-connect service", "type": "string" }, "confluent-controlcenter-internal-topics-partitions": { "default": "3", "description": "Parition count for internal control-center kafka topics", "type": "number" }, "confluent-controlcenter-internal-topics-replication": { "default": "2", "description": "Replication factor for internal control-center kafka topics", "type": "number" }, "confluent-monitoring-interceptor-topic-partitions": { "default": "3", "description": "Parition count for kafka topics used to store data from the interceptor classes", "type": "number" }, "confluent-monitoring-interceptor-topic-replication": { "default": "2", "description": "Replication factor for kafka topics used to store data from the interceptor classes", "type": "number" }, "cpus": { "default": 2, "description": "CPU shares to allocate to each control-center instance.", "minimum": 2, "type": "number" }, "instances": { "default": 1, "description": "Number of instances to run.", "minimum": 1, "type": "integer" }, "mem": { "default": 4096, "description": "Memory (MB) to allocate to each control-center task.", "minimum": 2048, "type": "number" }, "name": { "default": "control-center", "description": "Name for this control-center application", "type": "string" }, "role": { "default": "*", "description": "Deploy control-center only on nodes with this role.", "type": "string" }, "zookeeper-connect": { "default": "master.mesos:2181/dcos-service-confluent-kafka", "description": "Zookeeper Connect string for service cluster. Format is comma-separated list of <zk-host>:<zkport>/<kservice>", "type": "string" } }, "required": [ "cpus", "mem", "instances", "name" ], "type": "object" } }, "type": "object" }
o81186
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "required": [ "base_path", "details", "document_type", "publishing_app", "rendering_app", "routes", "schema_name", "title" ], "additionalProperties": false, "properties": { "access_limited": { "$ref": "#/definitions/access_limited" }, "analytics_identifier": { "$ref": "#/definitions/analytics_identifier" }, "auth_bypass_ids": { "description": "A list of ids that will allow access to this item for non-authenticated users", "$ref": "#/definitions/guid_list" }, "base_path": { "$ref": "#/definitions/absolute_path" }, "bulk_publishing": { "type": "boolean" }, "change_note": { "type": [ "null", "string" ] }, "description": { "$ref": "#/definitions/description_optional" }, "details": { "$ref": "#/definitions/details" }, "document_type": { "type": "string", "enum": [ "aaib_report", "asylum_support_decision", "business_finance_support_scheme", "cma_case", "uk_market_conformity_assessment_body", "countryside_stewardship_grant", "dfid_research_output", "drug_safety_update", "employment_appeal_tribunal_decision", "employment_tribunal_decision", "esi_fund", "export_health_certificate", "international_development_fund", "maib_report", "marine_notice", "medical_safety_alert", "raib_report", "residential_property_tribunal_decision", "service_standard_report", "statutory_instrument", "tax_tribunal_decision", "traffic_commissioner_regulatory_decision", "utaac_decision" ] }, "first_published_at": { "$ref": "#/definitions/first_published_at" }, "last_edited_at": { "description": "Last time when the content received a major or minor update.", "type": "string", "format": "date-time" }, "links": { "type": "object", "required": [ "finder" ], "additionalProperties": false, "properties": { "finder": { "description": "The finder for this specialist document.", "$ref": "#/definitions/guid_list", "maxItems": 1, "minItems": 1 }, "organisations": { "description": "Associated organisations for this document", "$ref": "#/definitions/guid_list" }, "primary_publishing_organisation": { "description": "The primary organisation for this document", "$ref": "#/definitions/guid_list" } } }, "locale": { "$ref": "#/definitions/locale" }, "need_ids": { "type": "array", "items": { "type": "string" } }, "phase": { "description": "The service design phase of this content item - https://www.gov.uk/service-manual/phases", "type": "string", "enum": [ "alpha", "beta", "live" ] }, "previous_version": { "type": "string" }, "public_updated_at": { "$ref": "#/definitions/public_updated_at" }, "publishing_app": { "$ref": "#/definitions/publishing_app_name" }, "redirects": { "type": "array", "additionalItems": false, "items": {} }, "rendering_app": { "$ref": "#/definitions/rendering_app" }, "routes": { "$ref": "#/definitions/routes" }, "schema_name": { "type": "string", "enum": [ "specialist_document" ] }, "title": { "$ref": "#/definitions/title" }, "update_type": { "$ref": "#/definitions/update_type" } }, "definitions": { "description": { "type": "string" }, "aaib_report_metadata": { "type": "object", "additionalProperties": false, "properties": { "aircraft_category": { "type": "array", "items": { "type": "string", "enum": [ "commercial-fixed-wing", "commercial-rotorcraft", "general-aviation-fixed-wing", "general-aviation-rotorcraft", "sport-aviation-and-balloons", "unmanned-aircraft-systems" ] } }, "aircraft_type": { "type": "string" }, "bulk_published": { "type": "boolean" }, "date_of_occurrence": { "type": "string", "pattern": "^[1-9][0-9]{3}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[0-1])$" }, "location": { "type": "string" }, "registration": { "type": "string" }, "report_type": { "type": "string", "enum": [ "annual-safety-report", "correspondence-investigation", "field-investigation", "pre-1997-monthly-report", "foreign-report", "formal-report", "special-bulletin", "safety-study" ] } } }, "absolute_path": { "description": "A path only. Query string and/or fragment are not allowed.", "type": "string", "pattern": "^/(([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})+(/([a-zA-Z0-9._~!$&'()*+,;=:@-]|%[0-9a-fA-F]{2})*)*)?$" }, "access_limited": { "type": "object", "additionalProperties": false, "properties": { "auth_bypass_ids": { "description": "Deprecated: auth_bypass_ids should be sent as a separate field", "$ref": "#/definitions/guid_list" }, "organisations": { "description": "A list of organisation content ids permitted access to this item", "$ref": "#/definitions/guid_list" }, "users": { "type": "array", "items": { "type": "string" } } } }, "analytics_identifier": { "description": "A short identifier we send to Google Analytics for multi-valued fields. This means we avoid the truncated values we would get if we sent the path or slug of eg organisations.", "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "any_metadata": { "type": "object", "anyOf": [ { "$ref": "#/definitions/aaib_report_metadata" }, { "$ref": "#/definitions/asylum_support_decision_metadata" }, { "$ref": "#/definitions/business_finance_support_scheme_metadata" }, { "$ref": "#/definitions/cma_case_metadata" }, { "$ref": "#/definitions/uk_market_conformity_assessment_body_metadata" }, { "$ref": "#/definitions/countryside_stewardship_grant_metadata" }, { "$ref": "#/definitions/dfid_research_output_metadata" }, { "$ref": "#/definitions/drug_safety_update_metadata" }, { "$ref": "#/definitions/employment_appeal_tribunal_decision_metadata" }, { "$ref": "#/definitions/employment_tribunal_decision_metadata" }, { "$ref": "#/definitions/european_structural_investment_fund_metadata" }, { "$ref": "#/definitions/export_health_certificate_metadata" }, { "$ref": "#/definitions/international_development_fund_metadata" }, { "$ref": "#/definitions/maib_report_metadata" }, { "$ref": "#/definitions/marine_notice_metadata" }, { "$ref": "#/definitions/medical_safety_alert_metadata" }, { "$ref": "#/definitions/raib_report_metadata" }, { "$ref": "#/definitions/residential_property_tribunal_decision_metadata" }, { "$ref": "#/definitions/service_standard_report_metadata" }, { "$ref": "#/definitions/statutory_instrument_metadata" }, { "$ref": "#/definitions/tax_tribunal_decision_metadata" }, { "$ref": "#/definitions/traffic_commissioner_regulatory_decision_metadata" }, { "$ref": "#/definitions/utaac_decision_metadata" } ] }, "asylum_support_decision_metadata": { "type": "object", "additionalProperties": false, "properties": { "bulk_published": { "type": "boolean" }, "hidden_indexable_content": { "type": "string" }, "tribunal_decision_categories": { "type": "array", "items": { "type": "string", "enum": [ "section-4-1-support-for-persons-who-are-neither-an-asylum-seeker-nor-a-failed-asylum-seeker", "section-4-2-support-for-failed-asylum-seekers", "section-95-support-for-asylum-seekers" ] } }, "tribunal_decision_category": { "type": "string", "enum": [ "section-4-1-support-for-persons-who-are-neither-an-asylum-seeker-nor-a-failed-asylum-seeker", "section-4-2-support-for-failed-asylum-seekers", "section-95-support-for-asylum-seekers" ] }, "tribunal_decision_decision_date": { "type": "string", "pattern": "^[1-9][0-9]{3}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[0-1])$" }, "tribunal_decision_judges": { "type": "array", "items": { "type": "string" } }, "tribunal_decision_landmark": { "type": "string", "enum": [ "not-landmark", "landmark" ] }, "tribunal_decision_reference_number": { "type": "string" }, "tribunal_decision_sub_categories": { "type": "array", "items": { "type": "string" } }, "tribunal_decision_sub_category": { "type": "string" } } }, "body_html_and_govspeak": { "description": "The main content provided as HTML with the govspeak markdown it's rendered from", "anyOf": [ { "$ref": "#/definitions/multiple_content_types" } ] }, "business_finance_support_scheme_metadata": { "type": "object", "additionalProperties": false, "properties": { "bulk_published": { "type": "boolean" }, "business_sizes": { "type": "array", "items": { "type": "string", "enum": [ "between-10-and-249", "between-250-and-500", "over-500", "under-10" ] } }, "business_stages": { "type": "array", "items": { "type": "string", "enum": [ "established", "not-yet-trading", "start-up" ] } }, "continuation_link": { "type": "string" }, "industries": { "type": "array", "items": { "type": "string", "enum": [ "agriculture-and-food", "business-and-finance", "construction", "education", "health", "hospitality-and-catering", "information-technology-digital-and-creative", "life-sciences", "manufacturing", "mining", "real-estate-and-property", "science-and-technology", "service-industries", "transport-and-distribution", "travel-and-leisure", "utilities-providers", "wholesale-and-retail" ] } }, "regions": { "type": "array", "items": { "type": "string", "enum": [ "east-midlands", "eastern", "london", "north-east", "north-west", "northern-ireland", "scotland", "south-east", "south-west", "wales", "west-midlands", "yorkshire-and-the-humber" ] } }, "types_of_support": { "type": "array", "items": { "type": "string", "enum": [ "equity", "expertise-and-advice", "finance", "grant", "loan", "recognition-award" ] } }, "will_continue_on": { "oneOf": [ { "type": "string" }, { "type": "null" } ] } } }, "change_history": { "type": "array", "items": { "type": "object", "required": [ "public_timestamp", "note" ], "additionalProperties": false, "properties": { "note": { "description": "A summary of the change", "type": "string" }, "public_timestamp": { "type": "string", "format": "date-time" } } } }, "cma_case_metadata": { "type": "object", "additionalProperties": false, "properties": { "bulk_published": { "type": "boolean" }, "case_state": { "type": "string", "enum": [ "open", "closed" ] }, "case_type": { "type": "string", "enum": [ "ca98-and-civil-cartels", "competition-disqualification", "criminal-cartels", "markets", "mergers", "consumer-enforcement", "regulatory-references-and-appeals", "review-of-orders-and-undertakings", "state-aid" ] }, "closed_date": { "type": "string", "pattern": "^[1-9][0-9]{3}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[0-1])$" }, "market_sector": { "type": "array", "items": { "type": "string", "enum": [ "aerospace", "agriculture-environment-and-natural-resources", "building-and-construction", "chemicals", "clothing-footwear-and-fashion", "communications", "defence", "distribution-and-service-industries", "electronics-industry", "energy", "engineering", "financial-services", "fire-police-and-security", "food-manufacturing", "giftware-jewellery-and-tableware", "healthcare-and-medical-equipment", "household-goods-furniture-and-furnishings", "mineral-extraction-mining-and-quarrying", "motor-industry", "oil-and-gas-refining-and-petrochemicals", "paper-printing-and-packaging", "pharmaceuticals", "public-markets", "recreation-and-leisure", "retail-and-wholesale", "telecommunications", "textiles", "transport", "utilities" ] } }, "opened_date": { "type": "string", "pattern": "^[1-9][0-9]{3}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[0-1])$" }, "outcome_type": { "type": "string", "enum": [ "ca98-no-grounds-for-action-non-infringement", "ca98-infringement-chapter-i", "ca98-infringement-chapter-ii", "ca98-administrative-priorities", "ca98-commitment", "competition-disqualification-order-granted", "competition-disqualification-undertaking-given", "competition-disqualification-no-order-granted-or-undertaking-given", "criminal-cartels-verdict", "markets-phase-1-no-enforcement-action", "markets-phase-1-undertakings-in-lieu-of-reference", "markets-phase-1-referral", "mergers-phase-1-clearance", "mergers-phase-1-clearance-with-undertakings-in-lieu", "mergers-phase-1-referral", "mergers-phase-1-found-not-to-qualify", "mergers-phase-1-public-interest-interventions", "markets-phase-2-clearance-no-adverse-effect-on-competition", "markets-phase-2-adverse-effect-on-competition-leading-to-remedies", "markets-phase-2-decision-to-dispense-with-procedural-obligations", "mergers-phase-2-clearance", "mergers-phase-2-clearance-with-remedies", "mergers-phase-2-prohibition", "mergers-phase-2-cancellation", "consumer-enforcement-no-action", "consumer-enforcement-court-order", "consumer-enforcement-undertakings", "consumer-enforcement-changes-to-business-practices-agreed", "regulatory-references-and-appeals-final-determination", "state-aid-no-aid", "state-aid-aid-approved", "state-aid-conditional-decision", "state-aid-aid-not-approved", "state-aid-investigation", "state-aid-recommendation-accepted", "state-aid-recommendation-implemented", "state-aid-aid-not-misused" ] } } }, "countryside_stewardship_grant_metadata": { "type": "object", "additionalProperties": false, "properties": { "bulk_published": { "type": "boolean" }, "funding_amount": { "type": "array", "items": { "type": "string", "enum": [ "up-to-100", "101-to-200", "201-to-300", "301-to-400", "401-to-500", "more-than-500", "up-to-50-actual-costs", "more-than-50-actual-costs" ] } }, "grant_type": { "type": "string", "enum": [ "option", "capital-item", "supplement" ] }, "land_use": { "type": "array", "items": { "type": "string", "enum": [ "arable-land", "boundaries", "coast", "educational-access", "flood-risk", "grassland", "historic-environment", "livestock-management", "organic-land", "priority-habitats", "trees-non-woodland", "uplands", "vegetation-control", "water-quality", "wildlife-package", "woodland" ] } }, "tiers_or_standalone_items": { "type": "array", "items": { "type": "string", "enum": [ "higher-tier", "mid-tier", "offer-lowland-grazing", "offer-mixed-farming", "offer-arable", "offer-upland", "standalone-capital-items" ] } } } }, "description_optional": { "anyOf": [ { "$ref": "#/definitions/description" }, { "type": "null" } ] }, "details": { "type": "object", "required": [ "body", "metadata" ], "additionalProperties": false, "properties": { "attachments": { "description": "An ordered list of asset links", "type": "array", "items": { "$ref": "#/definitions/specialist_publisher_attachment_asset" } }, "body": { "$ref": "#/definitions/body_html_and_govspeak" }, "change_history": { "$ref": "#/definitions/change_history" }, "headers": { "$ref": "#/definitions/nested_headers" }, "max_cache_time": { "$ref": "#/definitions/max_cache_time" }, "metadata": { "$ref": "#/definitions/any_metadata" }, "temporary_update_type": { "description": "Indicates that the user should choose a new update type on the next save.", "type": "boolean" } } }, "dfid_research_output_metadata": { "type": "object", "additionalProperties": false, "properties": { "bulk_published": { "type": "boolean" }, "country": { "type": "array", "items": { "type": "string", "enum": [ "AF", "AL", "DZ", "AD", "AO", "AG", "AR", "AM", "AU", "AT", "AZ", "BS", "BH", "BD", "BB", "BY", "BE", "BZ", "BJ", "BT", "BO", "BA", "BW", "BR", "BN", "BG", "BF", "MM", "BI", "KH", "CM", "CA", "CV", "CF", "TD", "CL", "CN", "CO", "KM", "CG", "CD", "CK", "CR", "HR", "CU", "CY", "CZ", "DK", "DJ", "DM", "DO", "TL", "EC", "EG", "SV", "GQ", "ER", "EE", "ET", "FJ", "FI", "FR", "GA", "GM", "GE", "DE", "GH", "GR", "GD", "GT", "GN", "GW", "GY", "HT", "HN", "HU", "IS", "IN", "ID", "IR", "IQ", "IE", "IL", "IT", "CI", "JM", "JP", "JO", "KZ", "KE", "KI", "XK", "KW", "KG", "LA", "LV", "LB", "LS", "LR", "LY", "LI", "LT", "LU", "MK", "MG", "MW", "MY", "MV", "ML", "MT", "MH", "MR", "MU", "MX", "FM", "MD", "MC", "MN", "ME", "MA", "MZ", "NA", "NR", "NP", "NL", "NZ", "NI", "NE", "NG", "KP", "NO", "OM", "PK", "PW", "PA", "PG", "PY", "PE", "PH", "PL", "PT", "QA", "RO", "RU", "RW", "WS", "SM", "ST", "SA", "SN", "RS", "SC", "SL", "SG", "SK", "SI", "SB", "SO", "ZA", "KR", "SS", "ES", "LK", "KN", "LC", "VC", "SD", "SR", "SZ", "SE", "CH", "SY", "TJ", "TZ", "TH", "TG", "TO", "TT", "TN", "TR", "TM", "TV", "UG", "UA", "AE", "GB", "US", "UY", "UZ", "VU", "VA", "VE", "VN", "YE", "ZM", "ZW" ] } }, "dfid_authors": { "type": "array", "items": { "type": "string" } }, "dfid_document_type": { "type": "string", "items": { "type": "string", "enum": [ "book", "book_chapter", "briefing", "case_study", "conference_paper", "country_report", "dataset", "discussion_paper", "evaluation_report", "journal_article", "journal_issue", "lessons_learned", "literature_review", "manual", "protocol", "research_paper", "systematic_review", "technical_report", "thematic_summary", "tool_kit", "training_materials", "working_paper" ] } }, "dfid_review_status": { "type": "string", "enum": [ "unreviewed", "peer_reviewed" ] }, "dfid_theme": { "type": "array", "items": { "type": "string", "enum": [ "agriculture", "climate_and_environment", "economic_growth", "education", "food_and_nutrition", "governance_and_conflict", "health", "humanitarian_disasters_and_emergencies", "infrastructure", "research_communication_and_uptake", "social_change", "water_and_sanitation" ] } }, "first_published_at": { "type": "string", "pattern": "^[1-9][0-9]{3}[-/](0[1-9]|1[0-2])[-/](0[1-9]|[12][0-9]|3[0-1])$" } } }, "drug_safety_update_metadata": { "type": "object", "additionalProperties": false, "properties": { "bulk_published": { "type": "boolean" }, "first_published_at": { "type": "string", "pattern": "^[1-9][0-9]{3}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[0-1])$" }, "therapeutic_area": { "type": "array", "items": { "type": "string", "enum": [ "anaesthesia-intensive-care", "breastfeeding", "cancer", "cardiovascular-disease-lipidology", "dentistry", "dermatology", "ear-nose-throat", "endocrinology-diabetology-metabolism", "gi-hepatology-pancreatic-disorders", "haematology", "immunology-vaccination", "immunosuppression-transplantation", "infectious-disease", "neurology", "nutrition-dietetics", "obstetrics-gynaecology-fertility", "ophthalmology", "paediatrics-neonatology", "pain-management-palliation", "pregnancy", "psychiatry", "radiology-imaging", "respiratory-disease-allergy", "rheumatology", "urology-nephrology" ] } } } }, "employment_appeal_tribunal_decision_metadata": { "type": "object", "additionalProperties": false, "properties": { "bulk_published": { "type": "boolean" }, "hidden_indexable_content": { "type": "string" }, "tribunal_decision_categories": { "type": "array", "items": { "type": "string" } }, "tribunal_decision_decision_date": { "type": "string", "pattern": "^[1-9][0-9]{3}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[0-1])$" }, "tribunal_decision_landmark": { "type": "string", "enum": [ "landmark", "not-landmark" ] }, "tribunal_decision_sub_categories": { "type": "array", "items": { "type": "string" } } } }, "employment_tribunal_decision_metadata": { "type": "object", "additionalProperties": false, "properties": { "bulk_published": { "type": "boolean" }, "hidden_indexable_content": { "type": "string" }, "tribunal_decision_categories": { "type": "array", "items": { "type": "string" } }, "tribunal_decision_country": { "type": "string", "enum": [ "england-and-wales", "scotland" ] }, "tribunal_decision_decision_date": { "type": "string", "pattern": "^[1-9][0-9]{3}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[0-1])$" } } }, "european_structural_investment_fund_metadata": { "type": "object", "additionalProperties": false, "properties": { "bulk_published": { "type": "boolean" }, "closing_date": { "type": "string", "pattern": "^[1-9][0-9]{3}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[0-1])$" }, "fund_state": { "type": "string", "enum": [ "open", "closed" ] }, "fund_type": { "type": "array", "items": { "type": "string", "enum": [ "access-to-work", "business-support", "climate-change", "environment", "it-and-broadband", "learning-and-skills", "low-carbon", "renewable-energy", "research-and-innovation", "social-inclusion", "transport", "techincal-assistance", "tourism" ] } }, "funding_source": { "type": "array", "items": { "type": "string", "enum": [ "european-social-fund", "european-regional-development-fund", "european-agricoltural-fund-for-rural" ] } }, "location": { "type": "array", "items": { "type": "string", "enum": [ "north-east", "north-west", "yorkshire-and-humber", "east-midlands", "west-midlands", "east-of-england", "south-east", "south-west", "london" ] } } } }, "export_health_certificate_metadata": { "type": "object", "additionalProperties": false, "properties": { "certificate_status": { "type": "string", "enum": [ "active", "on-hold" ] }, "commodity_type": { "type": "string", "enum": [ "animal-products-including-food", "equine", "fish", "germplasm", "live-animals", "livestock", "pets" ] }, "destination_country": { "type": "array", "items": { "type": "string", "enum": [ "afghanistan", "albania", "algeria", "andean-community-of-peru-bolivia-colombia-ecuador", "angola", "anguilla", "antigua", "argentina", "armenia", "ascension-island", "australia", "austria", "azerbaijan", "bahamas", "bahrain", "bangladesh", "barbados", "belarus", "belgium", "belize", "benin", "bermuda", "bhutan", "bolivia", "bosnia-and-herzegovina", "botswana", "brazil", "british-virgin-islands", "brunei", "bulgaria", "burkina-faso", "burundi", "cambodia", "cameroon", "canada", "cape-verde", "cayman-islands", "central-african-republic", "chad", "chile", "china", "colombia", "comoros", "congo-democratic-republic-of", "congo-republic-of", "costa-rica", "cote-d-ivoire", "croatia", "cuba", "cyprus", "czech-republic", "denmark", "djibouti", "dominica", "dominican-republic", "east-timor", "ecuador", "egypt", "el-salvador", "equatorial-guinea", "eritrea", "estonia", "eswatini-previously-swaziland", "ethiopia", "eu", "eurasian-customs-union", "falkland-islands", "faroe-islands", "fiji", "finland", "france", "french-polynesia", "gabon", "gambia", "georgia", "germany", "ghana", "gibraltar", "great-britain", "greece", "grenada", "guam", "guatemala", "guernsey", "guinea", "guinea-bissau", "guyana", "haiti", "hawaii", "honduras", "hong-kong", "hungary", "iceland", "india", "indonesia", "iran", "iraq", "isle-of-man", "israel", "italy", "jamaica", "japan", "jersey", "jordan", "kazakhstan", "kenya", "kiribati", "kosovo", "kuwait", "kyrgyzstan", "laos", "latvia", "lebanon", "lesotho", "liberia", "libya", "liechtenstein", "lithuania", "luxembourg", "macao", "macedonia", "madagascar", "malawi", "malaysia", "maldives", "mali", "malta", "marshall-islands", "mauritania", "mauritius", "mexico", "micronesia", "moldova", "mongolia", "montenegro", "montserrat", "morocco", "mozambique", "myanmar", "namibia", "nauru", "nepal", "netherlands", "new-caledonia", "new-zealand", "nicaragua", "niger", "nigeria", "north-korea", "north-sudan", "northern-cyprus", "northern-ireland", "norway", "oman", "pakistan", "palau", "palestine", "panama", "papua-new-guinea", "paraguay", "peru", "philippines", "poland", "portugal", "qatar", "republic-of-ireland", "romania", "russia", "rwanda", "samoa", "san-marino", "sao-tome-and-principe", "saudi-arabia", "senegal", "serbia", "seychelles", "sierra-leone", "singapore", "slovakia", "slovenia", "solomon-islands", "somalia", "south-africa", "south-korea", "south-sudan", "spain", "sri-lanka", "st-helena", "st-kitts-and-nevis", "st-lucia", "st-vincent-and-the-grenadines", "sudan", "suriname", "swaziland-now-eswatini", "sweden", "switzerland", "syria", "taiwan", "tajikistan", "tanzania", "thailand", "togo", "tonga", "trinidad-and-tobago", "tristan-da-cunha", "tunisia", "turkey", "turkmenistan", "turks-and-caicos-islands", "tuvalu", "uganda", "ukraine", "united-arab-emirates", "uruguay", "usa", "uzbekistan", "vanuatu", "venezuela", "vietnam", "wallis-and-futuna-islands", "yemen", "zambia", "zimbabwe" ] } } } }, "first_published_at": { "description": "The date the content was first published. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string", "format": "date-time" }, "guid": { "type": "string", "pattern": "^[a-f0-9]{8}-[a-f0-9]{4}-[1-5][a-f0-9]{3}-[89ab][a-f0-9]{3}-[a-f0-9]{12}$" }, "guid_list": { "type": "array", "items": { "$ref": "#/definitions/guid" }, "_uniqueItems": true }, "international_development_fund_metadata": { "type": "object", "additionalProperties": false, "properties": { "bulk_published": { "type": "boolean" }, "development_sector": { "type": "array", "items": { "type": "string", "enum": [ "agriculture", "climate-change", "disabilities", "education", "empowerment-and-accountability", "environment", "girls-and-women", "health", "humanitarian-emergencies-disasters", "livelihoods", "peace-and-access-to-justice", "private-sector-business", "technology", "trade", "water-and-sanitation" ] } }, "eligible_entities": { "type": "array", "items": { "type": "string", "enum": [ "non-governmental-organisations", "uk-based-non-profit-organisations", "uk-based-small-and-diaspora-organisations", "companies", "local-government", "educational-institutions", "individuals", "humanitarian-relief-organisations" ] } }, "fund_state": { "type": "string", "enum": [ "open", "closed" ] }, "location": { "type": "array", "items": { "type": "string", "enum": [ "afghanistan", "albania", "algeria", "andorra", "angola", "antigua-and-barbuda", "argentina", "armenia", "australia", "austria", "azerbaijan", "bahamas", "bahrain", "bangladesh", "barbados", "belarus", "belgium", "belize", "benin", "bhutan", "bolivia", "bosnia-and-herzegovina", "botswana", "brazil", "brunei", "bulgaria", "burkina-faso", "burundi", "cambodia", "cameroon", "canada", "cape-verde", "central-african-republic", "chad", "chile", "china", "colombia", "comoros", "congo", "democratic-republic-of-congo", "cook-islands", "costa-rica", "croatia", "cuba", "cyprus", "czech-republic", "denmark", "djibouti", "dominica", "dominican-republic", "east-timor", "ecuador", "egypt", "el-salvador", "equatorial-guinea", "eritrea", "estonia", "ethiopia", "fiji", "finland", "france", "gabon", "gambia", "georgia", "germany", "ghana", "greece", "grenada", "guatemala", "guinea", "guinea-bissau", "guyana", "haiti", "honduras", "hungary", "iceland", "india", "indonesia", "iran", "iraq", "ireland", "israel", "italy", "cote-d-ivoire", "jamaica", "japan", "jordan", "kazakhstan", "kenya", "kiribati", "kosovo", "kuwait", "kyrgyzstan", "laos", "latvia", "lebanon", "lesotho", "liberia", "libya", "liechtenstein", "lithuania", "luxembourg", "macedonia", "madagascar", "malawi", "malaysia", "maldives", "mali", "malta", "marshall-islands", "mauritania", "mauritius", "mexico", "micronesia", "moldova", "monaco", "mongolia", "montenegro", "morocco", "mozambique", "myanmar", "namibia", "nauru", "nepal", "netherlands", "new-zealand", "nicaragua", "niger", "nigeria", "north-korea", "norway", "oman", "pakistan", "palau", "the-occupied-palestinian-territories", "panama", "papua-new-guinea", "paraguay", "peru", "philippines", "poland", "portugal", "qatar", "romania", "russia", "rwanda", "samoa", "san-marino", "sao-tome-and-principe", "saudi-arabia", "senegal", "serbia", "seychelles", "sierra-leone", "singapore", "slovakia", "slovenia", "solomon-islands", "somalia", "south-africa", "south-korea", "south-sudan", "spain", "sri-lanka", "st-kitts-and-nevis", "st-lucia", "st-vincent", "sudan", "suriname", "swaziland", "sweden", "switzerland", "syria", "tajikistan", "tanzania", "thailand", "togo", "tonga", "trinidad-and-tobago", "tunisia", "turkey", "turkmenistan", "tuvalu", "uganda", "ukraine", "united-arab-emirates", "united-kingdom", "united-states", "uruguay", "uzbekistan", "vanuatu", "vatican-city", "venezuela", "vietnam", "yemen", "zambia", "zimbabwe" ] } }, "value_of_funding": { "type": "array", "items": { "type": "string", "enum": [ "up-to-100000", "100001-500000", "500001-to-1000000", "more-than-1000000" ] } } } }, "locale": { "type": "string", "enum": [ "ar", "az", "be", "bg", "bn", "cs", "cy", "da", "de", "dr", "el", "en", "es", "es-419", "et", "fa", "fi", "fr", "gd", "he", "hi", "hr", "hu", "hy", "id", "is", "it", "ja", "ka", "kk", "ko", "lt", "lv", "ms", "mt", "nl", "no", "pl", "ps", "pt", "ro", "ru", "si", "sk", "sl", "so", "sq", "sr", "sv", "sw", "ta", "th", "tk", "tr", "uk", "ur", "uz", "vi", "zh", "zh-hk", "zh-tw" ] }, "maib_report_metadata": { "type": "object", "additionalProperties": false, "properties": { "bulk_published": { "type": "boolean" }, "date_of_occurrence": { "type": "string", "pattern": "^[1-9][0-9]{3}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[0-1])$" }, "report_type": { "type": "string", "enum": [ "investigation-report", "safety-bulletin", "completed-preliminary-examination", "overseas-report", "discontinued-investigation" ] }, "vessel_type": { "type": "array", "items": { "type": "string", "enum": [ "merchant-vessel-100-gross-tons-or-over", "merchant-vessel-under-100-gross-tons", "fishing-vessel", "recreational-craft-sail", "recreational-craft-power" ] } } } }, "marine_notice_metadata": { "type": "object", "additionalProperties": false, "properties": { "bulk_published": { "type": "boolean" }, "issued_date": { "type": "string", "pattern": "^[1-9][0-9]{3}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[0-1])$" }, "marine_notice_topic": { "type": "array", "items": { "type": "string", "enum": [ "construction-and-equipment", "crew-and-training", "health-and-safety", "environmental", "navigation", "radio-communications", "registration", "security-isps", "survey-and-inspection" ] } }, "marine_notice_type": { "type": "string", "enum": [ "marine-guidance-note", "merchant-shipping-notice", "marine-information-note", "form", "instructions-to-surveyors", "codes-of-practice", "safety-bulletin", "other" ] }, "marine_notice_vessel_type": { "type": "array", "items": { "type": "string", "enum": [ "pleasure-vessels", "small-commercial-vessels", "cargo-vessels-over-24-metres", "fishing-vessels-under-15-metres", "fishing-vessels-15-24-metres", "fishing-vessels-over-24-metres", "high-speed-craft", "large-yachts", "passenger-vessels" ] } } } }, "max_cache_time": { "description": "The maximum length of time the content should be cached, in seconds", "type": "integer" }, "medical_safety_alert_metadata": { "type": "object", "additionalProperties": false, "properties": { "alert_type": { "type": "string", "enum": [ "drugs", "devices", "field-safety-notices", "company-led-drugs" ] }, "bulk_published": { "type": "boolean" }, "issued_date": { "type": "string", "pattern": "^[1-9][0-9]{3}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[0-1])$" }, "medical_specialism": { "type": "array", "items": { "type": "string", "enum": [ "anaesthetics", "cardiology", "care-home-staff", "cosmetic-surgery", "critical-care", "dentistry", "general-practice", "general-surgery", "haematology-oncology", "infection-prevention", "obstetrics-gynaecology", "ophthalmology", "orthopaedics", "paediatrics", "pathology", "pharmacy", "physiotherapy-occupational-therapy", "radiology", "renal-medicine", "theatre-practitioners", "urology", "vascular-cardiac-surgery" ] } } } }, "multiple_content_types": { "type": "array", "items": { "type": "object", "required": [ "content_type", "content" ], "additionalProperties": false, "properties": { "content": { "type": "string" }, "content_type": { "type": "string" } } } }, "nested_headers": { "type": "array", "items": { "type": "object", "required": [ "text", "level", "id" ], "additionalProperties": false, "properties": { "headers": { "$ref": "#/definitions/nested_headers" }, "id": { "type": "string" }, "level": { "type": "integer" }, "text": { "type": "string" } } }, "minItems": 1 }, "public_updated_at": { "description": "When the content was last significantly changed (a major update). Shown to users. Automatically determined by the publishing-api, unless overridden by the publishing application.", "type": "string", "format": "date-time" }, "publishing_app_name": { "description": "The application that published this item.", "type": "string", "enum": [ "calculators", "calendars", "collections-publisher", "contacts", "content-publisher", "content-tagger", "email-alert-frontend", "external-link-tracker", "feedback", "frontend", "government-frontend", "hmrc-manuals-api", "info-frontend", "licencefinder", "local-links-manager", "manuals-frontend", "manuals-publisher", "maslow", "performanceplatform-big-screen-view", "publisher", "rummager", "search-admin", "search-api", "service-manual-publisher", "share-sale-publisher", "short-url-manager", "smartanswers", "special-route-publisher", "specialist-publisher", "static", "tariff", "travel-advice-publisher", "whitehall" ] }, "raib_report_metadata": { "type": "object", "additionalProperties": false, "properties": { "bulk_published": { "type": "boolean" }, "date_of_occurrence": { "type": "string", "pattern": "^[1-9][0-9]{3}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[0-1])$" }, "railway_type": { "type": "array", "items": { "type": "string", "enum": [ "heavy-rail", "light-rail", "metros", "heritage-railways" ] } }, "report_type": { "type": "string", "enum": [ "investigation-report", "bulletin", "interim-report", "discontinuation-report", "safety-digest" ] } } }, "rendering_app": { "description": "The application that renders this item.", "type": "string", "enum": [ "calculators", "calendars", "collections", "content-store", "email-alert-frontend", "email-campaign-frontend", "feedback", "finder-frontend", "frontend", "government-frontend", "info-frontend", "licencefinder", "manuals-frontend", "performanceplatform-big-screen-view", "rummager", "search-api", "service-manual-frontend", "smartanswers", "spotlight", "static", "tariff", "whitehall-admin", "whitehall-frontend" ] }, "residential_property_tribunal_decision_metadata": { "type": "object", "additionalProperties": false, "properties": { "bulk_published": { "type": "boolean" }, "hidden_indexable_content": { "type": "string" }, "tribunal_decision_category": { "type": "string", "enum": [ "housing-act-2004-and-housing-and-planning-act-2016", "leasehold-disputes-management", "leasehold-enfranchisement-and-extension", "park-homes", "rents", "right-to-buy", "tenant-associations", "tenant-fees-act" ] }, "tribunal_decision_decision_date": { "type": "string", "pattern": "^[1-9][0-9]{3}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[0-1])$" }, "tribunal_decision_sub_category": { "type": "string", "enum": [ "housing-act-2004-and-housing-and-planning-act-2016---rent-repayment-orders", "housing-act-2004-and-housing-and-planning-act-2016---improvement-notices", "housing-act-2004-and-housing-and-planning-act-2016---prohibition-orders", "housing-act-2004-and-housing-and-planning-act-2016---demolition-and-closing-orders", "housing-act-2004-and-housing-and-planning-act-2016---emergency-notices-and-orders", "housing-act-2004-and-housing-and-planning-act-2016---empty-dwelling-management-orders", "housing-act-2004-and-housing-and-planning-act-2016---houses-in-multiple-occupation-licensing", "housing-act-2004-and-housing-and-planning-act-2016---selective-licensing", "housing-act-2004-and-housing-and-planning-act-2016---banning-orders", "housing-act-2004-and-housing-and-planning-act-2016---civil-financial-penalties", "housing-act-2004-and-housing-and-planning-act-2016---management-orders", "housing-act-2004-and-housing-and-planning-act-2016---overcrowding-notices", "leasehold-disputes-management---service-charges", "leasehold-disputes-management---administration-charges", "leasehold-disputes-management---appointment-of-manager", "leasehold-disputes-management---right-to-manage", "leasehold-disputes-management---variation-of-leases", "leasehold-disputes-management---breach-of-lease-forfeiture", "leasehold-disputes-management---estate-charges-estate-management-schemes", "leasehold-enfranchisement-and-extension---flats-lease-extension", "leasehold-enfranchisement-and-extension---houses-enfranchisement", "leasehold-enfranchisement-and-extension---flats-collective-enfranchisement", "leasehold-enfranchisement-and-extension---right-of-first-refusal", "park-homes---pitch-fee", "park-homes---section-4-any-question-under-act-or-agreement", "park-homes---local-authority-compliance-notice", "park-homes---appeal-against-alteration-of-a-site-licence-condition", "park-homes---local-authority-decision-emergency-action", "park-homes---local-authority-site-licence-refusal-refusal-to-transfer", "park-homes---site-owners-failure-to-deposit-site-rules-with-local-authority", "park-homes---site-rule-change-consultation-response", "park-homes---park-home-having-a-detrimental-effect", "park-homes---order-relating-to-implied-and-express-terms", "park-homes---recognition-of-residents-association", "park-homes---refusal-orders-against-giving-assigning-home", "park-homes---site-licence-payment-of-annual-fee", "park-homes---order-requiring-written-statement-of-terms", "park-homes---temporary-re-siting-return-of-resited-park-home", "park-homes---entitlement-to-terminate-an-agreement-for-occupation", "rents---market-rent-assured-shorthold-tenancy", "rents---fair-rent", "right-to-buy---right-to-buy-appeals-elderly-persons", "tenant-associations---recognition-of-tenants-association", "tenant-associations---request-for-information", "tenant-fees-act---recovery-of-a-prohibited-payment", "tenant-fees-act---financial-penalties" ] } } }, "route": { "type": "object", "required": [ "path", "type" ], "additionalProperties": false, "properties": { "path": { "type": "string" }, "type": { "enum": [ "prefix", "exact" ] } } }, "routes": { "type": "array", "items": { "$ref": "#/definitions/route" }, "minItems": 1 }, "service_standard_report_metadata": { "type": "object", "additionalProperties": false, "properties": { "assessment_date": { "type": "string", "pattern": "^[1-9][0-9]{3}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[0-1])$" }, "bulk_published": { "type": "boolean" }, "result": { "type": "string", "enum": [ "met", "not-met" ] }, "service_provider": { "$ref": "#/definitions/guid" }, "stage": { "type": "string", "enum": [ "alpha", "alpha-reassessment", "beta", "beta-reassessment", "live", "live-reassessment", "live-review" ] } } }, "specialist_publisher_attachment_asset": { "type": "object", "required": [ "attachment_type", "content_id", "content_type", "id", "url" ], "additionalProperties": false, "properties": { "accessible": { "type": "boolean" }, "alternative_format_contact_email": { "type": "string" }, "attachment_type": { "type": "string", "enum": [ "file" ] }, "content_id": { "$ref": "#/definitions/guid" }, "content_type": { "type": "string" }, "created_at": { "format": "date-time" }, "file_size": { "type": "integer" }, "filename": { "type": "string" }, "id": { "type": "string" }, "locale": { "$ref": "#/definitions/locale" }, "number_of_pages": { "type": "integer" }, "preview_url": { "type": "string", "format": "uri" }, "title": { "type": "string" }, "updated_at": { "format": "date-time" }, "url": { "type": "string", "format": "uri" } } }, "statutory_instrument_metadata": { "type": "object", "additionalProperties": false, "properties": { "laid_date": { "type": "string", "pattern": "^[1-9][0-9]{3}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[0-1])$" }, "sift_end_date": { "type": "string", "pattern": "^[1-9][0-9]{3}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[0-1])$" }, "sifting_status": { "type": "string", "enum": [ "open", "closed", "withdrawn" ] }, "subject": { "type": "array", "items": { "type": "string", "enum": [ "business", "crime-justice-and-law", "defence", "education-training-and-skills", "entering-and-staying-in-the-uk", "environment", "going-and-being-abroad", "government", "health-and-social-care", "housing-local-and-community", "international", "life-circumstances", "money", "parenting-childcare-and-childrens-services", "regional-and-local-government", "society-and-culture", "transport", "welfare", "work" ] } }, "withdrawn_date": { "type": "string", "pattern": "^[1-9][0-9]{3}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[0-1])$" } } }, "tax_tribunal_decision_metadata": { "type": "object", "additionalProperties": false, "properties": { "bulk_published": { "type": "boolean" }, "hidden_indexable_content": { "type": "string" }, "tribunal_decision_category": { "type": "string", "enum": [ "banking", "charity", "financial-services", "land-registration", "pensions", "tax" ] }, "tribunal_decision_decision_date": { "type": "string", "pattern": "^[1-9][0-9]{3}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[0-1])$" } } }, "title": { "type": "string" }, "traffic_commissioner_regulatory_decision_metadata": { "type": "object", "additionalProperties": false, "properties": { "case_type": { "type": "string", "enum": [ "application", "regulatory", "impounding", "environmental" ] }, "decision_subject": { "type": "string", "enum": [ "hgv-operator", "psv-operator", "transport-manager" ] }, "first_published_at": { "type": "string", "pattern": "^[1-9][0-9]{3}[-/](0[1-9]|1[0-2])[-/](0[1-9]|[12][0-9]|3[0-1])$" }, "outcome_type": { "type": "string", "enum": [ "no-action", "curtailment", "formal-warning", "loss-of-repute", "revocation" ] }, "regions": { "type": "array", "items": { "type": "string", "enum": [ "eastern", "london-and-southeast", "north-west", "north-east", "scotland", "wales", "west-midlands", "western" ] } } } }, "uk_market_conformity_assessment_body_metadata": { "type": "object", "additionalProperties": false, "properties": { "uk_market_conformity_assessment_body_email": { "type": "string" }, "uk_market_conformity_assessment_body_legislative_area": { "type": "array", "items": { "type": "string", "enum": [ "cableway-installations", "construction-products", "ecodesign", "electromagnetic-compatibility", "equipment-and-protective-systems-intended-for-use-in-potentially-explosive-atmospheres", "explosives", "gas-appliances-and-related", "lifts", "machinery", "marine-equipment", "measuring-instruments", "noise-emissions-in-the-environment-by-equipment-for-use-outdoors", "non-automatic-weighing-instruments", "personal-protective-equipment", "pressure-equipment", "pyrotechnics", "radio-equipment", "railway-interoperability", "recreational-craft", "simple-pressure-vessels", "toys", "transportable-pressure-equipment" ] } }, "uk_market_conformity_assessment_body_name": { "type": "string" }, "uk_market_conformity_assessment_body_number": { "type": "string" }, "uk_market_conformity_assessment_body_phone": { "type": "string" }, "uk_market_conformity_assessment_body_registered_office_location": { "type": "string", "enum": [ "australia", "canada", "israel", "japan", "new-zealand", "switzerland", "united-kingdom", "united-states-of-america" ] }, "uk_market_conformity_assessment_body_testing_locations": { "type": "array", "items": { "type": "string", "enum": [ "united-kingdom", "afghanistan", "albania", "algeria", "andorra", "angola", "antigua-and-barbuda", "argentina", "armenia", "australia", "austria", "azerbaijan", "bahrain", "bangladesh", "barbados", "belarus", "belgium", "belize", "benin", "bhutan", "bolivia", "bosnia-and-herzegovina", "botswana", "brazil", "brunei", "bulgaria", "burkina-faso", "burundi", "cambodia", "cameroon", "canada", "cape-verde", "central-african-republic", "chad", "chile", "china", "colombia", "comoros", "congo", "congo-democratic-republic", "costa-rica", "croatia", "cuba", "cyprus", "czechia", "denmark", "djibouti", "dominica", "dominican-republic", "east-timor", "ecuador", "egypt", "el-salvador", "equatorial-guinea", "eritrea", "estonia", "eswatini", "ethiopia", "fiji", "finland", "france", "gabon", "georgia", "germany", "ghana", "greece", "grenada", "guatemala", "guinea", "guinea-bissau", "guyana", "haiti", "honduras", "hungary", "iceland", "india", "indonesia", "iran", "iraq", "ireland", "israel", "italy", "ivory-coast", "jamaica", "japan", "jordan", "kazakhstan", "kenya", "kiribati", "north-korea", "south-korea", "kosovo", "kuwait", "kyrgyzstan", "laos", "latvia", "lebanon", "lesotho", "liberia", "libya", "liechtenstein", "lithuania", "luxembourg", "madagascar", "malawi", "malaysia", "maldives", "mali", "malta", "marshall-islands", "mauritania", "mauritius", "mexico", "micronesia", "moldova", "monaco", "mongolia", "montenegro", "morocco", "mozambique", "myanmar", "namibia", "nauru", "nepal", "netherlands", "new-zealand", "nicaragua", "niger", "nigeria", "north-macedonia", "norway", "oman", "pakistan", "palau", "panama", "papua-new-guinea", "paraguay", "peru", "philippines", "poland", "portugal", "qatar", "romania", "russia", "rwanda", "st-kitts-and-nevis", "st-lucia", "st-vincent", "samoa", "san-marino", "sao-tome-and-principe", "saudi-arabia", "senegal", "serbia", "seychelles", "sierra-leone", "singapore", "slovakia", "slovenia", "solomon-islands", "somalia", "south-africa", "south-sudan", "spain", "sri-lanka", "sudan", "suriname", "sweden", "switzerland", "syria", "tajikistan", "tanzania", "thailand", "the-bahamas", "the-gambia", "togo", "tonga", "trinidad-and-tobago", "tunisia", "turkey", "turkmenistan", "tuvalu", "uganda", "ukraine", "united-arab-emirates", "united-states", "uruguay", "uzbekistan", "vanuatu", "vatican-city", "venezuela", "vietnam", "yemen", "zambia", "zimbabwe" ] } }, "uk_market_conformity_assessment_body_type": { "type": "array", "items": { "type": "string", "enum": [ "approved-body", "recognised-third-party-organisation", "technical-assessment-body", "user-inspectorate", "third-country-body" ] } }, "uk_market_conformity_assessment_body_website": { "type": "string" }, "updated_at": { "type": "string" } } }, "update_type": { "enum": [ "major", "minor", "republish" ] }, "utaac_decision_metadata": { "type": "object", "additionalProperties": false, "properties": { "bulk_published": { "type": "boolean" }, "hidden_indexable_content": { "type": "string" }, "tribunal_decision_categories": { "type": "array", "items": { "type": "string" } }, "tribunal_decision_decision_date": { "type": "string", "pattern": "^[1-9][0-9]{3}-(0[1-9]|1[0-2])-(0[1-9]|[12][0-9]|3[0-1])$" }, "tribunal_decision_judges": { "type": "array", "items": { "type": "string" } }, "tribunal_decision_sub_categories": { "type": "array", "items": { "type": "string" } } } } } }
o21378
{ "properties": { "appflowlog": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "cip": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "cipheader": { "type": "string" }, "clmonowner": { "readonly": true, "type": "integer" }, "clmonview": { "readonly": true, "type": "integer" }, "clttimeout": { "type": "integer" }, "cnameentry": { "type": "string" }, "comment": { "type": "string" }, "cookietimeout": { "type": "integer" }, "downstateflush": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "glsbsvchealthdescr": { "readonly": true, "type": "string" }, "gslb": { "enum": [ "REMOTE", "LOCAL" ], "readonly": true, "type": "string" }, "gslbsvchealth": { "readonly": true, "type": "integer" }, "gslbsvcstats": { "readonly": true, "type": "integer" }, "gslbthreshold": { "readonly": true, "type": "integer" }, "hashid": { "type": "integer" }, "healthmonitor": { "enum": [ "YES", "NO" ], "type": "string" }, "ip": { "type": "string" }, "ipaddress": { "type": "string" }, "maxaaausers": { "type": "integer" }, "maxbandwidth": { "type": "integer" }, "maxclient": { "type": "integer" }, "monitor_name_svc": { "type": "string" }, "monitor_state": { "enum": [ "UP", "DOWN", "UNKNOWN", "BUSY", "OUT OF SERVICE", "GOING OUT OF SERVICE", "DOWN WHEN GOING OUT OF SERVICE", "NS_EMPTY_STR", "Unknown", "DISABLED" ], "readonly": true, "type": "string" }, "monstate": { "enum": [ "ENABLED", "DISABLED" ], "readonly": true, "type": "string" }, "monthreshold": { "type": "integer" }, "naptrdomainttl": { "type": "integer" }, "naptrorder": { "type": "integer" }, "naptrpreference": { "type": "integer" }, "naptrreplacement": { "type": "string" }, "naptrservices": { "type": "string" }, "newname": { "type": "string" }, "nodefaultbindings": { "enum": [ "YES", "NO" ], "readonly": true, "type": "string" }, "port": { "type": "integer" }, "preferredlocation": { "readonly": true, "type": "string" }, "publicip": { "type": "string" }, "publicport": { "type": "integer" }, "servername": { "type": "string" }, "servicename": { "type": "string" }, "servicetype": { "enum": [ "HTTP", "FTP", "TCP", "UDP", "SSL", "SSL_BRIDGE", "SSL_TCP", "NNTP", "ANY", "SIP_UDP", "SIP_TCP", "SIP_SSL", "RADIUS", "RDP", "RTSP", "MYSQL", "MSSQL", "ORACLE" ], "type": "string" }, "sitename": { "type": "string" }, "sitepersistence": { "enum": [ "ConnectionProxy", "HTTPRedirect", "NONE" ], "type": "string" }, "siteprefix": { "type": "string" }, "state": { "enum": [ "ENABLED", "DISABLED" ], "type": "string" }, "statechangetimesec": { "readonly": true, "type": "string" }, "svreffgslbstate": { "enum": [ "UP", "DOWN", "UNKNOWN", "BUSY", "OUT OF SERVICE", "GOING OUT OF SERVICE", "DOWN WHEN GOING OUT OF SERVICE", "NS_EMPTY_STR", "Unknown", "DISABLED" ], "readonly": true, "type": "string" }, "svrstate": { "enum": [ "UP", "DOWN", "UNKNOWN", "BUSY", "OUT OF SERVICE", "GOING OUT OF SERVICE", "DOWN WHEN GOING OUT OF SERVICE", "NS_EMPTY_STR", "Unknown", "DISABLED" ], "readonly": true, "type": "string" }, "svrtimeout": { "type": "integer" }, "threshold": { "enum": [ "ABOVE", "BELOW" ], "readonly": true, "type": "string" }, "tickssincelaststatechange": { "readonly": true, "type": "integer" }, "viewip": { "type": "string" }, "viewname": { "type": "string" }, "weight": { "type": "integer" } }, "title": "gslbservice", "type": "object" }
o30473
{ "definitions": { "io_k8s_api_admissionregistration_v1_MutatingWebhook": { "description": "MutatingWebhook describes an admission webhook and the resources and operations it applies to.", "properties": { "admissionReviewVersions": { "description": "AdmissionReviewVersions is an ordered list of preferred `AdmissionReview` versions the Webhook expects. API server will try to use first version in the list which it supports. If none of the versions specified in this list supported by API server, validation will fail for this object. If a persisted webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail and be subject to the failure policy.", "items": { "type": "string" }, "type": "array" }, "clientConfig": { "$ref": "#/definitions/io_k8s_api_admissionregistration_v1_WebhookClientConfig", "description": "ClientConfig defines how to communicate with the hook. Required" }, "failurePolicy": { "description": "FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Fail.", "type": "string" }, "matchPolicy": { "description": "matchPolicy defines how the \"rules\" list is used to match incoming requests. Allowed values are \"Exact\" or \"Equivalent\".\n\n- Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook.\n\n- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook.\n\nDefaults to \"Equivalent\"", "type": "string" }, "name": { "description": "The name of the admission webhook. Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where \"imagepolicy\" is the name of the webhook, and kubernetes.io is the name of the organization. Required.", "type": "string" }, "namespaceSelector": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "NamespaceSelector decides whether to run the webhook on an object based on whether the namespace for that object matches the selector. If the object itself is a namespace, the matching is performed on object.metadata.labels. If the object is another cluster scoped resource, it never skips the webhook.\n\nFor example, to run the webhook on any objects whose namespace is not associated with \"runlevel\" of \"0\" or \"1\"; you will set the selector as follows: \"namespaceSelector\": {\n \"matchExpressions\": [\n {\n \"key\": \"runlevel\",\n \"operator\": \"NotIn\",\n \"values\": [\n \"0\",\n \"1\"\n ]\n }\n ]\n}\n\nIf instead you want to only run the webhook on any objects whose namespace is associated with the \"environment\" of \"prod\" or \"staging\"; you will set the selector as follows: \"namespaceSelector\": {\n \"matchExpressions\": [\n {\n \"key\": \"environment\",\n \"operator\": \"In\",\n \"values\": [\n \"prod\",\n \"staging\"\n ]\n }\n ]\n}\n\nSee https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ for more examples of label selectors.\n\nDefault to the empty LabelSelector, which matches everything." }, "objectSelector": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "ObjectSelector decides whether to run the webhook based on if the object has matching labels. objectSelector is evaluated against both the oldObject and newObject that would be sent to the webhook, and is considered to match if either object matches the selector. A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match. Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels. Default to the empty LabelSelector, which matches everything." }, "reinvocationPolicy": { "description": "reinvocationPolicy indicates whether this webhook should be called multiple times as part of a single admission evaluation. Allowed values are \"Never\" and \"IfNeeded\".\n\nNever: the webhook will not be called more than once in a single admission evaluation.\n\nIfNeeded: the webhook will be called at least one additional time as part of the admission evaluation if the object being admitted is modified by other admission plugins after the initial webhook call. Webhooks that specify this option *must* be idempotent, able to process objects they previously admitted. Note: * the number of additional invocations is not guaranteed to be exactly one. * if additional invocations result in further modifications to the object, webhooks are not guaranteed to be invoked again. * webhooks that use this option may be reordered to minimize the number of additional invocations. * to validate an object after all mutations are guaranteed complete, use a validating admission webhook instead.\n\nDefaults to \"Never\".", "type": "string" }, "rules": { "description": "Rules describes what operations on what resources/subresources the webhook cares about. The webhook cares about an operation if it matches _any_ Rule. However, in order to prevent ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks from putting the cluster in a state which cannot be recovered from without completely disabling the plugin, ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks are never called on admission requests for ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects.", "items": { "$ref": "#/definitions/io_k8s_api_admissionregistration_v1_RuleWithOperations" }, "type": "array" }, "sideEffects": { "description": "SideEffects states whether this webhook has side effects. Acceptable values are: None, NoneOnDryRun (webhooks created via v1beta1 may also specify Some or Unknown). Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission change and the side effects therefore need to be undone. Requests with the dryRun attribute will be auto-rejected if they match a webhook with sideEffects == Unknown or Some.", "type": "string" }, "timeoutSeconds": { "_format": "int32", "description": "TimeoutSeconds specifies the timeout for this webhook. After the timeout passes, the webhook call will be ignored or the API call will fail based on the failure policy. The timeout value must be between 1 and 30 seconds. Default to 10 seconds.", "type": "integer" } }, "required": [ "name", "clientConfig", "sideEffects", "admissionReviewVersions" ], "type": "object" }, "io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration": { "description": "MutatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and may change the object.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "MutatingWebhookConfiguration" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata." }, "webhooks": { "description": "Webhooks is a list of webhooks and the affected resources and operations.", "items": { "$ref": "#/definitions/io_k8s_api_admissionregistration_v1_MutatingWebhook" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "admissionregistration.k8s.io", "kind": "MutatingWebhookConfiguration", "version": "v1" } ] }, "io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList": { "description": "MutatingWebhookConfigurationList is a list of MutatingWebhookConfiguration.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of MutatingWebhookConfiguration.", "items": { "$ref": "#/definitions/io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration" }, "type": "array" }, "kind": { "description": "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", "enum": [ "MutatingWebhookConfigurationList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "admissionregistration.k8s.io", "kind": "MutatingWebhookConfigurationList", "version": "v1" } ] }, "io_k8s_api_admissionregistration_v1_RuleWithOperations": { "description": "RuleWithOperations is a tuple of Operations and Resources. It is recommended to make sure that all the tuple expansions are valid.", "properties": { "apiGroups": { "description": "APIGroups is the API groups the resources belong to. '*' is all groups. If '*' is present, the length of the slice must be one. Required.", "items": { "type": "string" }, "type": "array" }, "apiVersions": { "description": "APIVersions is the API versions the resources belong to. '*' is all versions. If '*' is present, the length of the slice must be one. Required.", "items": { "type": "string" }, "type": "array" }, "operations": { "description": "Operations is the operations the admission hook cares about - CREATE, UPDATE, or * for all operations. If '*' is present, the length of the slice must be one. Required.", "items": { "type": "string" }, "type": "array" }, "resources": { "description": "Resources is a list of resources this rule applies to.\n\nFor example: 'pods' means pods. 'pods/log' means the log subresource of pods. '*' means all resources, but not subresources. 'pods/*' means all subresources of pods. '*/scale' means all scale subresources. '*/*' means all resources and their subresources.\n\nIf wildcard is present, the validation rule will ensure resources do not overlap with each other.\n\nDepending on the enclosing object, subresources might not be allowed. Required.", "items": { "type": "string" }, "type": "array" }, "scope": { "description": "scope specifies the scope of this rule. Valid values are \"Cluster\", \"Namespaced\", and \"*\" \"Cluster\" means that only cluster-scoped resources will match this rule. Namespace API objects are cluster-scoped. \"Namespaced\" means that only namespaced resources will match this rule. \"*\" means that there are no scope restrictions. Subresources match the scope of their parent resource. Default is \"*\".", "type": "string" } }, "type": "object" }, "io_k8s_api_admissionregistration_v1_ServiceReference": { "description": "ServiceReference holds a reference to Service.legacy.k8s.io", "properties": { "name": { "description": "`name` is the name of the service. Required", "type": "string" }, "namespace": { "description": "`namespace` is the namespace of the service. Required", "type": "string" }, "path": { "description": "`path` is an optional URL path which will be sent in any request to this service.", "type": "string" }, "port": { "_format": "int32", "description": "If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive).", "type": "integer" } }, "required": [ "namespace", "name" ], "type": "object" }, "io_k8s_api_admissionregistration_v1_ValidatingWebhook": { "description": "ValidatingWebhook describes an admission webhook and the resources and operations it applies to.", "properties": { "admissionReviewVersions": { "description": "AdmissionReviewVersions is an ordered list of preferred `AdmissionReview` versions the Webhook expects. API server will try to use first version in the list which it supports. If none of the versions specified in this list supported by API server, validation will fail for this object. If a persisted webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail and be subject to the failure policy.", "items": { "type": "string" }, "type": "array" }, "clientConfig": { "$ref": "#/definitions/io_k8s_api_admissionregistration_v1_WebhookClientConfig", "description": "ClientConfig defines how to communicate with the hook. Required" }, "failurePolicy": { "description": "FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Fail.", "type": "string" }, "matchPolicy": { "description": "matchPolicy defines how the \"rules\" list is used to match incoming requests. Allowed values are \"Exact\" or \"Equivalent\".\n\n- Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook.\n\n- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook.\n\nDefaults to \"Equivalent\"", "type": "string" }, "name": { "description": "The name of the admission webhook. Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where \"imagepolicy\" is the name of the webhook, and kubernetes.io is the name of the organization. Required.", "type": "string" }, "namespaceSelector": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "NamespaceSelector decides whether to run the webhook on an object based on whether the namespace for that object matches the selector. If the object itself is a namespace, the matching is performed on object.metadata.labels. If the object is another cluster scoped resource, it never skips the webhook.\n\nFor example, to run the webhook on any objects whose namespace is not associated with \"runlevel\" of \"0\" or \"1\"; you will set the selector as follows: \"namespaceSelector\": {\n \"matchExpressions\": [\n {\n \"key\": \"runlevel\",\n \"operator\": \"NotIn\",\n \"values\": [\n \"0\",\n \"1\"\n ]\n }\n ]\n}\n\nIf instead you want to only run the webhook on any objects whose namespace is associated with the \"environment\" of \"prod\" or \"staging\"; you will set the selector as follows: \"namespaceSelector\": {\n \"matchExpressions\": [\n {\n \"key\": \"environment\",\n \"operator\": \"In\",\n \"values\": [\n \"prod\",\n \"staging\"\n ]\n }\n ]\n}\n\nSee https://kubernetes.io/docs/concepts/overview/working-with-objects/labels for more examples of label selectors.\n\nDefault to the empty LabelSelector, which matches everything." }, "objectSelector": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "ObjectSelector decides whether to run the webhook based on if the object has matching labels. objectSelector is evaluated against both the oldObject and newObject that would be sent to the webhook, and is considered to match if either object matches the selector. A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match. Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels. Default to the empty LabelSelector, which matches everything." }, "rules": { "description": "Rules describes what operations on what resources/subresources the webhook cares about. The webhook cares about an operation if it matches _any_ Rule. However, in order to prevent ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks from putting the cluster in a state which cannot be recovered from without completely disabling the plugin, ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks are never called on admission requests for ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects.", "items": { "$ref": "#/definitions/io_k8s_api_admissionregistration_v1_RuleWithOperations" }, "type": "array" }, "sideEffects": { "description": "SideEffects states whether this webhook has side effects. Acceptable values are: None, NoneOnDryRun (webhooks created via v1beta1 may also specify Some or Unknown). Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission change and the side effects therefore need to be undone. Requests with the dryRun attribute will be auto-rejected if they match a webhook with sideEffects == Unknown or Some.", "type": "string" }, "timeoutSeconds": { "_format": "int32", "description": "TimeoutSeconds specifies the timeout for this webhook. After the timeout passes, the webhook call will be ignored or the API call will fail based on the failure policy. The timeout value must be between 1 and 30 seconds. Default to 10 seconds.", "type": "integer" } }, "required": [ "name", "clientConfig", "sideEffects", "admissionReviewVersions" ], "type": "object" }, "io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration": { "description": "ValidatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and object without changing it.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "ValidatingWebhookConfiguration" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata." }, "webhooks": { "description": "Webhooks is a list of webhooks and the affected resources and operations.", "items": { "$ref": "#/definitions/io_k8s_api_admissionregistration_v1_ValidatingWebhook" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "admissionregistration.k8s.io", "kind": "ValidatingWebhookConfiguration", "version": "v1" } ] }, "io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList": { "description": "ValidatingWebhookConfigurationList is a list of ValidatingWebhookConfiguration.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of ValidatingWebhookConfiguration.", "items": { "$ref": "#/definitions/io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration" }, "type": "array" }, "kind": { "description": "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", "enum": [ "ValidatingWebhookConfigurationList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "admissionregistration.k8s.io", "kind": "ValidatingWebhookConfigurationList", "version": "v1" } ] }, "io_k8s_api_admissionregistration_v1_WebhookClientConfig": { "description": "WebhookClientConfig contains the information to make a TLS connection with the webhook", "properties": { "caBundle": { "_format": "byte", "description": "`caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used.", "type": "string" }, "service": { "$ref": "#/definitions/io_k8s_api_admissionregistration_v1_ServiceReference", "description": "`service` is a reference to the service for this webhook. Either `service` or `url` must be specified.\n\nIf the webhook is running within the cluster, then you should use `service`." }, "url": { "description": "`url` gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified.\n\nThe `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address.\n\nPlease note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.\n\nThe scheme must be \"https\"; the URL must begin with \"https://\".\n\nA path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier.\n\nAttempting to use a user or basic auth e.g. \"user:password@\" is not allowed. Fragments (\"#...\") and query parameters (\"?...\") are not allowed, either.", "type": "string" } }, "type": "object" }, "io_k8s_api_admissionregistration_v1beta1_MutatingWebhook": { "description": "MutatingWebhook describes an admission webhook and the resources and operations it applies to.", "properties": { "admissionReviewVersions": { "description": "AdmissionReviewVersions is an ordered list of preferred `AdmissionReview` versions the Webhook expects. API server will try to use first version in the list which it supports. If none of the versions specified in this list supported by API server, validation will fail for this object. If a persisted webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail and be subject to the failure policy. Default to `['v1beta1']`.", "items": { "type": "string" }, "type": "array" }, "clientConfig": { "$ref": "#/definitions/io_k8s_api_admissionregistration_v1beta1_WebhookClientConfig", "description": "ClientConfig defines how to communicate with the hook. Required" }, "failurePolicy": { "description": "FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Ignore.", "type": "string" }, "matchPolicy": { "description": "matchPolicy defines how the \"rules\" list is used to match incoming requests. Allowed values are \"Exact\" or \"Equivalent\".\n\n- Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook.\n\n- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook.\n\nDefaults to \"Exact\"", "type": "string" }, "name": { "description": "The name of the admission webhook. Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where \"imagepolicy\" is the name of the webhook, and kubernetes.io is the name of the organization. Required.", "type": "string" }, "namespaceSelector": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "NamespaceSelector decides whether to run the webhook on an object based on whether the namespace for that object matches the selector. If the object itself is a namespace, the matching is performed on object.metadata.labels. If the object is another cluster scoped resource, it never skips the webhook.\n\nFor example, to run the webhook on any objects whose namespace is not associated with \"runlevel\" of \"0\" or \"1\"; you will set the selector as follows: \"namespaceSelector\": {\n \"matchExpressions\": [\n {\n \"key\": \"runlevel\",\n \"operator\": \"NotIn\",\n \"values\": [\n \"0\",\n \"1\"\n ]\n }\n ]\n}\n\nIf instead you want to only run the webhook on any objects whose namespace is associated with the \"environment\" of \"prod\" or \"staging\"; you will set the selector as follows: \"namespaceSelector\": {\n \"matchExpressions\": [\n {\n \"key\": \"environment\",\n \"operator\": \"In\",\n \"values\": [\n \"prod\",\n \"staging\"\n ]\n }\n ]\n}\n\nSee https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ for more examples of label selectors.\n\nDefault to the empty LabelSelector, which matches everything." }, "objectSelector": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "ObjectSelector decides whether to run the webhook based on if the object has matching labels. objectSelector is evaluated against both the oldObject and newObject that would be sent to the webhook, and is considered to match if either object matches the selector. A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match. Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels. Default to the empty LabelSelector, which matches everything." }, "reinvocationPolicy": { "description": "reinvocationPolicy indicates whether this webhook should be called multiple times as part of a single admission evaluation. Allowed values are \"Never\" and \"IfNeeded\".\n\nNever: the webhook will not be called more than once in a single admission evaluation.\n\nIfNeeded: the webhook will be called at least one additional time as part of the admission evaluation if the object being admitted is modified by other admission plugins after the initial webhook call. Webhooks that specify this option *must* be idempotent, able to process objects they previously admitted. Note: * the number of additional invocations is not guaranteed to be exactly one. * if additional invocations result in further modifications to the object, webhooks are not guaranteed to be invoked again. * webhooks that use this option may be reordered to minimize the number of additional invocations. * to validate an object after all mutations are guaranteed complete, use a validating admission webhook instead.\n\nDefaults to \"Never\".", "type": "string" }, "rules": { "description": "Rules describes what operations on what resources/subresources the webhook cares about. The webhook cares about an operation if it matches _any_ Rule. However, in order to prevent ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks from putting the cluster in a state which cannot be recovered from without completely disabling the plugin, ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks are never called on admission requests for ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects.", "items": { "$ref": "#/definitions/io_k8s_api_admissionregistration_v1beta1_RuleWithOperations" }, "type": "array" }, "sideEffects": { "description": "SideEffects states whether this webhook has side effects. Acceptable values are: Unknown, None, Some, NoneOnDryRun Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission change and the side effects therefore need to be undone. Requests with the dryRun attribute will be auto-rejected if they match a webhook with sideEffects == Unknown or Some. Defaults to Unknown.", "type": "string" }, "timeoutSeconds": { "_format": "int32", "description": "TimeoutSeconds specifies the timeout for this webhook. After the timeout passes, the webhook call will be ignored or the API call will fail based on the failure policy. The timeout value must be between 1 and 30 seconds. Default to 30 seconds.", "type": "integer" } }, "required": [ "name", "clientConfig" ], "type": "object" }, "io_k8s_api_admissionregistration_v1beta1_MutatingWebhookConfiguration": { "description": "MutatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and may change the object. Deprecated in v1.16, planned for removal in v1.19. Use admissionregistration.k8s.io/v1 MutatingWebhookConfiguration instead.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "MutatingWebhookConfiguration" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata." }, "webhooks": { "description": "Webhooks is a list of webhooks and the affected resources and operations.", "items": { "$ref": "#/definitions/io_k8s_api_admissionregistration_v1beta1_MutatingWebhook" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "admissionregistration.k8s.io", "kind": "MutatingWebhookConfiguration", "version": "v1beta1" } ] }, "io_k8s_api_admissionregistration_v1beta1_MutatingWebhookConfigurationList": { "description": "MutatingWebhookConfigurationList is a list of MutatingWebhookConfiguration.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of MutatingWebhookConfiguration.", "items": { "$ref": "#/definitions/io_k8s_api_admissionregistration_v1beta1_MutatingWebhookConfiguration" }, "type": "array" }, "kind": { "description": "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", "enum": [ "MutatingWebhookConfigurationList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "admissionregistration.k8s.io", "kind": "MutatingWebhookConfigurationList", "version": "v1beta1" } ] }, "io_k8s_api_admissionregistration_v1beta1_RuleWithOperations": { "description": "RuleWithOperations is a tuple of Operations and Resources. It is recommended to make sure that all the tuple expansions are valid.", "properties": { "apiGroups": { "description": "APIGroups is the API groups the resources belong to. '*' is all groups. If '*' is present, the length of the slice must be one. Required.", "items": { "type": "string" }, "type": "array" }, "apiVersions": { "description": "APIVersions is the API versions the resources belong to. '*' is all versions. If '*' is present, the length of the slice must be one. Required.", "items": { "type": "string" }, "type": "array" }, "operations": { "description": "Operations is the operations the admission hook cares about - CREATE, UPDATE, or * for all operations. If '*' is present, the length of the slice must be one. Required.", "items": { "type": "string" }, "type": "array" }, "resources": { "description": "Resources is a list of resources this rule applies to.\n\nFor example: 'pods' means pods. 'pods/log' means the log subresource of pods. '*' means all resources, but not subresources. 'pods/*' means all subresources of pods. '*/scale' means all scale subresources. '*/*' means all resources and their subresources.\n\nIf wildcard is present, the validation rule will ensure resources do not overlap with each other.\n\nDepending on the enclosing object, subresources might not be allowed. Required.", "items": { "type": "string" }, "type": "array" }, "scope": { "description": "scope specifies the scope of this rule. Valid values are \"Cluster\", \"Namespaced\", and \"*\" \"Cluster\" means that only cluster-scoped resources will match this rule. Namespace API objects are cluster-scoped. \"Namespaced\" means that only namespaced resources will match this rule. \"*\" means that there are no scope restrictions. Subresources match the scope of their parent resource. Default is \"*\".", "type": "string" } }, "type": "object" }, "io_k8s_api_admissionregistration_v1beta1_ServiceReference": { "description": "ServiceReference holds a reference to Service.legacy.k8s.io", "properties": { "name": { "description": "`name` is the name of the service. Required", "type": "string" }, "namespace": { "description": "`namespace` is the namespace of the service. Required", "type": "string" }, "path": { "description": "`path` is an optional URL path which will be sent in any request to this service.", "type": "string" }, "port": { "_format": "int32", "description": "If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive).", "type": "integer" } }, "required": [ "namespace", "name" ], "type": "object" }, "io_k8s_api_admissionregistration_v1beta1_ValidatingWebhook": { "description": "ValidatingWebhook describes an admission webhook and the resources and operations it applies to.", "properties": { "admissionReviewVersions": { "description": "AdmissionReviewVersions is an ordered list of preferred `AdmissionReview` versions the Webhook expects. API server will try to use first version in the list which it supports. If none of the versions specified in this list supported by API server, validation will fail for this object. If a persisted webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail and be subject to the failure policy. Default to `['v1beta1']`.", "items": { "type": "string" }, "type": "array" }, "clientConfig": { "$ref": "#/definitions/io_k8s_api_admissionregistration_v1beta1_WebhookClientConfig", "description": "ClientConfig defines how to communicate with the hook. Required" }, "failurePolicy": { "description": "FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Ignore.", "type": "string" }, "matchPolicy": { "description": "matchPolicy defines how the \"rules\" list is used to match incoming requests. Allowed values are \"Exact\" or \"Equivalent\".\n\n- Exact: match a request only if it exactly matches a specified rule. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook.\n\n- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version. For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and \"rules\" only included `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]`, a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook.\n\nDefaults to \"Exact\"", "type": "string" }, "name": { "description": "The name of the admission webhook. Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where \"imagepolicy\" is the name of the webhook, and kubernetes.io is the name of the organization. Required.", "type": "string" }, "namespaceSelector": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "NamespaceSelector decides whether to run the webhook on an object based on whether the namespace for that object matches the selector. If the object itself is a namespace, the matching is performed on object.metadata.labels. If the object is another cluster scoped resource, it never skips the webhook.\n\nFor example, to run the webhook on any objects whose namespace is not associated with \"runlevel\" of \"0\" or \"1\"; you will set the selector as follows: \"namespaceSelector\": {\n \"matchExpressions\": [\n {\n \"key\": \"runlevel\",\n \"operator\": \"NotIn\",\n \"values\": [\n \"0\",\n \"1\"\n ]\n }\n ]\n}\n\nIf instead you want to only run the webhook on any objects whose namespace is associated with the \"environment\" of \"prod\" or \"staging\"; you will set the selector as follows: \"namespaceSelector\": {\n \"matchExpressions\": [\n {\n \"key\": \"environment\",\n \"operator\": \"In\",\n \"values\": [\n \"prod\",\n \"staging\"\n ]\n }\n ]\n}\n\nSee https://kubernetes.io/docs/concepts/overview/working-with-objects/labels for more examples of label selectors.\n\nDefault to the empty LabelSelector, which matches everything." }, "objectSelector": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "ObjectSelector decides whether to run the webhook based on if the object has matching labels. objectSelector is evaluated against both the oldObject and newObject that would be sent to the webhook, and is considered to match if either object matches the selector. A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match. Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels. Default to the empty LabelSelector, which matches everything." }, "rules": { "description": "Rules describes what operations on what resources/subresources the webhook cares about. The webhook cares about an operation if it matches _any_ Rule. However, in order to prevent ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks from putting the cluster in a state which cannot be recovered from without completely disabling the plugin, ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks are never called on admission requests for ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects.", "items": { "$ref": "#/definitions/io_k8s_api_admissionregistration_v1beta1_RuleWithOperations" }, "type": "array" }, "sideEffects": { "description": "SideEffects states whether this webhook has side effects. Acceptable values are: Unknown, None, Some, NoneOnDryRun Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission change and the side effects therefore need to be undone. Requests with the dryRun attribute will be auto-rejected if they match a webhook with sideEffects == Unknown or Some. Defaults to Unknown.", "type": "string" }, "timeoutSeconds": { "_format": "int32", "description": "TimeoutSeconds specifies the timeout for this webhook. After the timeout passes, the webhook call will be ignored or the API call will fail based on the failure policy. The timeout value must be between 1 and 30 seconds. Default to 30 seconds.", "type": "integer" } }, "required": [ "name", "clientConfig" ], "type": "object" }, "io_k8s_api_admissionregistration_v1beta1_ValidatingWebhookConfiguration": { "description": "ValidatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and object without changing it. Deprecated in v1.16, planned for removal in v1.19. Use admissionregistration.k8s.io/v1 ValidatingWebhookConfiguration instead.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "ValidatingWebhookConfiguration" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata." }, "webhooks": { "description": "Webhooks is a list of webhooks and the affected resources and operations.", "items": { "$ref": "#/definitions/io_k8s_api_admissionregistration_v1beta1_ValidatingWebhook" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "admissionregistration.k8s.io", "kind": "ValidatingWebhookConfiguration", "version": "v1beta1" } ] }, "io_k8s_api_admissionregistration_v1beta1_ValidatingWebhookConfigurationList": { "description": "ValidatingWebhookConfigurationList is a list of ValidatingWebhookConfiguration.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of ValidatingWebhookConfiguration.", "items": { "$ref": "#/definitions/io_k8s_api_admissionregistration_v1beta1_ValidatingWebhookConfiguration" }, "type": "array" }, "kind": { "description": "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", "enum": [ "ValidatingWebhookConfigurationList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "admissionregistration.k8s.io", "kind": "ValidatingWebhookConfigurationList", "version": "v1beta1" } ] }, "io_k8s_api_admissionregistration_v1beta1_WebhookClientConfig": { "description": "WebhookClientConfig contains the information to make a TLS connection with the webhook", "properties": { "caBundle": { "_format": "byte", "description": "`caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used.", "type": "string" }, "service": { "$ref": "#/definitions/io_k8s_api_admissionregistration_v1beta1_ServiceReference", "description": "`service` is a reference to the service for this webhook. Either `service` or `url` must be specified.\n\nIf the webhook is running within the cluster, then you should use `service`." }, "url": { "description": "`url` gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified.\n\nThe `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address.\n\nPlease note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.\n\nThe scheme must be \"https\"; the URL must begin with \"https://\".\n\nA path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier.\n\nAttempting to use a user or basic auth e.g. \"user:password@\" is not allowed. Fragments (\"#...\") and query parameters (\"?...\") are not allowed, either.", "type": "string" } }, "type": "object" }, "io_k8s_api_apps_v1_ControllerRevision": { "description": "ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "data": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_runtime_RawExtension", "description": "Data is the serialized representation of the state." }, "kind": { "description": "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", "enum": [ "ControllerRevision" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "revision": { "_format": "int64", "description": "Revision indicates the revision of the state represented by Data.", "type": "integer" } }, "required": [ "revision" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "apps", "kind": "ControllerRevision", "version": "v1" } ] }, "io_k8s_api_apps_v1_ControllerRevisionList": { "description": "ControllerRevisionList is a resource containing a list of ControllerRevision objects.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "Items is the list of ControllerRevisions", "items": { "$ref": "#/definitions/io_k8s_api_apps_v1_ControllerRevision" }, "type": "array" }, "kind": { "description": "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", "enum": [ "ControllerRevisionList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "apps", "kind": "ControllerRevisionList", "version": "v1" } ] }, "io_k8s_api_apps_v1_DaemonSet": { "description": "DaemonSet represents the configuration of a daemon set.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "DaemonSet" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/io_k8s_api_apps_v1_DaemonSetSpec", "description": "The desired behavior of this daemon set. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" }, "status": { "$ref": "#/definitions/io_k8s_api_apps_v1_DaemonSetStatus", "description": "The current status of this daemon set. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "apps", "kind": "DaemonSet", "version": "v1" } ] }, "io_k8s_api_apps_v1_DaemonSetCondition": { "description": "DaemonSetCondition describes the state of a DaemonSet at a certain point.", "properties": { "lastTransitionTime": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Last time the condition transitioned from one status to another." }, "message": { "description": "A human readable message indicating details about the transition.", "type": "string" }, "reason": { "description": "The reason for the condition's last transition.", "type": "string" }, "status": { "description": "Status of the condition, one of True, False, Unknown.", "type": "string" }, "type": { "description": "Type of DaemonSet condition.", "type": "string" } }, "required": [ "type", "status" ], "type": "object" }, "io_k8s_api_apps_v1_DaemonSetList": { "description": "DaemonSetList is a collection of daemon sets.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "A list of daemon sets.", "items": { "$ref": "#/definitions/io_k8s_api_apps_v1_DaemonSet" }, "type": "array" }, "kind": { "description": "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", "enum": [ "DaemonSetList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "apps", "kind": "DaemonSetList", "version": "v1" } ] }, "io_k8s_api_apps_v1_DaemonSetSpec": { "description": "DaemonSetSpec is the specification of a daemon set.", "properties": { "minReadySeconds": { "_format": "int32", "description": "The minimum number of seconds for which a newly created DaemonSet pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready).", "type": "integer" }, "revisionHistoryLimit": { "_format": "int32", "description": "The number of old history to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.", "type": "integer" }, "selector": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "A label query over pods that are managed by the daemon set. Must match in order to be controlled. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors" }, "template": { "$ref": "#/definitions/io_k8s_api_core_v1_PodTemplateSpec", "description": "An object that describes the pod that will be created. The DaemonSet will create exactly one copy of this pod on every node that matches the template's node selector (or on every node if no node selector is specified). More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template" }, "updateStrategy": { "$ref": "#/definitions/io_k8s_api_apps_v1_DaemonSetUpdateStrategy", "description": "An update strategy to replace existing DaemonSet pods with new pods." } }, "required": [ "selector", "template" ], "type": "object" }, "io_k8s_api_apps_v1_DaemonSetStatus": { "description": "DaemonSetStatus represents the current status of a daemon set.", "properties": { "collisionCount": { "_format": "int32", "description": "Count of hash collisions for the DaemonSet. The DaemonSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.", "type": "integer" }, "conditions": { "description": "Represents the latest available observations of a DaemonSet's current state.", "items": { "$ref": "#/definitions/io_k8s_api_apps_v1_DaemonSetCondition" }, "type": "array", "x-kubernetes-patch-merge-key": "type", "x-kubernetes-patch-strategy": "merge" }, "currentNumberScheduled": { "_format": "int32", "description": "The number of nodes that are running at least 1 daemon pod and are supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/", "type": "integer" }, "desiredNumberScheduled": { "_format": "int32", "description": "The total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod). More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/", "type": "integer" }, "numberAvailable": { "_format": "int32", "description": "The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and available (ready for at least spec.minReadySeconds)", "type": "integer" }, "numberMisscheduled": { "_format": "int32", "description": "The number of nodes that are running the daemon pod, but are not supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/", "type": "integer" }, "numberReady": { "_format": "int32", "description": "The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and ready.", "type": "integer" }, "numberUnavailable": { "_format": "int32", "description": "The number of nodes that should be running the daemon pod and have none of the daemon pod running and available (ready for at least spec.minReadySeconds)", "type": "integer" }, "observedGeneration": { "_format": "int64", "description": "The most recent generation observed by the daemon set controller.", "type": "integer" }, "updatedNumberScheduled": { "_format": "int32", "description": "The total number of nodes that are running updated daemon pod", "type": "integer" } }, "required": [ "currentNumberScheduled", "numberMisscheduled", "desiredNumberScheduled", "numberReady" ], "type": "object" }, "io_k8s_api_apps_v1_DaemonSetUpdateStrategy": { "description": "DaemonSetUpdateStrategy is a struct used to control the update strategy for a DaemonSet.", "properties": { "rollingUpdate": { "$ref": "#/definitions/io_k8s_api_apps_v1_RollingUpdateDaemonSet", "description": "Rolling update config params. Present only if type = \"RollingUpdate\"." }, "type": { "description": "Type of daemon set update. Can be \"RollingUpdate\" or \"OnDelete\". Default is RollingUpdate.", "type": "string" } }, "type": "object" }, "io_k8s_api_apps_v1_Deployment": { "description": "Deployment enables declarative updates for Pods and ReplicaSets.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "Deployment" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object metadata." }, "spec": { "$ref": "#/definitions/io_k8s_api_apps_v1_DeploymentSpec", "description": "Specification of the desired behavior of the Deployment." }, "status": { "$ref": "#/definitions/io_k8s_api_apps_v1_DeploymentStatus", "description": "Most recently observed status of the Deployment." } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "apps", "kind": "Deployment", "version": "v1" } ] }, "io_k8s_api_apps_v1_DeploymentCondition": { "description": "DeploymentCondition describes the state of a deployment at a certain point.", "properties": { "lastTransitionTime": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Last time the condition transitioned from one status to another." }, "lastUpdateTime": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "The last time this condition was updated." }, "message": { "description": "A human readable message indicating details about the transition.", "type": "string" }, "reason": { "description": "The reason for the condition's last transition.", "type": "string" }, "status": { "description": "Status of the condition, one of True, False, Unknown.", "type": "string" }, "type": { "description": "Type of deployment condition.", "type": "string" } }, "required": [ "type", "status" ], "type": "object" }, "io_k8s_api_apps_v1_DeploymentList": { "description": "DeploymentList is a list of Deployments.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "Items is the list of Deployments.", "items": { "$ref": "#/definitions/io_k8s_api_apps_v1_Deployment" }, "type": "array" }, "kind": { "description": "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", "enum": [ "DeploymentList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata." } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "apps", "kind": "DeploymentList", "version": "v1" } ] }, "io_k8s_api_apps_v1_DeploymentSpec": { "description": "DeploymentSpec is the specification of the desired behavior of the Deployment.", "properties": { "minReadySeconds": { "_format": "int32", "description": "Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)", "type": "integer" }, "paused": { "description": "Indicates that the deployment is paused.", "type": "boolean" }, "progressDeadlineSeconds": { "_format": "int32", "description": "The maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Note that progress will not be estimated during the time a deployment is paused. Defaults to 600s.", "type": "integer" }, "replicas": { "_format": "int32", "description": "Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.", "type": "integer" }, "revisionHistoryLimit": { "_format": "int32", "description": "The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.", "type": "integer" }, "selector": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment. It must match the pod template's labels." }, "strategy": { "$ref": "#/definitions/io_k8s_api_apps_v1_DeploymentStrategy", "description": "The deployment strategy to use to replace existing pods with new ones.", "x-kubernetes-patch-strategy": "retainKeys" }, "template": { "$ref": "#/definitions/io_k8s_api_core_v1_PodTemplateSpec", "description": "Template describes the pods that will be created." } }, "required": [ "selector", "template" ], "type": "object" }, "io_k8s_api_apps_v1_DeploymentStatus": { "description": "DeploymentStatus is the most recently observed status of the Deployment.", "properties": { "availableReplicas": { "_format": "int32", "description": "Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.", "type": "integer" }, "collisionCount": { "_format": "int32", "description": "Count of hash collisions for the Deployment. The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet.", "type": "integer" }, "conditions": { "description": "Represents the latest available observations of a deployment's current state.", "items": { "$ref": "#/definitions/io_k8s_api_apps_v1_DeploymentCondition" }, "type": "array", "x-kubernetes-patch-merge-key": "type", "x-kubernetes-patch-strategy": "merge" }, "observedGeneration": { "_format": "int64", "description": "The generation observed by the deployment controller.", "type": "integer" }, "readyReplicas": { "_format": "int32", "description": "Total number of ready pods targeted by this deployment.", "type": "integer" }, "replicas": { "_format": "int32", "description": "Total number of non-terminated pods targeted by this deployment (their labels match the selector).", "type": "integer" }, "unavailableReplicas": { "_format": "int32", "description": "Total number of unavailable pods targeted by this deployment. This is the total number of pods that are still required for the deployment to have 100% available capacity. They may either be pods that are running but not yet available or pods that still have not been created.", "type": "integer" }, "updatedReplicas": { "_format": "int32", "description": "Total number of non-terminated pods targeted by this deployment that have the desired template spec.", "type": "integer" } }, "type": "object" }, "io_k8s_api_apps_v1_DeploymentStrategy": { "description": "DeploymentStrategy describes how to replace existing pods with new ones.", "properties": { "rollingUpdate": { "$ref": "#/definitions/io_k8s_api_apps_v1_RollingUpdateDeployment", "description": "Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate." }, "type": { "description": "Type of deployment. Can be \"Recreate\" or \"RollingUpdate\". Default is RollingUpdate.", "type": "string" } }, "type": "object" }, "io_k8s_api_apps_v1_ReplicaSet": { "description": "ReplicaSet ensures that a specified number of pod replicas are running at any given time.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "ReplicaSet" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "If the Labels of a ReplicaSet are empty, they are defaulted to be the same as the Pod(s) that the ReplicaSet manages. Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/io_k8s_api_apps_v1_ReplicaSetSpec", "description": "Spec defines the specification of the desired behavior of the ReplicaSet. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" }, "status": { "$ref": "#/definitions/io_k8s_api_apps_v1_ReplicaSetStatus", "description": "Status is the most recently observed status of the ReplicaSet. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "apps", "kind": "ReplicaSet", "version": "v1" } ] }, "io_k8s_api_apps_v1_ReplicaSetCondition": { "description": "ReplicaSetCondition describes the state of a replica set at a certain point.", "properties": { "lastTransitionTime": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "The last time the condition transitioned from one status to another." }, "message": { "description": "A human readable message indicating details about the transition.", "type": "string" }, "reason": { "description": "The reason for the condition's last transition.", "type": "string" }, "status": { "description": "Status of the condition, one of True, False, Unknown.", "type": "string" }, "type": { "description": "Type of replica set condition.", "type": "string" } }, "required": [ "type", "status" ], "type": "object" }, "io_k8s_api_apps_v1_ReplicaSetList": { "description": "ReplicaSetList is a collection of ReplicaSets.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of ReplicaSets. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller", "items": { "$ref": "#/definitions/io_k8s_api_apps_v1_ReplicaSet" }, "type": "array" }, "kind": { "description": "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", "enum": [ "ReplicaSetList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "apps", "kind": "ReplicaSetList", "version": "v1" } ] }, "io_k8s_api_apps_v1_ReplicaSetSpec": { "description": "ReplicaSetSpec is the specification of a ReplicaSet.", "properties": { "minReadySeconds": { "_format": "int32", "description": "Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)", "type": "integer" }, "replicas": { "_format": "int32", "description": "Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller", "type": "integer" }, "selector": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "Selector is a label query over pods that should match the replica count. Label keys and values that must match in order to be controlled by this replica set. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors" }, "template": { "$ref": "#/definitions/io_k8s_api_core_v1_PodTemplateSpec", "description": "Template is the object that describes the pod that will be created if insufficient replicas are detected. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template" } }, "required": [ "selector" ], "type": "object" }, "io_k8s_api_apps_v1_ReplicaSetStatus": { "description": "ReplicaSetStatus represents the current status of a ReplicaSet.", "properties": { "availableReplicas": { "_format": "int32", "description": "The number of available replicas (ready for at least minReadySeconds) for this replica set.", "type": "integer" }, "conditions": { "description": "Represents the latest available observations of a replica set's current state.", "items": { "$ref": "#/definitions/io_k8s_api_apps_v1_ReplicaSetCondition" }, "type": "array", "x-kubernetes-patch-merge-key": "type", "x-kubernetes-patch-strategy": "merge" }, "fullyLabeledReplicas": { "_format": "int32", "description": "The number of pods that have labels matching the labels of the pod template of the replicaset.", "type": "integer" }, "observedGeneration": { "_format": "int64", "description": "ObservedGeneration reflects the generation of the most recently observed ReplicaSet.", "type": "integer" }, "readyReplicas": { "_format": "int32", "description": "The number of ready replicas for this replica set.", "type": "integer" }, "replicas": { "_format": "int32", "description": "Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller", "type": "integer" } }, "required": [ "replicas" ], "type": "object" }, "io_k8s_api_apps_v1_RollingUpdateDaemonSet": { "description": "Spec to control the desired behavior of daemon set rolling update.", "properties": { "maxUnavailable": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_util_intstr_IntOrString", "description": "The maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0. Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their pods stopped for an update at any given time. The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update." } }, "type": "object" }, "io_k8s_api_apps_v1_RollingUpdateDeployment": { "description": "Spec to control the desired behavior of rolling update.", "properties": { "maxSurge": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_util_intstr_IntOrString", "description": "The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. Defaults to 25%. Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new ReplicaSet can be scaled up further, ensuring that total number of pods running at any time during the update is at most 130% of desired pods." }, "maxUnavailable": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_util_intstr_IntOrString", "description": "The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. Defaults to 25%. Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old ReplicaSet can be scaled down further, followed by scaling up the new ReplicaSet, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods." } }, "type": "object" }, "io_k8s_api_apps_v1_RollingUpdateStatefulSetStrategy": { "description": "RollingUpdateStatefulSetStrategy is used to communicate parameter for RollingUpdateStatefulSetStrategyType.", "properties": { "partition": { "_format": "int32", "description": "Partition indicates the ordinal at which the StatefulSet should be partitioned. Default value is 0.", "type": "integer" } }, "type": "object" }, "io_k8s_api_apps_v1_StatefulSet": { "description": "StatefulSet represents a set of pods with consistent identities. Identities are defined as:\n - Network: A single stable DNS and hostname.\n - Storage: As many VolumeClaims as requested.\nThe StatefulSet guarantees that a given network identity will always map to the same storage identity.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "StatefulSet" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta" }, "spec": { "$ref": "#/definitions/io_k8s_api_apps_v1_StatefulSetSpec", "description": "Spec defines the desired identities of pods in this set." }, "status": { "$ref": "#/definitions/io_k8s_api_apps_v1_StatefulSetStatus", "description": "Status is the current status of Pods in this StatefulSet. This data may be out of date by some window of time." } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "apps", "kind": "StatefulSet", "version": "v1" } ] }, "io_k8s_api_apps_v1_StatefulSetCondition": { "description": "StatefulSetCondition describes the state of a statefulset at a certain point.", "properties": { "lastTransitionTime": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Last time the condition transitioned from one status to another." }, "message": { "description": "A human readable message indicating details about the transition.", "type": "string" }, "reason": { "description": "The reason for the condition's last transition.", "type": "string" }, "status": { "description": "Status of the condition, one of True, False, Unknown.", "type": "string" }, "type": { "description": "Type of statefulset condition.", "type": "string" } }, "required": [ "type", "status" ], "type": "object" }, "io_k8s_api_apps_v1_StatefulSetList": { "description": "StatefulSetList is a collection of StatefulSets.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "items": { "$ref": "#/definitions/io_k8s_api_apps_v1_StatefulSet" }, "type": "array" }, "kind": { "description": "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", "enum": [ "StatefulSetList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "apps", "kind": "StatefulSetList", "version": "v1" } ] }, "io_k8s_api_apps_v1_StatefulSetSpec": { "description": "A StatefulSetSpec is the specification of a StatefulSet.", "properties": { "podManagementPolicy": { "description": "podManagementPolicy controls how pods are created during initial scale up, when replacing pods on nodes, or when scaling down. The default policy is `OrderedReady`, where pods are created in increasing order (pod-0, then pod-1, etc) and the controller will wait until each pod is ready before continuing. When scaling down, the pods are removed in the opposite order. The alternative policy is `Parallel` which will create pods in parallel to match the desired scale without waiting, and on scale down will delete all pods at once.", "type": "string" }, "replicas": { "_format": "int32", "description": "replicas is the desired number of replicas of the given Template. These are replicas in the sense that they are instantiations of the same Template, but individual replicas also have a consistent identity. If unspecified, defaults to 1.", "type": "integer" }, "revisionHistoryLimit": { "_format": "int32", "description": "revisionHistoryLimit is the maximum number of revisions that will be maintained in the StatefulSet's revision history. The revision history consists of all revisions not represented by a currently applied StatefulSetSpec version. The default value is 10.", "type": "integer" }, "selector": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "selector is a label query over pods that should match the replica count. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors" }, "serviceName": { "description": "serviceName is the name of the service that governs this StatefulSet. This service must exist before the StatefulSet, and is responsible for the network identity of the set. Pods get DNS/hostnames that follow the pattern: pod-specific-string.serviceName.default.svc.cluster.local where \"pod-specific-string\" is managed by the StatefulSet controller.", "type": "string" }, "template": { "$ref": "#/definitions/io_k8s_api_core_v1_PodTemplateSpec", "description": "template is the object that describes the pod that will be created if insufficient replicas are detected. Each pod stamped out by the StatefulSet will fulfill this Template, but have a unique identity from the rest of the StatefulSet." }, "updateStrategy": { "$ref": "#/definitions/io_k8s_api_apps_v1_StatefulSetUpdateStrategy", "description": "updateStrategy indicates the StatefulSetUpdateStrategy that will be employed to update Pods in the StatefulSet when a revision is made to Template." }, "volumeClaimTemplates": { "description": "volumeClaimTemplates is a list of claims that pods are allowed to reference. The StatefulSet controller is responsible for mapping network identities to claims in a way that maintains the identity of a pod. Every claim in this list must have at least one matching (by name) volumeMount in one container in the template. A claim in this list takes precedence over any volumes in the template, with the same name.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_PersistentVolumeClaim" }, "type": "array" } }, "required": [ "selector", "template", "serviceName" ], "type": "object" }, "io_k8s_api_apps_v1_StatefulSetStatus": { "description": "StatefulSetStatus represents the current state of a StatefulSet.", "properties": { "collisionCount": { "_format": "int32", "description": "collisionCount is the count of hash collisions for the StatefulSet. The StatefulSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.", "type": "integer" }, "conditions": { "description": "Represents the latest available observations of a statefulset's current state.", "items": { "$ref": "#/definitions/io_k8s_api_apps_v1_StatefulSetCondition" }, "type": "array", "x-kubernetes-patch-merge-key": "type", "x-kubernetes-patch-strategy": "merge" }, "currentReplicas": { "_format": "int32", "description": "currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by currentRevision.", "type": "integer" }, "currentRevision": { "description": "currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [0,currentReplicas).", "type": "string" }, "observedGeneration": { "_format": "int64", "description": "observedGeneration is the most recent generation observed for this StatefulSet. It corresponds to the StatefulSet's generation, which is updated on mutation by the API Server.", "type": "integer" }, "readyReplicas": { "_format": "int32", "description": "readyReplicas is the number of Pods created by the StatefulSet controller that have a Ready Condition.", "type": "integer" }, "replicas": { "_format": "int32", "description": "replicas is the number of Pods created by the StatefulSet controller.", "type": "integer" }, "updateRevision": { "description": "updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [replicas-updatedReplicas,replicas)", "type": "string" }, "updatedReplicas": { "_format": "int32", "description": "updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by updateRevision.", "type": "integer" } }, "required": [ "replicas" ], "type": "object" }, "io_k8s_api_apps_v1_StatefulSetUpdateStrategy": { "description": "StatefulSetUpdateStrategy indicates the strategy that the StatefulSet controller will use to perform updates. It includes any additional parameters necessary to perform the update for the indicated strategy.", "properties": { "rollingUpdate": { "$ref": "#/definitions/io_k8s_api_apps_v1_RollingUpdateStatefulSetStrategy", "description": "RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType." }, "type": { "description": "Type indicates the type of the StatefulSetUpdateStrategy. Default is RollingUpdate.", "type": "string" } }, "type": "object" }, "io_k8s_api_auditregistration_v1alpha1_AuditSink": { "description": "AuditSink represents a cluster level audit sink", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "AuditSink" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta" }, "spec": { "$ref": "#/definitions/io_k8s_api_auditregistration_v1alpha1_AuditSinkSpec", "description": "Spec defines the audit configuration spec" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "auditregistration.k8s.io", "kind": "AuditSink", "version": "v1alpha1" } ] }, "io_k8s_api_auditregistration_v1alpha1_AuditSinkList": { "description": "AuditSinkList is a list of AuditSink items.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of audit configurations.", "items": { "$ref": "#/definitions/io_k8s_api_auditregistration_v1alpha1_AuditSink" }, "type": "array" }, "kind": { "description": "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", "enum": [ "AuditSinkList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "auditregistration.k8s.io", "kind": "AuditSinkList", "version": "v1alpha1" } ] }, "io_k8s_api_auditregistration_v1alpha1_AuditSinkSpec": { "description": "AuditSinkSpec holds the spec for the audit sink", "properties": { "policy": { "$ref": "#/definitions/io_k8s_api_auditregistration_v1alpha1_Policy", "description": "Policy defines the policy for selecting which events should be sent to the webhook required" }, "webhook": { "$ref": "#/definitions/io_k8s_api_auditregistration_v1alpha1_Webhook", "description": "Webhook to send events required" } }, "required": [ "policy", "webhook" ], "type": "object" }, "io_k8s_api_auditregistration_v1alpha1_Policy": { "description": "Policy defines the configuration of how audit events are logged", "properties": { "level": { "description": "The Level that all requests are recorded at. available options: None, Metadata, Request, RequestResponse required", "type": "string" }, "stages": { "description": "Stages is a list of stages for which events are created.", "items": { "type": "string" }, "type": "array" } }, "required": [ "level" ], "type": "object" }, "io_k8s_api_auditregistration_v1alpha1_ServiceReference": { "description": "ServiceReference holds a reference to Service.legacy.k8s.io", "properties": { "name": { "description": "`name` is the name of the service. Required", "type": "string" }, "namespace": { "description": "`namespace` is the namespace of the service. Required", "type": "string" }, "path": { "description": "`path` is an optional URL path which will be sent in any request to this service.", "type": "string" }, "port": { "_format": "int32", "description": "If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive).", "type": "integer" } }, "required": [ "namespace", "name" ], "type": "object" }, "io_k8s_api_auditregistration_v1alpha1_Webhook": { "description": "Webhook holds the configuration of the webhook", "properties": { "clientConfig": { "$ref": "#/definitions/io_k8s_api_auditregistration_v1alpha1_WebhookClientConfig", "description": "ClientConfig holds the connection parameters for the webhook required" }, "throttle": { "$ref": "#/definitions/io_k8s_api_auditregistration_v1alpha1_WebhookThrottleConfig", "description": "Throttle holds the options for throttling the webhook" } }, "required": [ "clientConfig" ], "type": "object" }, "io_k8s_api_auditregistration_v1alpha1_WebhookClientConfig": { "description": "WebhookClientConfig contains the information to make a connection with the webhook", "properties": { "caBundle": { "_format": "byte", "description": "`caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used.", "type": "string" }, "service": { "$ref": "#/definitions/io_k8s_api_auditregistration_v1alpha1_ServiceReference", "description": "`service` is a reference to the service for this webhook. Either `service` or `url` must be specified.\n\nIf the webhook is running within the cluster, then you should use `service`." }, "url": { "description": "`url` gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified.\n\nThe `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address.\n\nPlease note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.\n\nThe scheme must be \"https\"; the URL must begin with \"https://\".\n\nA path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier.\n\nAttempting to use a user or basic auth e.g. \"user:password@\" is not allowed. Fragments (\"#...\") and query parameters (\"?...\") are not allowed, either.", "type": "string" } }, "type": "object" }, "io_k8s_api_auditregistration_v1alpha1_WebhookThrottleConfig": { "description": "WebhookThrottleConfig holds the configuration for throttling events", "properties": { "burst": { "_format": "int64", "description": "ThrottleBurst is the maximum number of events sent at the same moment default 15 QPS", "type": "integer" }, "qps": { "_format": "int64", "description": "ThrottleQPS maximum number of batches per second default 10 QPS", "type": "integer" } }, "type": "object" }, "io_k8s_api_authentication_v1_BoundObjectReference": { "description": "BoundObjectReference is a reference to an object that a token is bound to.", "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "kind": { "description": "Kind of the referent. Valid kinds are 'Pod' and 'Secret'.", "type": "string" }, "name": { "description": "Name of the referent.", "type": "string" }, "uid": { "description": "UID of the referent.", "type": "string" } }, "type": "object" }, "io_k8s_api_authentication_v1_TokenRequest": { "description": "TokenRequest requests a token for a given service account.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "TokenRequest" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta" }, "spec": { "$ref": "#/definitions/io_k8s_api_authentication_v1_TokenRequestSpec" }, "status": { "$ref": "#/definitions/io_k8s_api_authentication_v1_TokenRequestStatus" } }, "required": [ "spec" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "authentication.k8s.io", "kind": "TokenRequest", "version": "v1" } ] }, "io_k8s_api_authentication_v1_TokenRequestSpec": { "description": "TokenRequestSpec contains client provided parameters of a token request.", "properties": { "audiences": { "description": "Audiences are the intendend audiences of the token. A recipient of a token must identitfy themself with an identifier in the list of audiences of the token, and otherwise should reject the token. A token issued for multiple audiences may be used to authenticate against any of the audiences listed but implies a high degree of trust between the target audiences.", "items": { "type": "string" }, "type": "array" }, "boundObjectRef": { "$ref": "#/definitions/io_k8s_api_authentication_v1_BoundObjectReference", "description": "BoundObjectRef is a reference to an object that the token will be bound to. The token will only be valid for as long as the bound object exists. NOTE: The API server's TokenReview endpoint will validate the BoundObjectRef, but other audiences may not. Keep ExpirationSeconds small if you want prompt revocation." }, "expirationSeconds": { "_format": "int64", "description": "ExpirationSeconds is the requested duration of validity of the request. The token issuer may return a token with a different validity duration so a client needs to check the 'expiration' field in a response.", "type": "integer" } }, "required": [ "audiences" ], "type": "object" }, "io_k8s_api_authentication_v1_TokenRequestStatus": { "description": "TokenRequestStatus is the result of a token request.", "properties": { "expirationTimestamp": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "ExpirationTimestamp is the time of expiration of the returned token." }, "token": { "description": "Token is the opaque bearer token.", "type": "string" } }, "required": [ "token", "expirationTimestamp" ], "type": "object" }, "io_k8s_api_authentication_v1_TokenReview": { "description": "TokenReview attempts to authenticate a token to a known user. Note: TokenReview requests may be cached by the webhook token authenticator plugin in the kube-apiserver.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "TokenReview" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta" }, "spec": { "$ref": "#/definitions/io_k8s_api_authentication_v1_TokenReviewSpec", "description": "Spec holds information about the request being evaluated" }, "status": { "$ref": "#/definitions/io_k8s_api_authentication_v1_TokenReviewStatus", "description": "Status is filled in by the server and indicates whether the request can be authenticated." } }, "required": [ "spec" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "authentication.k8s.io", "kind": "TokenReview", "version": "v1" } ] }, "io_k8s_api_authentication_v1_TokenReviewSpec": { "description": "TokenReviewSpec is a description of the token authentication request.", "properties": { "audiences": { "description": "Audiences is a list of the identifiers that the resource server presented with the token identifies as. Audience-aware token authenticators will verify that the token was intended for at least one of the audiences in this list. If no audiences are provided, the audience will default to the audience of the Kubernetes apiserver.", "items": { "type": "string" }, "type": "array" }, "token": { "description": "Token is the opaque bearer token.", "type": "string" } }, "type": "object" }, "io_k8s_api_authentication_v1_TokenReviewStatus": { "description": "TokenReviewStatus is the result of the token authentication request.", "properties": { "audiences": { "description": "Audiences are audience identifiers chosen by the authenticator that are compatible with both the TokenReview and token. An identifier is any identifier in the intersection of the TokenReviewSpec audiences and the token's audiences. A client of the TokenReview API that sets the spec.audiences field should validate that a compatible audience identifier is returned in the status.audiences field to ensure that the TokenReview server is audience aware. If a TokenReview returns an empty status.audience field where status.authenticated is \"true\", the token is valid against the audience of the Kubernetes API server.", "items": { "type": "string" }, "type": "array" }, "authenticated": { "description": "Authenticated indicates that the token was associated with a known user.", "type": "boolean" }, "error": { "description": "Error indicates that the token couldn't be checked", "type": "string" }, "user": { "$ref": "#/definitions/io_k8s_api_authentication_v1_UserInfo", "description": "User is the UserInfo associated with the provided token." } }, "type": "object" }, "io_k8s_api_authentication_v1_UserInfo": { "description": "UserInfo holds the information about the user needed to implement the user.Info interface.", "properties": { "extra": { "additionalProperties": { "items": { "type": "string" }, "type": "array" }, "description": "Any additional information provided by the authenticator.", "type": "object" }, "groups": { "description": "The names of groups this user is a part of.", "items": { "type": "string" }, "type": "array" }, "uid": { "description": "A unique value that identifies this user across time. If this user is deleted and another user by the same name is added, they will have different UIDs.", "type": "string" }, "username": { "description": "The name that uniquely identifies this user among all active users.", "type": "string" } }, "type": "object" }, "io_k8s_api_authentication_v1beta1_TokenReview": { "description": "TokenReview attempts to authenticate a token to a known user. Note: TokenReview requests may be cached by the webhook token authenticator plugin in the kube-apiserver.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "TokenReview" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta" }, "spec": { "$ref": "#/definitions/io_k8s_api_authentication_v1beta1_TokenReviewSpec", "description": "Spec holds information about the request being evaluated" }, "status": { "$ref": "#/definitions/io_k8s_api_authentication_v1beta1_TokenReviewStatus", "description": "Status is filled in by the server and indicates whether the request can be authenticated." } }, "required": [ "spec" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "authentication.k8s.io", "kind": "TokenReview", "version": "v1beta1" } ] }, "io_k8s_api_authentication_v1beta1_TokenReviewSpec": { "description": "TokenReviewSpec is a description of the token authentication request.", "properties": { "audiences": { "description": "Audiences is a list of the identifiers that the resource server presented with the token identifies as. Audience-aware token authenticators will verify that the token was intended for at least one of the audiences in this list. If no audiences are provided, the audience will default to the audience of the Kubernetes apiserver.", "items": { "type": "string" }, "type": "array" }, "token": { "description": "Token is the opaque bearer token.", "type": "string" } }, "type": "object" }, "io_k8s_api_authentication_v1beta1_TokenReviewStatus": { "description": "TokenReviewStatus is the result of the token authentication request.", "properties": { "audiences": { "description": "Audiences are audience identifiers chosen by the authenticator that are compatible with both the TokenReview and token. An identifier is any identifier in the intersection of the TokenReviewSpec audiences and the token's audiences. A client of the TokenReview API that sets the spec.audiences field should validate that a compatible audience identifier is returned in the status.audiences field to ensure that the TokenReview server is audience aware. If a TokenReview returns an empty status.audience field where status.authenticated is \"true\", the token is valid against the audience of the Kubernetes API server.", "items": { "type": "string" }, "type": "array" }, "authenticated": { "description": "Authenticated indicates that the token was associated with a known user.", "type": "boolean" }, "error": { "description": "Error indicates that the token couldn't be checked", "type": "string" }, "user": { "$ref": "#/definitions/io_k8s_api_authentication_v1beta1_UserInfo", "description": "User is the UserInfo associated with the provided token." } }, "type": "object" }, "io_k8s_api_authentication_v1beta1_UserInfo": { "description": "UserInfo holds the information about the user needed to implement the user.Info interface.", "properties": { "extra": { "additionalProperties": { "items": { "type": "string" }, "type": "array" }, "description": "Any additional information provided by the authenticator.", "type": "object" }, "groups": { "description": "The names of groups this user is a part of.", "items": { "type": "string" }, "type": "array" }, "uid": { "description": "A unique value that identifies this user across time. If this user is deleted and another user by the same name is added, they will have different UIDs.", "type": "string" }, "username": { "description": "The name that uniquely identifies this user among all active users.", "type": "string" } }, "type": "object" }, "io_k8s_api_authorization_v1_LocalSubjectAccessReview": { "description": "LocalSubjectAccessReview checks whether or not a user or group can perform an action in a given namespace. Having a namespace scoped resource makes it much easier to grant namespace scoped policy that includes permissions checking.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "LocalSubjectAccessReview" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta" }, "spec": { "$ref": "#/definitions/io_k8s_api_authorization_v1_SubjectAccessReviewSpec", "description": "Spec holds information about the request being evaluated. spec.namespace must be equal to the namespace you made the request against. If empty, it is defaulted." }, "status": { "$ref": "#/definitions/io_k8s_api_authorization_v1_SubjectAccessReviewStatus", "description": "Status is filled in by the server and indicates whether the request is allowed or not" } }, "required": [ "spec" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "authorization.k8s.io", "kind": "LocalSubjectAccessReview", "version": "v1" } ] }, "io_k8s_api_authorization_v1_NonResourceAttributes": { "description": "NonResourceAttributes includes the authorization attributes available for non-resource requests to the Authorizer interface", "properties": { "path": { "description": "Path is the URL path of the request", "type": "string" }, "verb": { "description": "Verb is the standard HTTP verb", "type": "string" } }, "type": "object" }, "io_k8s_api_authorization_v1_NonResourceRule": { "description": "NonResourceRule holds information that describes a rule for the non-resource", "properties": { "nonResourceURLs": { "description": "NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path. \"*\" means all.", "items": { "type": "string" }, "type": "array" }, "verbs": { "description": "Verb is a list of kubernetes non-resource API verbs, like: get, post, put, delete, patch, head, options. \"*\" means all.", "items": { "type": "string" }, "type": "array" } }, "required": [ "verbs" ], "type": "object" }, "io_k8s_api_authorization_v1_ResourceAttributes": { "description": "ResourceAttributes includes the authorization attributes available for resource requests to the Authorizer interface", "properties": { "group": { "description": "Group is the API Group of the Resource. \"*\" means all.", "type": "string" }, "name": { "description": "Name is the name of the resource being requested for a \"get\" or deleted for a \"delete\". \"\" (empty) means all.", "type": "string" }, "namespace": { "description": "Namespace is the namespace of the action being requested. Currently, there is no distinction between no namespace and all namespaces \"\" (empty) is defaulted for LocalSubjectAccessReviews \"\" (empty) is empty for cluster-scoped resources \"\" (empty) means \"all\" for namespace scoped resources from a SubjectAccessReview or SelfSubjectAccessReview", "type": "string" }, "resource": { "description": "Resource is one of the existing resource types. \"*\" means all.", "type": "string" }, "subresource": { "description": "Subresource is one of the existing resource types. \"\" means none.", "type": "string" }, "verb": { "description": "Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy. \"*\" means all.", "type": "string" }, "version": { "description": "Version is the API Version of the Resource. \"*\" means all.", "type": "string" } }, "type": "object" }, "io_k8s_api_authorization_v1_ResourceRule": { "description": "ResourceRule is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.", "properties": { "apiGroups": { "description": "APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed. \"*\" means all.", "items": { "type": "string" }, "type": "array" }, "resourceNames": { "description": "ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed. \"*\" means all.", "items": { "type": "string" }, "type": "array" }, "resources": { "description": "Resources is a list of resources this rule applies to. \"*\" means all in the specified apiGroups.\n \"*/foo\" represents the subresource 'foo' for all resources in the specified apiGroups.", "items": { "type": "string" }, "type": "array" }, "verbs": { "description": "Verb is a list of kubernetes resource API verbs, like: get, list, watch, create, update, delete, proxy. \"*\" means all.", "items": { "type": "string" }, "type": "array" } }, "required": [ "verbs" ], "type": "object" }, "io_k8s_api_authorization_v1_SelfSubjectAccessReview": { "description": "SelfSubjectAccessReview checks whether or the current user can perform an action. Not filling in a spec.namespace means \"in all namespaces\". Self is a special case, because users should always be able to check whether they can perform an action", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "SelfSubjectAccessReview" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta" }, "spec": { "$ref": "#/definitions/io_k8s_api_authorization_v1_SelfSubjectAccessReviewSpec", "description": "Spec holds information about the request being evaluated. user and groups must be empty" }, "status": { "$ref": "#/definitions/io_k8s_api_authorization_v1_SubjectAccessReviewStatus", "description": "Status is filled in by the server and indicates whether the request is allowed or not" } }, "required": [ "spec" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "authorization.k8s.io", "kind": "SelfSubjectAccessReview", "version": "v1" } ] }, "io_k8s_api_authorization_v1_SelfSubjectAccessReviewSpec": { "description": "SelfSubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set", "properties": { "nonResourceAttributes": { "$ref": "#/definitions/io_k8s_api_authorization_v1_NonResourceAttributes", "description": "NonResourceAttributes describes information for a non-resource access request" }, "resourceAttributes": { "$ref": "#/definitions/io_k8s_api_authorization_v1_ResourceAttributes", "description": "ResourceAuthorizationAttributes describes information for a resource access request" } }, "type": "object" }, "io_k8s_api_authorization_v1_SelfSubjectRulesReview": { "description": "SelfSubjectRulesReview enumerates the set of actions the current user can perform within a namespace. The returned list of actions may be incomplete depending on the server's authorization mode, and any errors experienced during the evaluation. SelfSubjectRulesReview should be used by UIs to show/hide actions, or to quickly let an end user reason about their permissions. It should NOT Be used by external systems to drive authorization decisions as this raises confused deputy, cache lifetime/revocation, and correctness concerns. SubjectAccessReview, and LocalAccessReview are the correct way to defer authorization decisions to the API server.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "SelfSubjectRulesReview" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta" }, "spec": { "$ref": "#/definitions/io_k8s_api_authorization_v1_SelfSubjectRulesReviewSpec", "description": "Spec holds information about the request being evaluated." }, "status": { "$ref": "#/definitions/io_k8s_api_authorization_v1_SubjectRulesReviewStatus", "description": "Status is filled in by the server and indicates the set of actions a user can perform." } }, "required": [ "spec" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "authorization.k8s.io", "kind": "SelfSubjectRulesReview", "version": "v1" } ] }, "io_k8s_api_authorization_v1_SelfSubjectRulesReviewSpec": { "properties": { "namespace": { "description": "Namespace to evaluate rules for. Required.", "type": "string" } }, "type": "object" }, "io_k8s_api_authorization_v1_SubjectAccessReview": { "description": "SubjectAccessReview checks whether or not a user or group can perform an action.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "SubjectAccessReview" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta" }, "spec": { "$ref": "#/definitions/io_k8s_api_authorization_v1_SubjectAccessReviewSpec", "description": "Spec holds information about the request being evaluated" }, "status": { "$ref": "#/definitions/io_k8s_api_authorization_v1_SubjectAccessReviewStatus", "description": "Status is filled in by the server and indicates whether the request is allowed or not" } }, "required": [ "spec" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "authorization.k8s.io", "kind": "SubjectAccessReview", "version": "v1" } ] }, "io_k8s_api_authorization_v1_SubjectAccessReviewSpec": { "description": "SubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set", "properties": { "extra": { "additionalProperties": { "items": { "type": "string" }, "type": "array" }, "description": "Extra corresponds to the user.Info.GetExtra() method from the authenticator. Since that is input to the authorizer it needs a reflection here.", "type": "object" }, "groups": { "description": "Groups is the groups you're testing for.", "items": { "type": "string" }, "type": "array" }, "nonResourceAttributes": { "$ref": "#/definitions/io_k8s_api_authorization_v1_NonResourceAttributes", "description": "NonResourceAttributes describes information for a non-resource access request" }, "resourceAttributes": { "$ref": "#/definitions/io_k8s_api_authorization_v1_ResourceAttributes", "description": "ResourceAuthorizationAttributes describes information for a resource access request" }, "uid": { "description": "UID information about the requesting user.", "type": "string" }, "user": { "description": "User is the user you're testing for. If you specify \"User\" but not \"Groups\", then is it interpreted as \"What if User were not a member of any groups", "type": "string" } }, "type": "object" }, "io_k8s_api_authorization_v1_SubjectAccessReviewStatus": { "description": "SubjectAccessReviewStatus", "properties": { "allowed": { "description": "Allowed is required. True if the action would be allowed, false otherwise.", "type": "boolean" }, "denied": { "description": "Denied is optional. True if the action would be denied, otherwise false. If both allowed is false and denied is false, then the authorizer has no opinion on whether to authorize the action. Denied may not be true if Allowed is true.", "type": "boolean" }, "evaluationError": { "description": "EvaluationError is an indication that some error occurred during the authorization check. It is entirely possible to get an error and be able to continue determine authorization status in spite of it. For instance, RBAC can be missing a role, but enough roles are still present and bound to reason about the request.", "type": "string" }, "reason": { "description": "Reason is optional. It indicates why a request was allowed or denied.", "type": "string" } }, "required": [ "allowed" ], "type": "object" }, "io_k8s_api_authorization_v1_SubjectRulesReviewStatus": { "description": "SubjectRulesReviewStatus contains the result of a rules check. This check can be incomplete depending on the set of authorizers the server is configured with and any errors experienced during evaluation. Because authorization rules are additive, if a rule appears in a list it's safe to assume the subject has that permission, even if that list is incomplete.", "properties": { "evaluationError": { "description": "EvaluationError can appear in combination with Rules. It indicates an error occurred during rule evaluation, such as an authorizer that doesn't support rule evaluation, and that ResourceRules and/or NonResourceRules may be incomplete.", "type": "string" }, "incomplete": { "description": "Incomplete is true when the rules returned by this call are incomplete. This is most commonly encountered when an authorizer, such as an external authorizer, doesn't support rules evaluation.", "type": "boolean" }, "nonResourceRules": { "description": "NonResourceRules is the list of actions the subject is allowed to perform on non-resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.", "items": { "$ref": "#/definitions/io_k8s_api_authorization_v1_NonResourceRule" }, "type": "array" }, "resourceRules": { "description": "ResourceRules is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.", "items": { "$ref": "#/definitions/io_k8s_api_authorization_v1_ResourceRule" }, "type": "array" } }, "required": [ "resourceRules", "nonResourceRules", "incomplete" ], "type": "object" }, "io_k8s_api_authorization_v1beta1_LocalSubjectAccessReview": { "description": "LocalSubjectAccessReview checks whether or not a user or group can perform an action in a given namespace. Having a namespace scoped resource makes it much easier to grant namespace scoped policy that includes permissions checking.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "LocalSubjectAccessReview" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta" }, "spec": { "$ref": "#/definitions/io_k8s_api_authorization_v1beta1_SubjectAccessReviewSpec", "description": "Spec holds information about the request being evaluated. spec.namespace must be equal to the namespace you made the request against. If empty, it is defaulted." }, "status": { "$ref": "#/definitions/io_k8s_api_authorization_v1beta1_SubjectAccessReviewStatus", "description": "Status is filled in by the server and indicates whether the request is allowed or not" } }, "required": [ "spec" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "authorization.k8s.io", "kind": "LocalSubjectAccessReview", "version": "v1beta1" } ] }, "io_k8s_api_authorization_v1beta1_NonResourceAttributes": { "description": "NonResourceAttributes includes the authorization attributes available for non-resource requests to the Authorizer interface", "properties": { "path": { "description": "Path is the URL path of the request", "type": "string" }, "verb": { "description": "Verb is the standard HTTP verb", "type": "string" } }, "type": "object" }, "io_k8s_api_authorization_v1beta1_NonResourceRule": { "description": "NonResourceRule holds information that describes a rule for the non-resource", "properties": { "nonResourceURLs": { "description": "NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path. \"*\" means all.", "items": { "type": "string" }, "type": "array" }, "verbs": { "description": "Verb is a list of kubernetes non-resource API verbs, like: get, post, put, delete, patch, head, options. \"*\" means all.", "items": { "type": "string" }, "type": "array" } }, "required": [ "verbs" ], "type": "object" }, "io_k8s_api_authorization_v1beta1_ResourceAttributes": { "description": "ResourceAttributes includes the authorization attributes available for resource requests to the Authorizer interface", "properties": { "group": { "description": "Group is the API Group of the Resource. \"*\" means all.", "type": "string" }, "name": { "description": "Name is the name of the resource being requested for a \"get\" or deleted for a \"delete\". \"\" (empty) means all.", "type": "string" }, "namespace": { "description": "Namespace is the namespace of the action being requested. Currently, there is no distinction between no namespace and all namespaces \"\" (empty) is defaulted for LocalSubjectAccessReviews \"\" (empty) is empty for cluster-scoped resources \"\" (empty) means \"all\" for namespace scoped resources from a SubjectAccessReview or SelfSubjectAccessReview", "type": "string" }, "resource": { "description": "Resource is one of the existing resource types. \"*\" means all.", "type": "string" }, "subresource": { "description": "Subresource is one of the existing resource types. \"\" means none.", "type": "string" }, "verb": { "description": "Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy. \"*\" means all.", "type": "string" }, "version": { "description": "Version is the API Version of the Resource. \"*\" means all.", "type": "string" } }, "type": "object" }, "io_k8s_api_authorization_v1beta1_ResourceRule": { "description": "ResourceRule is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.", "properties": { "apiGroups": { "description": "APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed. \"*\" means all.", "items": { "type": "string" }, "type": "array" }, "resourceNames": { "description": "ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed. \"*\" means all.", "items": { "type": "string" }, "type": "array" }, "resources": { "description": "Resources is a list of resources this rule applies to. \"*\" means all in the specified apiGroups.\n \"*/foo\" represents the subresource 'foo' for all resources in the specified apiGroups.", "items": { "type": "string" }, "type": "array" }, "verbs": { "description": "Verb is a list of kubernetes resource API verbs, like: get, list, watch, create, update, delete, proxy. \"*\" means all.", "items": { "type": "string" }, "type": "array" } }, "required": [ "verbs" ], "type": "object" }, "io_k8s_api_authorization_v1beta1_SelfSubjectAccessReview": { "description": "SelfSubjectAccessReview checks whether or the current user can perform an action. Not filling in a spec.namespace means \"in all namespaces\". Self is a special case, because users should always be able to check whether they can perform an action", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "SelfSubjectAccessReview" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta" }, "spec": { "$ref": "#/definitions/io_k8s_api_authorization_v1beta1_SelfSubjectAccessReviewSpec", "description": "Spec holds information about the request being evaluated. user and groups must be empty" }, "status": { "$ref": "#/definitions/io_k8s_api_authorization_v1beta1_SubjectAccessReviewStatus", "description": "Status is filled in by the server and indicates whether the request is allowed or not" } }, "required": [ "spec" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "authorization.k8s.io", "kind": "SelfSubjectAccessReview", "version": "v1beta1" } ] }, "io_k8s_api_authorization_v1beta1_SelfSubjectAccessReviewSpec": { "description": "SelfSubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set", "properties": { "nonResourceAttributes": { "$ref": "#/definitions/io_k8s_api_authorization_v1beta1_NonResourceAttributes", "description": "NonResourceAttributes describes information for a non-resource access request" }, "resourceAttributes": { "$ref": "#/definitions/io_k8s_api_authorization_v1beta1_ResourceAttributes", "description": "ResourceAuthorizationAttributes describes information for a resource access request" } }, "type": "object" }, "io_k8s_api_authorization_v1beta1_SelfSubjectRulesReview": { "description": "SelfSubjectRulesReview enumerates the set of actions the current user can perform within a namespace. The returned list of actions may be incomplete depending on the server's authorization mode, and any errors experienced during the evaluation. SelfSubjectRulesReview should be used by UIs to show/hide actions, or to quickly let an end user reason about their permissions. It should NOT Be used by external systems to drive authorization decisions as this raises confused deputy, cache lifetime/revocation, and correctness concerns. SubjectAccessReview, and LocalAccessReview are the correct way to defer authorization decisions to the API server.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "SelfSubjectRulesReview" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta" }, "spec": { "$ref": "#/definitions/io_k8s_api_authorization_v1beta1_SelfSubjectRulesReviewSpec", "description": "Spec holds information about the request being evaluated." }, "status": { "$ref": "#/definitions/io_k8s_api_authorization_v1beta1_SubjectRulesReviewStatus", "description": "Status is filled in by the server and indicates the set of actions a user can perform." } }, "required": [ "spec" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "authorization.k8s.io", "kind": "SelfSubjectRulesReview", "version": "v1beta1" } ] }, "io_k8s_api_authorization_v1beta1_SelfSubjectRulesReviewSpec": { "properties": { "namespace": { "description": "Namespace to evaluate rules for. Required.", "type": "string" } }, "type": "object" }, "io_k8s_api_authorization_v1beta1_SubjectAccessReview": { "description": "SubjectAccessReview checks whether or not a user or group can perform an action.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "SubjectAccessReview" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta" }, "spec": { "$ref": "#/definitions/io_k8s_api_authorization_v1beta1_SubjectAccessReviewSpec", "description": "Spec holds information about the request being evaluated" }, "status": { "$ref": "#/definitions/io_k8s_api_authorization_v1beta1_SubjectAccessReviewStatus", "description": "Status is filled in by the server and indicates whether the request is allowed or not" } }, "required": [ "spec" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "authorization.k8s.io", "kind": "SubjectAccessReview", "version": "v1beta1" } ] }, "io_k8s_api_authorization_v1beta1_SubjectAccessReviewSpec": { "description": "SubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set", "properties": { "extra": { "additionalProperties": { "items": { "type": "string" }, "type": "array" }, "description": "Extra corresponds to the user.Info.GetExtra() method from the authenticator. Since that is input to the authorizer it needs a reflection here.", "type": "object" }, "group": { "description": "Groups is the groups you're testing for.", "items": { "type": "string" }, "type": "array" }, "nonResourceAttributes": { "$ref": "#/definitions/io_k8s_api_authorization_v1beta1_NonResourceAttributes", "description": "NonResourceAttributes describes information for a non-resource access request" }, "resourceAttributes": { "$ref": "#/definitions/io_k8s_api_authorization_v1beta1_ResourceAttributes", "description": "ResourceAuthorizationAttributes describes information for a resource access request" }, "uid": { "description": "UID information about the requesting user.", "type": "string" }, "user": { "description": "User is the user you're testing for. If you specify \"User\" but not \"Group\", then is it interpreted as \"What if User were not a member of any groups", "type": "string" } }, "type": "object" }, "io_k8s_api_authorization_v1beta1_SubjectAccessReviewStatus": { "description": "SubjectAccessReviewStatus", "properties": { "allowed": { "description": "Allowed is required. True if the action would be allowed, false otherwise.", "type": "boolean" }, "denied": { "description": "Denied is optional. True if the action would be denied, otherwise false. If both allowed is false and denied is false, then the authorizer has no opinion on whether to authorize the action. Denied may not be true if Allowed is true.", "type": "boolean" }, "evaluationError": { "description": "EvaluationError is an indication that some error occurred during the authorization check. It is entirely possible to get an error and be able to continue determine authorization status in spite of it. For instance, RBAC can be missing a role, but enough roles are still present and bound to reason about the request.", "type": "string" }, "reason": { "description": "Reason is optional. It indicates why a request was allowed or denied.", "type": "string" } }, "required": [ "allowed" ], "type": "object" }, "io_k8s_api_authorization_v1beta1_SubjectRulesReviewStatus": { "description": "SubjectRulesReviewStatus contains the result of a rules check. This check can be incomplete depending on the set of authorizers the server is configured with and any errors experienced during evaluation. Because authorization rules are additive, if a rule appears in a list it's safe to assume the subject has that permission, even if that list is incomplete.", "properties": { "evaluationError": { "description": "EvaluationError can appear in combination with Rules. It indicates an error occurred during rule evaluation, such as an authorizer that doesn't support rule evaluation, and that ResourceRules and/or NonResourceRules may be incomplete.", "type": "string" }, "incomplete": { "description": "Incomplete is true when the rules returned by this call are incomplete. This is most commonly encountered when an authorizer, such as an external authorizer, doesn't support rules evaluation.", "type": "boolean" }, "nonResourceRules": { "description": "NonResourceRules is the list of actions the subject is allowed to perform on non-resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.", "items": { "$ref": "#/definitions/io_k8s_api_authorization_v1beta1_NonResourceRule" }, "type": "array" }, "resourceRules": { "description": "ResourceRules is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.", "items": { "$ref": "#/definitions/io_k8s_api_authorization_v1beta1_ResourceRule" }, "type": "array" } }, "required": [ "resourceRules", "nonResourceRules", "incomplete" ], "type": "object" }, "io_k8s_api_autoscaling_v1_CrossVersionObjectReference": { "description": "CrossVersionObjectReference contains enough information to let you identify the referred resource.", "properties": { "apiVersion": { "description": "API version of the referent", "type": "string" }, "kind": { "description": "Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\"", "type": "string" }, "name": { "description": "Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" } }, "required": [ "kind", "name" ], "type": "object" }, "io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler": { "description": "configuration of a horizontal pod autoscaler.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "HorizontalPodAutoscaler" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerSpec", "description": "behaviour of autoscaler. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status." }, "status": { "$ref": "#/definitions/io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerStatus", "description": "current information about the autoscaler." } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "autoscaling", "kind": "HorizontalPodAutoscaler", "version": "v1" } ] }, "io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList": { "description": "list of horizontal pod autoscaler objects.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "list of horizontal pod autoscaler objects.", "items": { "$ref": "#/definitions/io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler" }, "type": "array" }, "kind": { "description": "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", "enum": [ "HorizontalPodAutoscalerList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata." } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "autoscaling", "kind": "HorizontalPodAutoscalerList", "version": "v1" } ] }, "io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerSpec": { "description": "specification of a horizontal pod autoscaler.", "properties": { "maxReplicas": { "_format": "int32", "description": "upper limit for the number of pods that can be set by the autoscaler; cannot be smaller than MinReplicas.", "type": "integer" }, "minReplicas": { "_format": "int32", "description": "minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down. It defaults to 1 pod. minReplicas is allowed to be 0 if the alpha feature gate HPAScaleToZero is enabled and at least one Object or External metric is configured. Scaling is active as long as at least one metric value is available.", "type": "integer" }, "scaleTargetRef": { "$ref": "#/definitions/io_k8s_api_autoscaling_v1_CrossVersionObjectReference", "description": "reference to scaled resource; horizontal pod autoscaler will learn the current resource consumption and will set the desired number of pods by using its Scale subresource." }, "targetCPUUtilizationPercentage": { "_format": "int32", "description": "target average CPU utilization (represented as a percentage of requested CPU) over all the pods; if not specified the default autoscaling policy will be used.", "type": "integer" } }, "required": [ "scaleTargetRef", "maxReplicas" ], "type": "object" }, "io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerStatus": { "description": "current status of a horizontal pod autoscaler", "properties": { "currentCPUUtilizationPercentage": { "_format": "int32", "description": "current average CPU utilization over all pods, represented as a percentage of requested CPU, e.g. 70 means that an average pod is using now 70% of its requested CPU.", "type": "integer" }, "currentReplicas": { "_format": "int32", "description": "current number of replicas of pods managed by this autoscaler.", "type": "integer" }, "desiredReplicas": { "_format": "int32", "description": "desired number of replicas of pods managed by this autoscaler.", "type": "integer" }, "lastScaleTime": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "last time the HorizontalPodAutoscaler scaled the number of pods; used by the autoscaler to control how often the number of pods is changed." }, "observedGeneration": { "_format": "int64", "description": "most recent generation observed by this autoscaler.", "type": "integer" } }, "required": [ "currentReplicas", "desiredReplicas" ], "type": "object" }, "io_k8s_api_autoscaling_v1_Scale": { "description": "Scale represents a scaling request for a resource.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "Scale" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata." }, "spec": { "$ref": "#/definitions/io_k8s_api_autoscaling_v1_ScaleSpec", "description": "defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status." }, "status": { "$ref": "#/definitions/io_k8s_api_autoscaling_v1_ScaleStatus", "description": "current status of the scale. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status. Read-only." } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "autoscaling", "kind": "Scale", "version": "v1" } ] }, "io_k8s_api_autoscaling_v1_ScaleSpec": { "description": "ScaleSpec describes the attributes of a scale subresource.", "properties": { "replicas": { "_format": "int32", "description": "desired number of instances for the scaled object.", "type": "integer" } }, "type": "object" }, "io_k8s_api_autoscaling_v1_ScaleStatus": { "description": "ScaleStatus represents the current status of a scale subresource.", "properties": { "replicas": { "_format": "int32", "description": "actual number of observed instances of the scaled object.", "type": "integer" }, "selector": { "description": "label query over pods that should match the replicas count. This is same as the label selector but in the string format to avoid introspection by clients. The string will be in the same format as the query-param syntax. More info about label selectors: http://kubernetes.io/docs/user-guide/labels#label-selectors", "type": "string" } }, "required": [ "replicas" ], "type": "object" }, "io_k8s_api_autoscaling_v2beta1_CrossVersionObjectReference": { "description": "CrossVersionObjectReference contains enough information to let you identify the referred resource.", "properties": { "apiVersion": { "description": "API version of the referent", "type": "string" }, "kind": { "description": "Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\"", "type": "string" }, "name": { "description": "Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" } }, "required": [ "kind", "name" ], "type": "object" }, "io_k8s_api_autoscaling_v2beta1_ExternalMetricSource": { "description": "ExternalMetricSource indicates how to scale on a metric not associated with any Kubernetes object (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster). Exactly one \"target\" type should be set.", "properties": { "metricName": { "description": "metricName is the name of the metric in question.", "type": "string" }, "metricSelector": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "metricSelector is used to identify a specific time series within a given metric." }, "targetAverageValue": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "targetAverageValue is the target per-pod value of global metric (as a quantity). Mutually exclusive with TargetValue." }, "targetValue": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "targetValue is the target value of the metric (as a quantity). Mutually exclusive with TargetAverageValue." } }, "required": [ "metricName" ], "type": "object" }, "io_k8s_api_autoscaling_v2beta1_ExternalMetricStatus": { "description": "ExternalMetricStatus indicates the current value of a global metric not associated with any Kubernetes object.", "properties": { "currentAverageValue": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "currentAverageValue is the current value of metric averaged over autoscaled pods." }, "currentValue": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "currentValue is the current value of the metric (as a quantity)" }, "metricName": { "description": "metricName is the name of a metric used for autoscaling in metric system.", "type": "string" }, "metricSelector": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "metricSelector is used to identify a specific time series within a given metric." } }, "required": [ "metricName", "currentValue" ], "type": "object" }, "io_k8s_api_autoscaling_v2beta1_HorizontalPodAutoscaler": { "description": "HorizontalPodAutoscaler is the configuration for a horizontal pod autoscaler, which automatically manages the replica count of any resource implementing the scale subresource based on the metrics specified.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "HorizontalPodAutoscaler" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "metadata is the standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta1_HorizontalPodAutoscalerSpec", "description": "spec is the specification for the behaviour of the autoscaler. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status." }, "status": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta1_HorizontalPodAutoscalerStatus", "description": "status is the current information about the autoscaler." } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "autoscaling", "kind": "HorizontalPodAutoscaler", "version": "v2beta1" } ] }, "io_k8s_api_autoscaling_v2beta1_HorizontalPodAutoscalerCondition": { "description": "HorizontalPodAutoscalerCondition describes the state of a HorizontalPodAutoscaler at a certain point.", "properties": { "lastTransitionTime": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "lastTransitionTime is the last time the condition transitioned from one status to another" }, "message": { "description": "message is a human-readable explanation containing details about the transition", "type": "string" }, "reason": { "description": "reason is the reason for the condition's last transition.", "type": "string" }, "status": { "description": "status is the status of the condition (True, False, Unknown)", "type": "string" }, "type": { "description": "type describes the current condition", "type": "string" } }, "required": [ "type", "status" ], "type": "object" }, "io_k8s_api_autoscaling_v2beta1_HorizontalPodAutoscalerList": { "description": "HorizontalPodAutoscaler is a list of horizontal pod autoscaler objects.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "items is the list of horizontal pod autoscaler objects.", "items": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta1_HorizontalPodAutoscaler" }, "type": "array" }, "kind": { "description": "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", "enum": [ "HorizontalPodAutoscalerList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "metadata is the standard list metadata." } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "autoscaling", "kind": "HorizontalPodAutoscalerList", "version": "v2beta1" } ] }, "io_k8s_api_autoscaling_v2beta1_HorizontalPodAutoscalerSpec": { "description": "HorizontalPodAutoscalerSpec describes the desired functionality of the HorizontalPodAutoscaler.", "properties": { "maxReplicas": { "_format": "int32", "description": "maxReplicas is the upper limit for the number of replicas to which the autoscaler can scale up. It cannot be less that minReplicas.", "type": "integer" }, "metrics": { "description": "metrics contains the specifications for which to use to calculate the desired replica count (the maximum replica count across all metrics will be used). The desired replica count is calculated multiplying the ratio between the target value and the current value by the current number of pods. Ergo, metrics used must decrease as the pod count is increased, and vice-versa. See the individual metric source types for more information about how each type of metric must respond.", "items": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta1_MetricSpec" }, "type": "array" }, "minReplicas": { "_format": "int32", "description": "minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down. It defaults to 1 pod. minReplicas is allowed to be 0 if the alpha feature gate HPAScaleToZero is enabled and at least one Object or External metric is configured. Scaling is active as long as at least one metric value is available.", "type": "integer" }, "scaleTargetRef": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta1_CrossVersionObjectReference", "description": "scaleTargetRef points to the target resource to scale, and is used to the pods for which metrics should be collected, as well as to actually change the replica count." } }, "required": [ "scaleTargetRef", "maxReplicas" ], "type": "object" }, "io_k8s_api_autoscaling_v2beta1_HorizontalPodAutoscalerStatus": { "description": "HorizontalPodAutoscalerStatus describes the current status of a horizontal pod autoscaler.", "properties": { "conditions": { "description": "conditions is the set of conditions required for this autoscaler to scale its target, and indicates whether or not those conditions are met.", "items": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta1_HorizontalPodAutoscalerCondition" }, "type": "array" }, "currentMetrics": { "description": "currentMetrics is the last read state of the metrics used by this autoscaler.", "items": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta1_MetricStatus" }, "type": "array" }, "currentReplicas": { "_format": "int32", "description": "currentReplicas is current number of replicas of pods managed by this autoscaler, as last seen by the autoscaler.", "type": "integer" }, "desiredReplicas": { "_format": "int32", "description": "desiredReplicas is the desired number of replicas of pods managed by this autoscaler, as last calculated by the autoscaler.", "type": "integer" }, "lastScaleTime": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "lastScaleTime is the last time the HorizontalPodAutoscaler scaled the number of pods, used by the autoscaler to control how often the number of pods is changed." }, "observedGeneration": { "_format": "int64", "description": "observedGeneration is the most recent generation observed by this autoscaler.", "type": "integer" } }, "required": [ "currentReplicas", "desiredReplicas", "conditions" ], "type": "object" }, "io_k8s_api_autoscaling_v2beta1_MetricSpec": { "description": "MetricSpec specifies how to scale based on a single metric (only `type` and one other matching field should be set at once).", "properties": { "external": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta1_ExternalMetricSource", "description": "external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster)." }, "object": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta1_ObjectMetricSource", "description": "object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object)." }, "pods": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta1_PodsMetricSource", "description": "pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value." }, "resource": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta1_ResourceMetricSource", "description": "resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source." }, "type": { "description": "type is the type of metric source. It should be one of \"Object\", \"Pods\" or \"Resource\", each mapping to a matching field in the object.", "type": "string" } }, "required": [ "type" ], "type": "object" }, "io_k8s_api_autoscaling_v2beta1_MetricStatus": { "description": "MetricStatus describes the last-read state of a single metric.", "properties": { "external": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta1_ExternalMetricStatus", "description": "external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster)." }, "object": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta1_ObjectMetricStatus", "description": "object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object)." }, "pods": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta1_PodsMetricStatus", "description": "pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value." }, "resource": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta1_ResourceMetricStatus", "description": "resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source." }, "type": { "description": "type is the type of metric source. It will be one of \"Object\", \"Pods\" or \"Resource\", each corresponds to a matching field in the object.", "type": "string" } }, "required": [ "type" ], "type": "object" }, "io_k8s_api_autoscaling_v2beta1_ObjectMetricSource": { "description": "ObjectMetricSource indicates how to scale on a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).", "properties": { "averageValue": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "averageValue is the target value of the average of the metric across all relevant pods (as a quantity)" }, "metricName": { "description": "metricName is the name of the metric in question.", "type": "string" }, "selector": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics." }, "target": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta1_CrossVersionObjectReference", "description": "target is the described Kubernetes object." }, "targetValue": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "targetValue is the target value of the metric (as a quantity)." } }, "required": [ "target", "metricName", "targetValue" ], "type": "object" }, "io_k8s_api_autoscaling_v2beta1_ObjectMetricStatus": { "description": "ObjectMetricStatus indicates the current value of a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).", "properties": { "averageValue": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "averageValue is the current value of the average of the metric across all relevant pods (as a quantity)" }, "currentValue": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "currentValue is the current value of the metric (as a quantity)." }, "metricName": { "description": "metricName is the name of the metric in question.", "type": "string" }, "selector": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "selector is the string-encoded form of a standard kubernetes label selector for the given metric When set in the ObjectMetricSource, it is passed as an additional parameter to the metrics server for more specific metrics scoping. When unset, just the metricName will be used to gather metrics." }, "target": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta1_CrossVersionObjectReference", "description": "target is the described Kubernetes object." } }, "required": [ "target", "metricName", "currentValue" ], "type": "object" }, "io_k8s_api_autoscaling_v2beta1_PodsMetricSource": { "description": "PodsMetricSource indicates how to scale on a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.", "properties": { "metricName": { "description": "metricName is the name of the metric in question", "type": "string" }, "selector": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics." }, "targetAverageValue": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "targetAverageValue is the target value of the average of the metric across all relevant pods (as a quantity)" } }, "required": [ "metricName", "targetAverageValue" ], "type": "object" }, "io_k8s_api_autoscaling_v2beta1_PodsMetricStatus": { "description": "PodsMetricStatus indicates the current value of a metric describing each pod in the current scale target (for example, transactions-processed-per-second).", "properties": { "currentAverageValue": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "currentAverageValue is the current value of the average of the metric across all relevant pods (as a quantity)" }, "metricName": { "description": "metricName is the name of the metric in question", "type": "string" }, "selector": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "selector is the string-encoded form of a standard kubernetes label selector for the given metric When set in the PodsMetricSource, it is passed as an additional parameter to the metrics server for more specific metrics scoping. When unset, just the metricName will be used to gather metrics." } }, "required": [ "metricName", "currentAverageValue" ], "type": "object" }, "io_k8s_api_autoscaling_v2beta1_ResourceMetricSource": { "description": "ResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). The values will be averaged together before being compared to the target. Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source. Only one \"target\" type should be set.", "properties": { "name": { "description": "name is the name of the resource in question.", "type": "string" }, "targetAverageUtilization": { "_format": "int32", "description": "targetAverageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods.", "type": "integer" }, "targetAverageValue": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "targetAverageValue is the target value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the \"pods\" metric source type." } }, "required": [ "name" ], "type": "object" }, "io_k8s_api_autoscaling_v2beta1_ResourceMetricStatus": { "description": "ResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source.", "properties": { "currentAverageUtilization": { "_format": "int32", "description": "currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods. It will only be present if `targetAverageValue` was set in the corresponding metric specification.", "type": "integer" }, "currentAverageValue": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "currentAverageValue is the current value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the \"pods\" metric source type. It will always be set, regardless of the corresponding metric specification." }, "name": { "description": "name is the name of the resource in question.", "type": "string" } }, "required": [ "name", "currentAverageValue" ], "type": "object" }, "io_k8s_api_autoscaling_v2beta2_CrossVersionObjectReference": { "description": "CrossVersionObjectReference contains enough information to let you identify the referred resource.", "properties": { "apiVersion": { "description": "API version of the referent", "type": "string" }, "kind": { "description": "Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\"", "type": "string" }, "name": { "description": "Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" } }, "required": [ "kind", "name" ], "type": "object" }, "io_k8s_api_autoscaling_v2beta2_ExternalMetricSource": { "description": "ExternalMetricSource indicates how to scale on a metric not associated with any Kubernetes object (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster).", "properties": { "metric": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_MetricIdentifier", "description": "metric identifies the target metric by name and selector" }, "target": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_MetricTarget", "description": "target specifies the target value for the given metric" } }, "required": [ "metric", "target" ], "type": "object" }, "io_k8s_api_autoscaling_v2beta2_ExternalMetricStatus": { "description": "ExternalMetricStatus indicates the current value of a global metric not associated with any Kubernetes object.", "properties": { "current": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_MetricValueStatus", "description": "current contains the current value for the given metric" }, "metric": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_MetricIdentifier", "description": "metric identifies the target metric by name and selector" } }, "required": [ "metric", "current" ], "type": "object" }, "io_k8s_api_autoscaling_v2beta2_HPAScalingPolicy": { "description": "HPAScalingPolicy is a single policy which must hold true for a specified past interval.", "properties": { "periodSeconds": { "_format": "int32", "description": "PeriodSeconds specifies the window of time for which the policy should hold true. PeriodSeconds must be greater than zero and less than or equal to 1800 (30 min).", "type": "integer" }, "type": { "description": "Type is used to specify the scaling policy.", "type": "string" }, "value": { "_format": "int32", "description": "Value contains the amount of change which is permitted by the policy. It must be greater than zero", "type": "integer" } }, "required": [ "type", "value", "periodSeconds" ], "type": "object" }, "io_k8s_api_autoscaling_v2beta2_HPAScalingRules": { "description": "HPAScalingRules configures the scaling behavior for one direction. These Rules are applied after calculating DesiredReplicas from metrics for the HPA. They can limit the scaling velocity by specifying scaling policies. They can prevent flapping by specifying the stabilization window, so that the number of replicas is not set instantly, instead, the safest value from the stabilization window is chosen.", "properties": { "policies": { "description": "policies is a list of potential scaling polices which can be used during scaling. At least one policy must be specified, otherwise the HPAScalingRules will be discarded as invalid", "items": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_HPAScalingPolicy" }, "type": "array" }, "selectPolicy": { "description": "selectPolicy is used to specify which policy should be used. If not set, the default value MaxPolicySelect is used.", "type": "string" }, "stabilizationWindowSeconds": { "_format": "int32", "description": "StabilizationWindowSeconds is the number of seconds for which past recommendations should be considered while scaling up or scaling down. StabilizationWindowSeconds must be greater than or equal to zero and less than or equal to 3600 (one hour). If not set, use the default values: - For scale up: 0 (i.e. no stabilization is done). - For scale down: 300 (i.e. the stabilization window is 300 seconds long).", "type": "integer" } }, "type": "object" }, "io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscaler": { "description": "HorizontalPodAutoscaler is the configuration for a horizontal pod autoscaler, which automatically manages the replica count of any resource implementing the scale subresource based on the metrics specified.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "HorizontalPodAutoscaler" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "metadata is the standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscalerSpec", "description": "spec is the specification for the behaviour of the autoscaler. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status." }, "status": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscalerStatus", "description": "status is the current information about the autoscaler." } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "autoscaling", "kind": "HorizontalPodAutoscaler", "version": "v2beta2" } ] }, "io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscalerBehavior": { "description": "HorizontalPodAutoscalerBehavior configures the scaling behavior of the target in both Up and Down directions (scaleUp and scaleDown fields respectively).", "properties": { "scaleDown": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_HPAScalingRules", "description": "scaleDown is scaling policy for scaling Down. If not set, the default value is to allow to scale down to minReplicas pods, with a 300 second stabilization window (i.e., the highest recommendation for the last 300sec is used)." }, "scaleUp": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_HPAScalingRules", "description": "scaleUp is scaling policy for scaling Up. If not set, the default value is the higher of:\n * increase no more than 4 pods per 60 seconds\n * double the number of pods per 60 seconds\nNo stabilization is used." } }, "type": "object" }, "io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscalerCondition": { "description": "HorizontalPodAutoscalerCondition describes the state of a HorizontalPodAutoscaler at a certain point.", "properties": { "lastTransitionTime": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "lastTransitionTime is the last time the condition transitioned from one status to another" }, "message": { "description": "message is a human-readable explanation containing details about the transition", "type": "string" }, "reason": { "description": "reason is the reason for the condition's last transition.", "type": "string" }, "status": { "description": "status is the status of the condition (True, False, Unknown)", "type": "string" }, "type": { "description": "type describes the current condition", "type": "string" } }, "required": [ "type", "status" ], "type": "object" }, "io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscalerList": { "description": "HorizontalPodAutoscalerList is a list of horizontal pod autoscaler objects.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "items is the list of horizontal pod autoscaler objects.", "items": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscaler" }, "type": "array" }, "kind": { "description": "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", "enum": [ "HorizontalPodAutoscalerList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "metadata is the standard list metadata." } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "autoscaling", "kind": "HorizontalPodAutoscalerList", "version": "v2beta2" } ] }, "io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscalerSpec": { "description": "HorizontalPodAutoscalerSpec describes the desired functionality of the HorizontalPodAutoscaler.", "properties": { "behavior": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscalerBehavior", "description": "behavior configures the scaling behavior of the target in both Up and Down directions (scaleUp and scaleDown fields respectively). If not set, the default HPAScalingRules for scale up and scale down are used." }, "maxReplicas": { "_format": "int32", "description": "maxReplicas is the upper limit for the number of replicas to which the autoscaler can scale up. It cannot be less that minReplicas.", "type": "integer" }, "metrics": { "description": "metrics contains the specifications for which to use to calculate the desired replica count (the maximum replica count across all metrics will be used). The desired replica count is calculated multiplying the ratio between the target value and the current value by the current number of pods. Ergo, metrics used must decrease as the pod count is increased, and vice-versa. See the individual metric source types for more information about how each type of metric must respond. If not set, the default metric will be set to 80% average CPU utilization.", "items": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_MetricSpec" }, "type": "array" }, "minReplicas": { "_format": "int32", "description": "minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down. It defaults to 1 pod. minReplicas is allowed to be 0 if the alpha feature gate HPAScaleToZero is enabled and at least one Object or External metric is configured. Scaling is active as long as at least one metric value is available.", "type": "integer" }, "scaleTargetRef": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_CrossVersionObjectReference", "description": "scaleTargetRef points to the target resource to scale, and is used to the pods for which metrics should be collected, as well as to actually change the replica count." } }, "required": [ "scaleTargetRef", "maxReplicas" ], "type": "object" }, "io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscalerStatus": { "description": "HorizontalPodAutoscalerStatus describes the current status of a horizontal pod autoscaler.", "properties": { "conditions": { "description": "conditions is the set of conditions required for this autoscaler to scale its target, and indicates whether or not those conditions are met.", "items": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscalerCondition" }, "type": "array" }, "currentMetrics": { "description": "currentMetrics is the last read state of the metrics used by this autoscaler.", "items": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_MetricStatus" }, "type": "array" }, "currentReplicas": { "_format": "int32", "description": "currentReplicas is current number of replicas of pods managed by this autoscaler, as last seen by the autoscaler.", "type": "integer" }, "desiredReplicas": { "_format": "int32", "description": "desiredReplicas is the desired number of replicas of pods managed by this autoscaler, as last calculated by the autoscaler.", "type": "integer" }, "lastScaleTime": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "lastScaleTime is the last time the HorizontalPodAutoscaler scaled the number of pods, used by the autoscaler to control how often the number of pods is changed." }, "observedGeneration": { "_format": "int64", "description": "observedGeneration is the most recent generation observed by this autoscaler.", "type": "integer" } }, "required": [ "currentReplicas", "desiredReplicas", "conditions" ], "type": "object" }, "io_k8s_api_autoscaling_v2beta2_MetricIdentifier": { "description": "MetricIdentifier defines the name and optionally selector for a metric", "properties": { "name": { "description": "name is the name of the given metric", "type": "string" }, "selector": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping. When unset, just the metricName will be used to gather metrics." } }, "required": [ "name" ], "type": "object" }, "io_k8s_api_autoscaling_v2beta2_MetricSpec": { "description": "MetricSpec specifies how to scale based on a single metric (only `type` and one other matching field should be set at once).", "properties": { "external": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_ExternalMetricSource", "description": "external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster)." }, "object": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_ObjectMetricSource", "description": "object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object)." }, "pods": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_PodsMetricSource", "description": "pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value." }, "resource": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_ResourceMetricSource", "description": "resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source." }, "type": { "description": "type is the type of metric source. It should be one of \"Object\", \"Pods\" or \"Resource\", each mapping to a matching field in the object.", "type": "string" } }, "required": [ "type" ], "type": "object" }, "io_k8s_api_autoscaling_v2beta2_MetricStatus": { "description": "MetricStatus describes the last-read state of a single metric.", "properties": { "external": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_ExternalMetricStatus", "description": "external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster)." }, "object": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_ObjectMetricStatus", "description": "object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object)." }, "pods": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_PodsMetricStatus", "description": "pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value." }, "resource": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_ResourceMetricStatus", "description": "resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source." }, "type": { "description": "type is the type of metric source. It will be one of \"Object\", \"Pods\" or \"Resource\", each corresponds to a matching field in the object.", "type": "string" } }, "required": [ "type" ], "type": "object" }, "io_k8s_api_autoscaling_v2beta2_MetricTarget": { "description": "MetricTarget defines the target value, average value, or average utilization of a specific metric", "properties": { "averageUtilization": { "_format": "int32", "description": "averageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods. Currently only valid for Resource metric source type", "type": "integer" }, "averageValue": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "averageValue is the target value of the average of the metric across all relevant pods (as a quantity)" }, "type": { "description": "type represents whether the metric type is Utilization, Value, or AverageValue", "type": "string" }, "value": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "value is the target value of the metric (as a quantity)." } }, "required": [ "type" ], "type": "object" }, "io_k8s_api_autoscaling_v2beta2_MetricValueStatus": { "description": "MetricValueStatus holds the current value for a metric", "properties": { "averageUtilization": { "_format": "int32", "description": "currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods.", "type": "integer" }, "averageValue": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "averageValue is the current value of the average of the metric across all relevant pods (as a quantity)" }, "value": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "value is the current value of the metric (as a quantity)." } }, "type": "object" }, "io_k8s_api_autoscaling_v2beta2_ObjectMetricSource": { "description": "ObjectMetricSource indicates how to scale on a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).", "properties": { "describedObject": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_CrossVersionObjectReference" }, "metric": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_MetricIdentifier", "description": "metric identifies the target metric by name and selector" }, "target": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_MetricTarget", "description": "target specifies the target value for the given metric" } }, "required": [ "describedObject", "target", "metric" ], "type": "object" }, "io_k8s_api_autoscaling_v2beta2_ObjectMetricStatus": { "description": "ObjectMetricStatus indicates the current value of a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).", "properties": { "current": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_MetricValueStatus", "description": "current contains the current value for the given metric" }, "describedObject": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_CrossVersionObjectReference" }, "metric": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_MetricIdentifier", "description": "metric identifies the target metric by name and selector" } }, "required": [ "metric", "current", "describedObject" ], "type": "object" }, "io_k8s_api_autoscaling_v2beta2_PodsMetricSource": { "description": "PodsMetricSource indicates how to scale on a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.", "properties": { "metric": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_MetricIdentifier", "description": "metric identifies the target metric by name and selector" }, "target": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_MetricTarget", "description": "target specifies the target value for the given metric" } }, "required": [ "metric", "target" ], "type": "object" }, "io_k8s_api_autoscaling_v2beta2_PodsMetricStatus": { "description": "PodsMetricStatus indicates the current value of a metric describing each pod in the current scale target (for example, transactions-processed-per-second).", "properties": { "current": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_MetricValueStatus", "description": "current contains the current value for the given metric" }, "metric": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_MetricIdentifier", "description": "metric identifies the target metric by name and selector" } }, "required": [ "metric", "current" ], "type": "object" }, "io_k8s_api_autoscaling_v2beta2_ResourceMetricSource": { "description": "ResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). The values will be averaged together before being compared to the target. Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source. Only one \"target\" type should be set.", "properties": { "name": { "description": "name is the name of the resource in question.", "type": "string" }, "target": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_MetricTarget", "description": "target specifies the target value for the given metric" } }, "required": [ "name", "target" ], "type": "object" }, "io_k8s_api_autoscaling_v2beta2_ResourceMetricStatus": { "description": "ResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source.", "properties": { "current": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_MetricValueStatus", "description": "current contains the current value for the given metric" }, "name": { "description": "Name is the name of the resource in question.", "type": "string" } }, "required": [ "name", "current" ], "type": "object" }, "io_k8s_api_batch_v1_Job": { "description": "Job represents the configuration of a single job.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "Job" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/io_k8s_api_batch_v1_JobSpec", "description": "Specification of the desired behavior of a job. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" }, "status": { "$ref": "#/definitions/io_k8s_api_batch_v1_JobStatus", "description": "Current status of a job. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "batch", "kind": "Job", "version": "v1" } ] }, "io_k8s_api_batch_v1_JobCondition": { "description": "JobCondition describes current state of a job.", "properties": { "lastProbeTime": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Last time the condition was checked." }, "lastTransitionTime": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Last time the condition transit from one status to another." }, "message": { "description": "Human readable message indicating details about last transition.", "type": "string" }, "reason": { "description": "(brief) reason for the condition's last transition.", "type": "string" }, "status": { "description": "Status of the condition, one of True, False, Unknown.", "type": "string" }, "type": { "description": "Type of job condition, Complete or Failed.", "type": "string" } }, "required": [ "type", "status" ], "type": "object" }, "io_k8s_api_batch_v1_JobList": { "description": "JobList is a collection of jobs.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "items is the list of Jobs.", "items": { "$ref": "#/definitions/io_k8s_api_batch_v1_Job" }, "type": "array" }, "kind": { "description": "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", "enum": [ "JobList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "batch", "kind": "JobList", "version": "v1" } ] }, "io_k8s_api_batch_v1_JobSpec": { "description": "JobSpec describes how the job execution will look like.", "properties": { "activeDeadlineSeconds": { "_format": "int64", "description": "Specifies the duration in seconds relative to the startTime that the job may be active before the system tries to terminate it; value must be positive integer", "type": "integer" }, "backoffLimit": { "_format": "int32", "description": "Specifies the number of retries before marking this job failed. Defaults to 6", "type": "integer" }, "completions": { "_format": "int32", "description": "Specifies the desired number of successfully finished pods the job should be run with. Setting to nil means that the success of any pod signals the success of all pods, and allows parallelism to have any positive value. Setting to 1 means that parallelism is limited to 1 and the success of that pod signals the success of the job. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/", "type": "integer" }, "manualSelector": { "description": "manualSelector controls generation of pod labels and pod selectors. Leave `manualSelector` unset unless you are certain what you are doing. When false or unset, the system pick labels unique to this job and appends those labels to the pod template. When true, the user is responsible for picking unique labels and specifying the selector. Failure to pick a unique label may cause this and other jobs to not function correctly. However, You may see `manualSelector=true` in jobs that were created with the old `extensions/v1beta1` API. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/#specifying-your-own-pod-selector", "type": "boolean" }, "parallelism": { "_format": "int32", "description": "Specifies the maximum desired number of pods the job should run at any given time. The actual number of pods running in steady state will be less than this number when ((.spec.completions - .status.successful) < .spec.parallelism), i.e. when the work left to do is less than max parallelism. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/", "type": "integer" }, "selector": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "A label query over pods that should match the pod count. Normally, the system sets this field for you. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors" }, "template": { "$ref": "#/definitions/io_k8s_api_core_v1_PodTemplateSpec", "description": "Describes the pod that will be created when executing a job. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/" }, "ttlSecondsAfterFinished": { "_format": "int32", "description": "ttlSecondsAfterFinished limits the lifetime of a Job that has finished execution (either Complete or Failed). If this field is set, ttlSecondsAfterFinished after the Job finishes, it is eligible to be automatically deleted. When the Job is being deleted, its lifecycle guarantees (e.g. finalizers) will be honored. If this field is unset, the Job won't be automatically deleted. If this field is set to zero, the Job becomes eligible to be deleted immediately after it finishes. This field is alpha-level and is only honored by servers that enable the TTLAfterFinished feature.", "type": "integer" } }, "required": [ "template" ], "type": "object" }, "io_k8s_api_batch_v1_JobStatus": { "description": "JobStatus represents the current state of a Job.", "properties": { "active": { "_format": "int32", "description": "The number of actively running pods.", "type": "integer" }, "completionTime": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Represents time when the job was completed. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC." }, "conditions": { "description": "The latest available observations of an object's current state. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/", "items": { "$ref": "#/definitions/io_k8s_api_batch_v1_JobCondition" }, "type": "array", "x-kubernetes-patch-merge-key": "type", "x-kubernetes-patch-strategy": "merge" }, "failed": { "_format": "int32", "description": "The number of pods which reached phase Failed.", "type": "integer" }, "startTime": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Represents time when the job was acknowledged by the job controller. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC." }, "succeeded": { "_format": "int32", "description": "The number of pods which reached phase Succeeded.", "type": "integer" } }, "type": "object" }, "io_k8s_api_batch_v1beta1_CronJob": { "description": "CronJob represents the configuration of a single cron job.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "CronJob" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/io_k8s_api_batch_v1beta1_CronJobSpec", "description": "Specification of the desired behavior of a cron job, including the schedule. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" }, "status": { "$ref": "#/definitions/io_k8s_api_batch_v1beta1_CronJobStatus", "description": "Current status of a cron job. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "batch", "kind": "CronJob", "version": "v1beta1" } ] }, "io_k8s_api_batch_v1beta1_CronJobList": { "description": "CronJobList is a collection of cron jobs.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "items is the list of CronJobs.", "items": { "$ref": "#/definitions/io_k8s_api_batch_v1beta1_CronJob" }, "type": "array" }, "kind": { "description": "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", "enum": [ "CronJobList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "batch", "kind": "CronJobList", "version": "v1beta1" } ] }, "io_k8s_api_batch_v1beta1_CronJobSpec": { "description": "CronJobSpec describes how the job execution will look like and when it will actually run.", "properties": { "concurrencyPolicy": { "description": "Specifies how to treat concurrent executions of a Job. Valid values are: - \"Allow\" (default): allows CronJobs to run concurrently; - \"Forbid\": forbids concurrent runs, skipping next run if previous run hasn't finished yet; - \"Replace\": cancels currently running job and replaces it with a new one", "type": "string" }, "failedJobsHistoryLimit": { "_format": "int32", "description": "The number of failed finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.", "type": "integer" }, "jobTemplate": { "$ref": "#/definitions/io_k8s_api_batch_v1beta1_JobTemplateSpec", "description": "Specifies the job that will be created when executing a CronJob." }, "schedule": { "description": "The schedule in Cron format, see https://en.wikipedia.org/wiki/Cron.", "type": "string" }, "startingDeadlineSeconds": { "_format": "int64", "description": "Optional deadline in seconds for starting the job if it misses scheduled time for any reason. Missed jobs executions will be counted as failed ones.", "type": "integer" }, "successfulJobsHistoryLimit": { "_format": "int32", "description": "The number of successful finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified. Defaults to 3.", "type": "integer" }, "suspend": { "description": "This flag tells the controller to suspend subsequent executions, it does not apply to already started executions. Defaults to false.", "type": "boolean" } }, "required": [ "schedule", "jobTemplate" ], "type": "object" }, "io_k8s_api_batch_v1beta1_CronJobStatus": { "description": "CronJobStatus represents the current state of a cron job.", "properties": { "active": { "description": "A list of pointers to currently running jobs.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_ObjectReference" }, "type": "array" }, "lastScheduleTime": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Information when was the last time the job was successfully scheduled." } }, "type": "object" }, "io_k8s_api_batch_v1beta1_JobTemplateSpec": { "description": "JobTemplateSpec describes the data a Job should have when created from a template", "properties": { "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata of the jobs created from this template. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/io_k8s_api_batch_v1_JobSpec", "description": "Specification of the desired behavior of the job. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object" }, "io_k8s_api_batch_v2alpha1_CronJob": { "description": "CronJob represents the configuration of a single cron job.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "CronJob" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/io_k8s_api_batch_v2alpha1_CronJobSpec", "description": "Specification of the desired behavior of a cron job, including the schedule. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" }, "status": { "$ref": "#/definitions/io_k8s_api_batch_v2alpha1_CronJobStatus", "description": "Current status of a cron job. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "batch", "kind": "CronJob", "version": "v2alpha1" } ] }, "io_k8s_api_batch_v2alpha1_CronJobList": { "description": "CronJobList is a collection of cron jobs.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "items is the list of CronJobs.", "items": { "$ref": "#/definitions/io_k8s_api_batch_v2alpha1_CronJob" }, "type": "array" }, "kind": { "description": "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", "enum": [ "CronJobList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "batch", "kind": "CronJobList", "version": "v2alpha1" } ] }, "io_k8s_api_batch_v2alpha1_CronJobSpec": { "description": "CronJobSpec describes how the job execution will look like and when it will actually run.", "properties": { "concurrencyPolicy": { "description": "Specifies how to treat concurrent executions of a Job. Valid values are: - \"Allow\" (default): allows CronJobs to run concurrently; - \"Forbid\": forbids concurrent runs, skipping next run if previous run hasn't finished yet; - \"Replace\": cancels currently running job and replaces it with a new one", "type": "string" }, "failedJobsHistoryLimit": { "_format": "int32", "description": "The number of failed finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified.", "type": "integer" }, "jobTemplate": { "$ref": "#/definitions/io_k8s_api_batch_v2alpha1_JobTemplateSpec", "description": "Specifies the job that will be created when executing a CronJob." }, "schedule": { "description": "The schedule in Cron format, see https://en.wikipedia.org/wiki/Cron.", "type": "string" }, "startingDeadlineSeconds": { "_format": "int64", "description": "Optional deadline in seconds for starting the job if it misses scheduled time for any reason. Missed jobs executions will be counted as failed ones.", "type": "integer" }, "successfulJobsHistoryLimit": { "_format": "int32", "description": "The number of successful finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified.", "type": "integer" }, "suspend": { "description": "This flag tells the controller to suspend subsequent executions, it does not apply to already started executions. Defaults to false.", "type": "boolean" } }, "required": [ "schedule", "jobTemplate" ], "type": "object" }, "io_k8s_api_batch_v2alpha1_CronJobStatus": { "description": "CronJobStatus represents the current state of a cron job.", "properties": { "active": { "description": "A list of pointers to currently running jobs.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_ObjectReference" }, "type": "array" }, "lastScheduleTime": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Information when was the last time the job was successfully scheduled." } }, "type": "object" }, "io_k8s_api_batch_v2alpha1_JobTemplateSpec": { "description": "JobTemplateSpec describes the data a Job should have when created from a template", "properties": { "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata of the jobs created from this template. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/io_k8s_api_batch_v1_JobSpec", "description": "Specification of the desired behavior of the job. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object" }, "io_k8s_api_certificates_v1beta1_CertificateSigningRequest": { "description": "Describes a certificate signing request", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "CertificateSigningRequest" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta" }, "spec": { "$ref": "#/definitions/io_k8s_api_certificates_v1beta1_CertificateSigningRequestSpec", "description": "The certificate request itself and any additional information." }, "status": { "$ref": "#/definitions/io_k8s_api_certificates_v1beta1_CertificateSigningRequestStatus", "description": "Derived information about the request." } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "certificates.k8s.io", "kind": "CertificateSigningRequest", "version": "v1beta1" } ] }, "io_k8s_api_certificates_v1beta1_CertificateSigningRequestCondition": { "properties": { "lastUpdateTime": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "timestamp for the last update to this condition" }, "message": { "description": "human readable message with details about the request state", "type": "string" }, "reason": { "description": "brief reason for the request state", "type": "string" }, "type": { "description": "request approval state, currently Approved or Denied.", "type": "string" } }, "required": [ "type" ], "type": "object" }, "io_k8s_api_certificates_v1beta1_CertificateSigningRequestList": { "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "items": { "$ref": "#/definitions/io_k8s_api_certificates_v1beta1_CertificateSigningRequest" }, "type": "array" }, "kind": { "description": "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", "enum": [ "CertificateSigningRequestList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "certificates.k8s.io", "kind": "CertificateSigningRequestList", "version": "v1beta1" } ] }, "io_k8s_api_certificates_v1beta1_CertificateSigningRequestSpec": { "description": "This information is immutable after the request is created. Only the Request and Usages fields can be set on creation, other fields are derived by Kubernetes and cannot be modified by users.", "properties": { "extra": { "additionalProperties": { "items": { "type": "string" }, "type": "array" }, "description": "Extra information about the requesting user. See user.Info interface for details.", "type": "object" }, "groups": { "description": "Group information about the requesting user. See user.Info interface for details.", "items": { "type": "string" }, "type": "array" }, "request": { "_format": "byte", "description": "Base64-encoded PKCS#10 CSR data", "type": "string" }, "signerName": { "description": "Requested signer for the request. It is a qualified name in the form: `scope-hostname.io/name`. If empty, it will be defaulted:\n 1. If it's a kubelet client certificate, it is assigned\n \"kubernetes.io/kube-apiserver-client-kubelet\".\n 2. If it's a kubelet serving certificate, it is assigned\n \"kubernetes.io/kubelet-serving\".\n 3. Otherwise, it is assigned \"kubernetes.io/legacy-unknown\".\nDistribution of trust for signers happens out of band. You can select on this field using `spec.signerName`.", "type": "string" }, "uid": { "description": "UID information about the requesting user. See user.Info interface for details.", "type": "string" }, "usages": { "description": "allowedUsages specifies a set of usage contexts the key will be valid for. See: https://tools.ietf.org/html/rfc5280#section-4.2.1.3\n https://tools.ietf.org/html/rfc5280#section-4.2.1.12", "items": { "type": "string" }, "type": "array" }, "username": { "description": "Information about the requesting user. See user.Info interface for details.", "type": "string" } }, "required": [ "request" ], "type": "object" }, "io_k8s_api_certificates_v1beta1_CertificateSigningRequestStatus": { "properties": { "certificate": { "_format": "byte", "description": "If request was approved, the controller will place the issued certificate here.", "type": "string" }, "conditions": { "description": "Conditions applied to the request, such as approval or denial.", "items": { "$ref": "#/definitions/io_k8s_api_certificates_v1beta1_CertificateSigningRequestCondition" }, "type": "array" } }, "type": "object" }, "io_k8s_api_coordination_v1_Lease": { "description": "Lease defines a lease concept.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "Lease" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/io_k8s_api_coordination_v1_LeaseSpec", "description": "Specification of the Lease. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "coordination.k8s.io", "kind": "Lease", "version": "v1" } ] }, "io_k8s_api_coordination_v1_LeaseList": { "description": "LeaseList is a list of Lease objects.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "Items is a list of schema objects.", "items": { "$ref": "#/definitions/io_k8s_api_coordination_v1_Lease" }, "type": "array" }, "kind": { "description": "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", "enum": [ "LeaseList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "coordination.k8s.io", "kind": "LeaseList", "version": "v1" } ] }, "io_k8s_api_coordination_v1_LeaseSpec": { "description": "LeaseSpec is a specification of a Lease.", "properties": { "acquireTime": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_MicroTime", "description": "acquireTime is a time when the current lease was acquired." }, "holderIdentity": { "description": "holderIdentity contains the identity of the holder of a current lease.", "type": "string" }, "leaseDurationSeconds": { "_format": "int32", "description": "leaseDurationSeconds is a duration that candidates for a lease need to wait to force acquire it. This is measure against time of last observed RenewTime.", "type": "integer" }, "leaseTransitions": { "_format": "int32", "description": "leaseTransitions is the number of transitions of a lease between holders.", "type": "integer" }, "renewTime": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_MicroTime", "description": "renewTime is a time when the current holder of a lease has last updated the lease." } }, "type": "object" }, "io_k8s_api_coordination_v1beta1_Lease": { "description": "Lease defines a lease concept.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "Lease" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/io_k8s_api_coordination_v1beta1_LeaseSpec", "description": "Specification of the Lease. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "coordination.k8s.io", "kind": "Lease", "version": "v1beta1" } ] }, "io_k8s_api_coordination_v1beta1_LeaseList": { "description": "LeaseList is a list of Lease objects.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "Items is a list of schema objects.", "items": { "$ref": "#/definitions/io_k8s_api_coordination_v1beta1_Lease" }, "type": "array" }, "kind": { "description": "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", "enum": [ "LeaseList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "coordination.k8s.io", "kind": "LeaseList", "version": "v1beta1" } ] }, "io_k8s_api_coordination_v1beta1_LeaseSpec": { "description": "LeaseSpec is a specification of a Lease.", "properties": { "acquireTime": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_MicroTime", "description": "acquireTime is a time when the current lease was acquired." }, "holderIdentity": { "description": "holderIdentity contains the identity of the holder of a current lease.", "type": "string" }, "leaseDurationSeconds": { "_format": "int32", "description": "leaseDurationSeconds is a duration that candidates for a lease need to wait to force acquire it. This is measure against time of last observed RenewTime.", "type": "integer" }, "leaseTransitions": { "_format": "int32", "description": "leaseTransitions is the number of transitions of a lease between holders.", "type": "integer" }, "renewTime": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_MicroTime", "description": "renewTime is a time when the current holder of a lease has last updated the lease." } }, "type": "object" }, "io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource": { "description": "Represents a Persistent Disk resource in AWS.\n\nAn AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "string" }, "partition": { "_format": "int32", "description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty).", "type": "integer" }, "readOnly": { "description": "Specify \"true\" to force and set the ReadOnly property in VolumeMounts to \"true\". If omitted, the default is \"false\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "boolean" }, "volumeID": { "description": "Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", "type": "string" } }, "required": [ "volumeID" ], "type": "object" }, "io_k8s_api_core_v1_Affinity": { "description": "Affinity is a group of affinity scheduling rules.", "properties": { "nodeAffinity": { "$ref": "#/definitions/io_k8s_api_core_v1_NodeAffinity", "description": "Describes node affinity scheduling rules for the pod." }, "podAffinity": { "$ref": "#/definitions/io_k8s_api_core_v1_PodAffinity", "description": "Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s))." }, "podAntiAffinity": { "$ref": "#/definitions/io_k8s_api_core_v1_PodAntiAffinity", "description": "Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s))." } }, "type": "object" }, "io_k8s_api_core_v1_AttachedVolume": { "description": "AttachedVolume describes a volume attached to a node", "properties": { "devicePath": { "description": "DevicePath represents the device path where the volume should be available", "type": "string" }, "name": { "description": "Name of the attached volume", "type": "string" } }, "required": [ "name", "devicePath" ], "type": "object" }, "io_k8s_api_core_v1_AzureDiskVolumeSource": { "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.", "properties": { "cachingMode": { "description": "Host Caching mode: None, Read Only, Read Write.", "type": "string" }, "diskName": { "description": "The Name of the data disk in the blob storage", "type": "string" }, "diskURI": { "description": "The URI the data disk in the blob storage", "type": "string" }, "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "kind": { "description": "Expected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" } }, "required": [ "diskName", "diskURI" ], "type": "object" }, "io_k8s_api_core_v1_AzureFilePersistentVolumeSource": { "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.", "properties": { "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretName": { "description": "the name of secret that contains Azure Storage Account Name and Key", "type": "string" }, "secretNamespace": { "description": "the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod", "type": "string" }, "shareName": { "description": "Share Name", "type": "string" } }, "required": [ "secretName", "shareName" ], "type": "object" }, "io_k8s_api_core_v1_AzureFileVolumeSource": { "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.", "properties": { "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretName": { "description": "the name of secret that contains Azure Storage Account Name and Key", "type": "string" }, "shareName": { "description": "Share Name", "type": "string" } }, "required": [ "secretName", "shareName" ], "type": "object" }, "io_k8s_api_core_v1_Binding": { "description": "Binding ties one object to another; for example, a pod is bound to a node by a scheduler. Deprecated in 1.7, please use the bindings subresource of pods instead.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "Binding" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "target": { "$ref": "#/definitions/io_k8s_api_core_v1_ObjectReference", "description": "The target object that you want to bind to the standard object." } }, "required": [ "target" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "Binding", "version": "v1" } ] }, "io_k8s_api_core_v1_CSIPersistentVolumeSource": { "description": "Represents storage that is managed by an external CSI volume driver (Beta feature)", "properties": { "controllerExpandSecretRef": { "$ref": "#/definitions/io_k8s_api_core_v1_SecretReference", "description": "ControllerExpandSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerExpandVolume call. This is an alpha field and requires enabling ExpandCSIVolumes feature gate. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed." }, "controllerPublishSecretRef": { "$ref": "#/definitions/io_k8s_api_core_v1_SecretReference", "description": "ControllerPublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerPublishVolume and ControllerUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed." }, "driver": { "description": "Driver is the name of the driver to use for this volume. Required.", "type": "string" }, "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\".", "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/io_k8s_api_core_v1_SecretReference", "description": "NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed." }, "nodeStageSecretRef": { "$ref": "#/definitions/io_k8s_api_core_v1_SecretReference", "description": "NodeStageSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeStageVolume and NodeStageVolume and NodeUnstageVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed." }, "readOnly": { "description": "Optional: The value to pass to ControllerPublishVolumeRequest. Defaults to false (read/write).", "type": "boolean" }, "volumeAttributes": { "additionalProperties": { "type": "string" }, "description": "Attributes of the volume to publish.", "type": "object" }, "volumeHandle": { "description": "VolumeHandle is the unique volume name returned by the CSI volume plugin’s CreateVolume to refer to the volume on all subsequent calls. Required.", "type": "string" } }, "required": [ "driver", "volumeHandle" ], "type": "object" }, "io_k8s_api_core_v1_CSIVolumeSource": { "description": "Represents a source location of a volume to mount, managed by an external CSI driver", "properties": { "driver": { "description": "Driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster.", "type": "string" }, "fsType": { "description": "Filesystem type to mount. Ex. \"ext4\", \"xfs\", \"ntfs\". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply.", "type": "string" }, "nodePublishSecretRef": { "$ref": "#/definitions/io_k8s_api_core_v1_LocalObjectReference", "description": "NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secret references are passed." }, "readOnly": { "description": "Specifies a read-only configuration for the volume. Defaults to false (read/write).", "type": "boolean" }, "volumeAttributes": { "additionalProperties": { "type": "string" }, "description": "VolumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values.", "type": "object" } }, "required": [ "driver" ], "type": "object" }, "io_k8s_api_core_v1_Capabilities": { "description": "Adds and removes POSIX capabilities from running containers.", "properties": { "add": { "description": "Added capabilities", "items": { "type": "string" }, "type": "array" }, "drop": { "description": "Removed capabilities", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "io_k8s_api_core_v1_CephFSPersistentVolumeSource": { "description": "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.", "properties": { "monitors": { "description": "Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "items": { "type": "string" }, "type": "array" }, "path": { "description": "Optional: Used as the mounted root, rather than the full Ceph tree, default is /", "type": "string" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "boolean" }, "secretFile": { "description": "Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "string" }, "secretRef": { "$ref": "#/definitions/io_k8s_api_core_v1_SecretReference", "description": "Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it" }, "user": { "description": "Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "string" } }, "required": [ "monitors" ], "type": "object" }, "io_k8s_api_core_v1_CephFSVolumeSource": { "description": "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.", "properties": { "monitors": { "description": "Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "items": { "type": "string" }, "type": "array" }, "path": { "description": "Optional: Used as the mounted root, rather than the full Ceph tree, default is /", "type": "string" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "boolean" }, "secretFile": { "description": "Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "string" }, "secretRef": { "$ref": "#/definitions/io_k8s_api_core_v1_LocalObjectReference", "description": "Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it" }, "user": { "description": "Optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", "type": "string" } }, "required": [ "monitors" ], "type": "object" }, "io_k8s_api_core_v1_CinderPersistentVolumeSource": { "description": "Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "string" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/io_k8s_api_core_v1_SecretReference", "description": "Optional: points to a secret object containing parameters used to connect to OpenStack." }, "volumeID": { "description": "volume id used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "string" } }, "required": [ "volumeID" ], "type": "object" }, "io_k8s_api_core_v1_CinderVolumeSource": { "description": "Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "string" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/io_k8s_api_core_v1_LocalObjectReference", "description": "Optional: points to a secret object containing parameters used to connect to OpenStack." }, "volumeID": { "description": "volume id used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", "type": "string" } }, "required": [ "volumeID" ], "type": "object" }, "io_k8s_api_core_v1_ClientIPConfig": { "description": "ClientIPConfig represents the configurations of Client IP based session affinity.", "properties": { "timeoutSeconds": { "_format": "int32", "description": "timeoutSeconds specifies the seconds of ClientIP type session sticky time. The value must be >0 && <=86400(for 1 day) if ServiceAffinity == \"ClientIP\". Default value is 10800(for 3 hours).", "type": "integer" } }, "type": "object" }, "io_k8s_api_core_v1_ComponentCondition": { "description": "Information about the condition of a component.", "properties": { "error": { "description": "Condition error code for a component. For example, a health check error code.", "type": "string" }, "message": { "description": "Message about the condition for a component. For example, information about a health check.", "type": "string" }, "status": { "description": "Status of the condition for a component. Valid values for \"Healthy\": \"True\", \"False\", or \"Unknown\".", "type": "string" }, "type": { "description": "Type of condition for a component. Valid value: \"Healthy\"", "type": "string" } }, "required": [ "type", "status" ], "type": "object" }, "io_k8s_api_core_v1_ComponentStatus": { "description": "ComponentStatus (and ComponentStatusList) holds the cluster validation info.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "conditions": { "description": "List of component conditions observed", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_ComponentCondition" }, "type": "array", "x-kubernetes-patch-merge-key": "type", "x-kubernetes-patch-strategy": "merge" }, "kind": { "description": "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", "enum": [ "ComponentStatus" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "ComponentStatus", "version": "v1" } ] }, "io_k8s_api_core_v1_ComponentStatusList": { "description": "Status of all the conditions for the component as a list of ComponentStatus objects.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of ComponentStatus objects.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_ComponentStatus" }, "type": "array" }, "kind": { "description": "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", "enum": [ "ComponentStatusList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "ComponentStatusList", "version": "v1" } ] }, "io_k8s_api_core_v1_ConfigMap": { "description": "ConfigMap holds configuration data for pods to consume.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "binaryData": { "additionalProperties": { "_format": "byte", "type": "string" }, "description": "BinaryData contains the binary data. Each key must consist of alphanumeric characters, '-', '_' or '.'. BinaryData can contain byte sequences that are not in the UTF-8 range. The keys stored in BinaryData must not overlap with the ones in the Data field, this is enforced during validation process. Using this field will require 1.10+ apiserver and kubelet.", "type": "object" }, "data": { "additionalProperties": { "type": "string" }, "description": "Data contains the configuration data. Each key must consist of alphanumeric characters, '-', '_' or '.'. Values with non-UTF-8 byte sequences must use the BinaryData field. The keys stored in Data must not overlap with the keys in the BinaryData field, this is enforced during validation process.", "type": "object" }, "immutable": { "description": "Immutable, if set to true, ensures that data stored in the ConfigMap cannot be updated (only object metadata can be modified). If not set to true, the field can be modified at any time. Defaulted to nil. This is an alpha field enabled by ImmutableEphemeralVolumes feature gate.", "type": "boolean" }, "kind": { "description": "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", "enum": [ "ConfigMap" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "ConfigMap", "version": "v1" } ] }, "io_k8s_api_core_v1_ConfigMapEnvSource": { "description": "ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.\n\nThe contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables.", "properties": { "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the ConfigMap must be defined", "type": "boolean" } }, "type": "object" }, "io_k8s_api_core_v1_ConfigMapKeySelector": { "description": "Selects a key from a ConfigMap.", "properties": { "key": { "description": "The key to select.", "type": "string" }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the ConfigMap or its key must be defined", "type": "boolean" } }, "required": [ "key" ], "type": "object" }, "io_k8s_api_core_v1_ConfigMapList": { "description": "ConfigMapList is a resource containing a list of ConfigMap objects.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "Items is the list of ConfigMaps.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_ConfigMap" }, "type": "array" }, "kind": { "description": "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", "enum": [ "ConfigMapList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "ConfigMapList", "version": "v1" } ] }, "io_k8s_api_core_v1_ConfigMapNodeConfigSource": { "description": "ConfigMapNodeConfigSource contains the information to reference a ConfigMap as a config source for the Node.", "properties": { "kubeletConfigKey": { "description": "KubeletConfigKey declares which key of the referenced ConfigMap corresponds to the KubeletConfiguration structure This field is required in all cases.", "type": "string" }, "name": { "description": "Name is the metadata.name of the referenced ConfigMap. This field is required in all cases.", "type": "string" }, "namespace": { "description": "Namespace is the metadata.namespace of the referenced ConfigMap. This field is required in all cases.", "type": "string" }, "resourceVersion": { "description": "ResourceVersion is the metadata.ResourceVersion of the referenced ConfigMap. This field is forbidden in Node.Spec, and required in Node.Status.", "type": "string" }, "uid": { "description": "UID is the metadata.UID of the referenced ConfigMap. This field is forbidden in Node.Spec, and required in Node.Status.", "type": "string" } }, "required": [ "namespace", "name", "kubeletConfigKey" ], "type": "object" }, "io_k8s_api_core_v1_ConfigMapProjection": { "description": "Adapts a ConfigMap into a projected volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode.", "properties": { "items": { "description": "If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_KeyToPath" }, "type": "array" }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the ConfigMap or its keys must be defined", "type": "boolean" } }, "type": "object" }, "io_k8s_api_core_v1_ConfigMapVolumeSource": { "description": "Adapts a ConfigMap into a volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling.", "properties": { "defaultMode": { "_format": "int32", "description": "Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "items": { "description": "If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_KeyToPath" }, "type": "array" }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the ConfigMap or its keys must be defined", "type": "boolean" } }, "type": "object" }, "io_k8s_api_core_v1_Container": { "description": "A single application container that you want to run within a pod.", "properties": { "args": { "description": "Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", "items": { "type": "string" }, "type": "array" }, "command": { "description": "Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", "items": { "type": "string" }, "type": "array" }, "env": { "description": "List of environment variables to set in the container. Cannot be updated.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_EnvVar" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "envFrom": { "description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_EnvFromSource" }, "type": "array" }, "image": { "description": "Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.", "type": "string" }, "imagePullPolicy": { "description": "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images", "type": "string" }, "lifecycle": { "$ref": "#/definitions/io_k8s_api_core_v1_Lifecycle", "description": "Actions that the management system should take in response to container lifecycle events. Cannot be updated." }, "livenessProbe": { "$ref": "#/definitions/io_k8s_api_core_v1_Probe", "description": "Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" }, "name": { "description": "Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.", "type": "string" }, "ports": { "description": "List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \"0.0.0.0\" address inside a container will be accessible from the network. Cannot be updated.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_ContainerPort" }, "type": "array", "x-kubernetes-list-map-keys": [ "containerPort", "protocol" ], "x-kubernetes-list-type": "map", "x-kubernetes-patch-merge-key": "containerPort", "x-kubernetes-patch-strategy": "merge" }, "readinessProbe": { "$ref": "#/definitions/io_k8s_api_core_v1_Probe", "description": "Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" }, "resources": { "$ref": "#/definitions/io_k8s_api_core_v1_ResourceRequirements", "description": "Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/" }, "securityContext": { "$ref": "#/definitions/io_k8s_api_core_v1_SecurityContext", "description": "Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/" }, "startupProbe": { "$ref": "#/definitions/io_k8s_api_core_v1_Probe", "description": "StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. This is a beta feature enabled by the StartupProbe feature flag. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" }, "stdin": { "description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.", "type": "boolean" }, "stdinOnce": { "description": "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false", "type": "boolean" }, "terminationMessagePath": { "description": "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.", "type": "string" }, "terminationMessagePolicy": { "description": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.", "type": "string" }, "tty": { "description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.", "type": "boolean" }, "volumeDevices": { "description": "volumeDevices is the list of block devices to be used by the container.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_VolumeDevice" }, "type": "array", "x-kubernetes-patch-merge-key": "devicePath", "x-kubernetes-patch-strategy": "merge" }, "volumeMounts": { "description": "Pod volumes to mount into the container's filesystem. Cannot be updated.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_VolumeMount" }, "type": "array", "x-kubernetes-patch-merge-key": "mountPath", "x-kubernetes-patch-strategy": "merge" }, "workingDir": { "description": "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.", "type": "string" } }, "required": [ "name" ], "type": "object" }, "io_k8s_api_core_v1_ContainerImage": { "description": "Describe a container image", "properties": { "names": { "description": "Names by which this image is known. e.g. [\"k8s.gcr.io/hyperkube:v1.0.7\", \"dockerhub.io/google_containers/hyperkube:v1.0.7\"]", "items": { "type": "string" }, "type": "array" }, "sizeBytes": { "_format": "int64", "description": "The size of the image in bytes.", "type": "integer" } }, "required": [ "names" ], "type": "object" }, "io_k8s_api_core_v1_ContainerPort": { "description": "ContainerPort represents a network port in a single container.", "properties": { "containerPort": { "_format": "int32", "description": "Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.", "type": "integer" }, "hostIP": { "description": "What host IP to bind the external port to.", "type": "string" }, "hostPort": { "_format": "int32", "description": "Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.", "type": "integer" }, "name": { "description": "If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.", "type": "string" }, "protocol": { "description": "Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \"TCP\".", "type": "string" } }, "required": [ "containerPort" ], "type": "object" }, "io_k8s_api_core_v1_ContainerState": { "description": "ContainerState holds a possible state of container. Only one of its members may be specified. If none of them is specified, the default one is ContainerStateWaiting.", "properties": { "running": { "$ref": "#/definitions/io_k8s_api_core_v1_ContainerStateRunning", "description": "Details about a running container" }, "terminated": { "$ref": "#/definitions/io_k8s_api_core_v1_ContainerStateTerminated", "description": "Details about a terminated container" }, "waiting": { "$ref": "#/definitions/io_k8s_api_core_v1_ContainerStateWaiting", "description": "Details about a waiting container" } }, "type": "object" }, "io_k8s_api_core_v1_ContainerStateRunning": { "description": "ContainerStateRunning is a running state of a container.", "properties": { "startedAt": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time at which the container was last (re-)started" } }, "type": "object" }, "io_k8s_api_core_v1_ContainerStateTerminated": { "description": "ContainerStateTerminated is a terminated state of a container.", "properties": { "containerID": { "description": "Container's ID in the format 'docker://<container_id>'", "type": "string" }, "exitCode": { "_format": "int32", "description": "Exit status from the last termination of the container", "type": "integer" }, "finishedAt": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time at which the container last terminated" }, "message": { "description": "Message regarding the last termination of the container", "type": "string" }, "reason": { "description": "(brief) reason from the last termination of the container", "type": "string" }, "signal": { "_format": "int32", "description": "Signal from the last termination of the container", "type": "integer" }, "startedAt": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time at which previous execution of the container started" } }, "required": [ "exitCode" ], "type": "object" }, "io_k8s_api_core_v1_ContainerStateWaiting": { "description": "ContainerStateWaiting is a waiting state of a container.", "properties": { "message": { "description": "Message regarding why the container is not yet running.", "type": "string" }, "reason": { "description": "(brief) reason the container is not yet running.", "type": "string" } }, "type": "object" }, "io_k8s_api_core_v1_ContainerStatus": { "description": "ContainerStatus contains details for the current status of this container.", "properties": { "containerID": { "description": "Container's ID in the format 'docker://<container_id>'.", "type": "string" }, "image": { "description": "The image the container is running. More info: https://kubernetes.io/docs/concepts/containers/images", "type": "string" }, "imageID": { "description": "ImageID of the container's image.", "type": "string" }, "lastState": { "$ref": "#/definitions/io_k8s_api_core_v1_ContainerState", "description": "Details about the container's last termination condition." }, "name": { "description": "This must be a DNS_LABEL. Each container in a pod must have a unique name. Cannot be updated.", "type": "string" }, "ready": { "description": "Specifies whether the container has passed its readiness probe.", "type": "boolean" }, "restartCount": { "_format": "int32", "description": "The number of times the container has been restarted, currently based on the number of dead containers that have not yet been removed. Note that this is calculated from dead containers. But those containers are subject to garbage collection. This value will get capped at 5 by GC.", "type": "integer" }, "started": { "description": "Specifies whether the container has passed its startup probe. Initialized as false, becomes true after startupProbe is considered successful. Resets to false when the container is restarted, or if kubelet loses state temporarily. Is always true when no startupProbe is defined.", "type": "boolean" }, "state": { "$ref": "#/definitions/io_k8s_api_core_v1_ContainerState", "description": "Details about the container's current condition." } }, "required": [ "name", "ready", "restartCount", "image", "imageID" ], "type": "object" }, "io_k8s_api_core_v1_DaemonEndpoint": { "description": "DaemonEndpoint contains information about a single Daemon endpoint.", "properties": { "Port": { "_format": "int32", "description": "Port number of the given endpoint.", "type": "integer" } }, "required": [ "Port" ], "type": "object" }, "io_k8s_api_core_v1_DownwardAPIProjection": { "description": "Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.", "properties": { "items": { "description": "Items is a list of DownwardAPIVolume file", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_DownwardAPIVolumeFile" }, "type": "array" } }, "type": "object" }, "io_k8s_api_core_v1_DownwardAPIVolumeFile": { "description": "DownwardAPIVolumeFile represents information to create the file containing the pod field", "properties": { "fieldRef": { "$ref": "#/definitions/io_k8s_api_core_v1_ObjectFieldSelector", "description": "Required: Selects a field of the pod: only annotations, labels, name and namespace are supported." }, "mode": { "_format": "int32", "description": "Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "path": { "description": "Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'", "type": "string" }, "resourceFieldRef": { "$ref": "#/definitions/io_k8s_api_core_v1_ResourceFieldSelector", "description": "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported." } }, "required": [ "path" ], "type": "object" }, "io_k8s_api_core_v1_DownwardAPIVolumeSource": { "description": "DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.", "properties": { "defaultMode": { "_format": "int32", "description": "Optional: mode bits to use on created files by default. Must be a Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "items": { "description": "Items is a list of downward API volume file", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_DownwardAPIVolumeFile" }, "type": "array" } }, "type": "object" }, "io_k8s_api_core_v1_EmptyDirVolumeSource": { "description": "Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.", "properties": { "medium": { "description": "What type of storage medium should back this directory. The default is \"\" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir", "type": "string" }, "sizeLimit": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "Total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir" } }, "type": "object" }, "io_k8s_api_core_v1_EndpointAddress": { "description": "EndpointAddress is a tuple that describes single IP address.", "properties": { "hostname": { "description": "The Hostname of this endpoint", "type": "string" }, "ip": { "description": "The IP of this endpoint. May not be loopback (127.0.0.0/8), link-local (169.254.0.0/16), or link-local multicast ((224.0.0.0/24). IPv6 is also accepted but not fully supported on all platforms. Also, certain kubernetes components, like kube-proxy, are not IPv6 ready.", "type": "string" }, "nodeName": { "description": "Optional: Node hosting this endpoint. This can be used to determine endpoints local to a node.", "type": "string" }, "targetRef": { "$ref": "#/definitions/io_k8s_api_core_v1_ObjectReference", "description": "Reference to object providing the endpoint." } }, "required": [ "ip" ], "type": "object" }, "io_k8s_api_core_v1_EndpointPort": { "description": "EndpointPort is a tuple that describes a single port.", "properties": { "appProtocol": { "description": "The application protocol for this port. This field follows standard Kubernetes label syntax. Un-prefixed names are reserved for IANA standard service names (as per RFC-6335 and http://www.iana.org/assignments/service-names). Non-standard protocols should use prefixed names such as mycompany.com/my-custom-protocol. Field can be enabled with ServiceAppProtocol feature gate.", "type": "string" }, "name": { "description": "The name of this port. This must match the 'name' field in the corresponding ServicePort. Must be a DNS_LABEL. Optional only if one port is defined.", "type": "string" }, "port": { "_format": "int32", "description": "The port number of the endpoint.", "type": "integer" }, "protocol": { "description": "The IP protocol for this port. Must be UDP, TCP, or SCTP. Default is TCP.", "type": "string" } }, "required": [ "port" ], "type": "object" }, "io_k8s_api_core_v1_EndpointSubset": { "description": "EndpointSubset is a group of addresses with a common set of ports. The expanded set of endpoints is the Cartesian product of Addresses x Ports. For example, given:\n {\n Addresses: [{\"ip\": \"10.10.1.1\"}, {\"ip\": \"10.10.2.2\"}],\n Ports: [{\"name\": \"a\", \"port\": 8675}, {\"name\": \"b\", \"port\": 309}]\n }\nThe resulting set of endpoints can be viewed as:\n a: [ 10.10.1.1:8675, 10.10.2.2:8675 ],\n b: [ 10.10.1.1:309, 10.10.2.2:309 ]", "properties": { "addresses": { "description": "IP addresses which offer the related ports that are marked as ready. These endpoints should be considered safe for load balancers and clients to utilize.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_EndpointAddress" }, "type": "array" }, "notReadyAddresses": { "description": "IP addresses which offer the related ports but are not currently marked as ready because they have not yet finished starting, have recently failed a readiness check, or have recently failed a liveness check.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_EndpointAddress" }, "type": "array" }, "ports": { "description": "Port numbers available on the related IP addresses.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_EndpointPort" }, "type": "array" } }, "type": "object" }, "io_k8s_api_core_v1_Endpoints": { "description": "Endpoints is a collection of endpoints that implement the actual service. Example:\n Name: \"mysvc\",\n Subsets: [\n {\n Addresses: [{\"ip\": \"10.10.1.1\"}, {\"ip\": \"10.10.2.2\"}],\n Ports: [{\"name\": \"a\", \"port\": 8675}, {\"name\": \"b\", \"port\": 309}]\n },\n {\n Addresses: [{\"ip\": \"10.10.3.3\"}],\n Ports: [{\"name\": \"a\", \"port\": 93}, {\"name\": \"b\", \"port\": 76}]\n },\n ]", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "Endpoints" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "subsets": { "description": "The set of all endpoints is the union of all subsets. Addresses are placed into subsets according to the IPs they share. A single address with multiple ports, some of which are ready and some of which are not (because they come from different containers) will result in the address being displayed in different subsets for the different ports. No address will appear in both Addresses and NotReadyAddresses in the same subset. Sets of addresses and ports that comprise a service.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_EndpointSubset" }, "type": "array" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "Endpoints", "version": "v1" } ] }, "io_k8s_api_core_v1_EndpointsList": { "description": "EndpointsList is a list of endpoints.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of endpoints.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_Endpoints" }, "type": "array" }, "kind": { "description": "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", "enum": [ "EndpointsList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "EndpointsList", "version": "v1" } ] }, "io_k8s_api_core_v1_EnvFromSource": { "description": "EnvFromSource represents the source of a set of ConfigMaps", "properties": { "configMapRef": { "$ref": "#/definitions/io_k8s_api_core_v1_ConfigMapEnvSource", "description": "The ConfigMap to select from" }, "prefix": { "description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.", "type": "string" }, "secretRef": { "$ref": "#/definitions/io_k8s_api_core_v1_SecretEnvSource", "description": "The Secret to select from" } }, "type": "object" }, "io_k8s_api_core_v1_EnvVar": { "description": "EnvVar represents an environment variable present in a Container.", "properties": { "name": { "description": "Name of the environment variable. Must be a C_IDENTIFIER.", "type": "string" }, "value": { "description": "Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \"\".", "type": "string" }, "valueFrom": { "$ref": "#/definitions/io_k8s_api_core_v1_EnvVarSource", "description": "Source for the environment variable's value. Cannot be used if value is not empty." } }, "required": [ "name" ], "type": "object" }, "io_k8s_api_core_v1_EnvVarSource": { "description": "EnvVarSource represents a source for the value of an EnvVar.", "properties": { "configMapKeyRef": { "$ref": "#/definitions/io_k8s_api_core_v1_ConfigMapKeySelector", "description": "Selects a key of a ConfigMap." }, "fieldRef": { "$ref": "#/definitions/io_k8s_api_core_v1_ObjectFieldSelector", "description": "Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs." }, "resourceFieldRef": { "$ref": "#/definitions/io_k8s_api_core_v1_ResourceFieldSelector", "description": "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported." }, "secretKeyRef": { "$ref": "#/definitions/io_k8s_api_core_v1_SecretKeySelector", "description": "Selects a key of a secret in the pod's namespace" } }, "type": "object" }, "io_k8s_api_core_v1_EphemeralContainer": { "description": "An EphemeralContainer is a container that may be added temporarily to an existing pod for user-initiated activities such as debugging. Ephemeral containers have no resource or scheduling guarantees, and they will not be restarted when they exit or when a pod is removed or restarted. If an ephemeral container causes a pod to exceed its resource allocation, the pod may be evicted. Ephemeral containers may not be added by directly updating the pod spec. They must be added via the pod's ephemeralcontainers subresource, and they will appear in the pod spec once added. This is an alpha feature enabled by the EphemeralContainers feature flag.", "properties": { "args": { "description": "Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", "items": { "type": "string" }, "type": "array" }, "command": { "description": "Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", "items": { "type": "string" }, "type": "array" }, "env": { "description": "List of environment variables to set in the container. Cannot be updated.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_EnvVar" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "envFrom": { "description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_EnvFromSource" }, "type": "array" }, "image": { "description": "Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images", "type": "string" }, "imagePullPolicy": { "description": "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images", "type": "string" }, "lifecycle": { "$ref": "#/definitions/io_k8s_api_core_v1_Lifecycle", "description": "Lifecycle is not allowed for ephemeral containers." }, "livenessProbe": { "$ref": "#/definitions/io_k8s_api_core_v1_Probe", "description": "Probes are not allowed for ephemeral containers." }, "name": { "description": "Name of the ephemeral container specified as a DNS_LABEL. This name must be unique among all containers, init containers and ephemeral containers.", "type": "string" }, "ports": { "description": "Ports are not allowed for ephemeral containers.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_ContainerPort" }, "type": "array" }, "readinessProbe": { "$ref": "#/definitions/io_k8s_api_core_v1_Probe", "description": "Probes are not allowed for ephemeral containers." }, "resources": { "$ref": "#/definitions/io_k8s_api_core_v1_ResourceRequirements", "description": "Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod." }, "securityContext": { "$ref": "#/definitions/io_k8s_api_core_v1_SecurityContext", "description": "SecurityContext is not allowed for ephemeral containers." }, "startupProbe": { "$ref": "#/definitions/io_k8s_api_core_v1_Probe", "description": "Probes are not allowed for ephemeral containers." }, "stdin": { "description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.", "type": "boolean" }, "stdinOnce": { "description": "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false", "type": "boolean" }, "targetContainerName": { "description": "If set, the name of the container from PodSpec that this ephemeral container targets. The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container. If not set then the ephemeral container is run in whatever namespaces are shared for the pod. Note that the container runtime must support this feature.", "type": "string" }, "terminationMessagePath": { "description": "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.", "type": "string" }, "terminationMessagePolicy": { "description": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.", "type": "string" }, "tty": { "description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.", "type": "boolean" }, "volumeDevices": { "description": "volumeDevices is the list of block devices to be used by the container.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_VolumeDevice" }, "type": "array", "x-kubernetes-patch-merge-key": "devicePath", "x-kubernetes-patch-strategy": "merge" }, "volumeMounts": { "description": "Pod volumes to mount into the container's filesystem. Cannot be updated.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_VolumeMount" }, "type": "array", "x-kubernetes-patch-merge-key": "mountPath", "x-kubernetes-patch-strategy": "merge" }, "workingDir": { "description": "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.", "type": "string" } }, "required": [ "name" ], "type": "object" }, "io_k8s_api_core_v1_Event": { "description": "Event is a report of an event somewhere in the cluster.", "properties": { "action": { "description": "What action was taken/failed regarding to the Regarding object.", "type": "string" }, "apiVersion": { "description": "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", "type": "string" }, "count": { "_format": "int32", "description": "The number of times this event has occurred.", "type": "integer" }, "eventTime": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_MicroTime", "description": "Time when this Event was first observed." }, "firstTimestamp": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "The time at which the event was first recorded. (Time of server receipt is in TypeMeta.)" }, "involvedObject": { "$ref": "#/definitions/io_k8s_api_core_v1_ObjectReference", "description": "The object that this event is about." }, "kind": { "description": "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", "enum": [ "Event" ], "type": "string" }, "lastTimestamp": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "The time at which the most recent occurrence of this event was recorded." }, "message": { "description": "A human-readable description of the status of this operation.", "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "reason": { "description": "This should be a short, machine understandable string that gives the reason for the transition into the object's current status.", "type": "string" }, "related": { "$ref": "#/definitions/io_k8s_api_core_v1_ObjectReference", "description": "Optional secondary object for more complex actions." }, "reportingComponent": { "description": "Name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`.", "type": "string" }, "reportingInstance": { "description": "ID of the controller instance, e.g. `kubelet-xyzf`.", "type": "string" }, "series": { "$ref": "#/definitions/io_k8s_api_core_v1_EventSeries", "description": "Data about the Event series this event represents or nil if it's a singleton Event." }, "source": { "$ref": "#/definitions/io_k8s_api_core_v1_EventSource", "description": "The component reporting this event. Should be a short machine understandable string." }, "type": { "description": "Type of this event (Normal, Warning), new types could be added in the future", "type": "string" } }, "required": [ "metadata", "involvedObject" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "Event", "version": "v1" } ] }, "io_k8s_api_core_v1_EventList": { "description": "EventList is a list of events.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of events", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_Event" }, "type": "array" }, "kind": { "description": "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", "enum": [ "EventList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "EventList", "version": "v1" } ] }, "io_k8s_api_core_v1_EventSeries": { "description": "EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time.", "properties": { "count": { "_format": "int32", "description": "Number of occurrences in this series up to the last heartbeat time", "type": "integer" }, "lastObservedTime": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_MicroTime", "description": "Time of the last occurrence observed" }, "state": { "description": "State of this Series: Ongoing or Finished Deprecated. Planned removal for 1.18", "type": "string" } }, "type": "object" }, "io_k8s_api_core_v1_EventSource": { "description": "EventSource contains information for an event.", "properties": { "component": { "description": "Component from which the event is generated.", "type": "string" }, "host": { "description": "Node name on which the event is generated.", "type": "string" } }, "type": "object" }, "io_k8s_api_core_v1_ExecAction": { "description": "ExecAction describes a \"run in container\" action.", "properties": { "command": { "description": "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "io_k8s_api_core_v1_FCVolumeSource": { "description": "Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "lun": { "_format": "int32", "description": "Optional: FC target lun number", "type": "integer" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "targetWWNs": { "description": "Optional: FC target worldwide names (WWNs)", "items": { "type": "string" }, "type": "array" }, "wwids": { "description": "Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "io_k8s_api_core_v1_FlexPersistentVolumeSource": { "description": "FlexPersistentVolumeSource represents a generic persistent volume resource that is provisioned/attached using an exec based plugin.", "properties": { "driver": { "description": "Driver is the name of the driver to use for this volume.", "type": "string" }, "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.", "type": "string" }, "options": { "additionalProperties": { "type": "string" }, "description": "Optional: Extra command options if any.", "type": "object" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/io_k8s_api_core_v1_SecretReference", "description": "Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts." } }, "required": [ "driver" ], "type": "object" }, "io_k8s_api_core_v1_FlexVolumeSource": { "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.", "properties": { "driver": { "description": "Driver is the name of the driver to use for this volume.", "type": "string" }, "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.", "type": "string" }, "options": { "additionalProperties": { "type": "string" }, "description": "Optional: Extra command options if any.", "type": "object" }, "readOnly": { "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/io_k8s_api_core_v1_LocalObjectReference", "description": "Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts." } }, "required": [ "driver" ], "type": "object" }, "io_k8s_api_core_v1_FlockerVolumeSource": { "description": "Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.", "properties": { "datasetName": { "description": "Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated", "type": "string" }, "datasetUUID": { "description": "UUID of the dataset. This is unique identifier of a Flocker dataset", "type": "string" } }, "type": "object" }, "io_k8s_api_core_v1_GCEPersistentDiskVolumeSource": { "description": "Represents a Persistent Disk resource in Google Compute Engine.\n\nA GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "string" }, "partition": { "_format": "int32", "description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "integer" }, "pdName": { "description": "Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", "type": "boolean" } }, "required": [ "pdName" ], "type": "object" }, "io_k8s_api_core_v1_GitRepoVolumeSource": { "description": "Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling.\n\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.", "properties": { "directory": { "description": "Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.", "type": "string" }, "repository": { "description": "Repository URL", "type": "string" }, "revision": { "description": "Commit hash for the specified revision.", "type": "string" } }, "required": [ "repository" ], "type": "object" }, "io_k8s_api_core_v1_GlusterfsPersistentVolumeSource": { "description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.", "properties": { "endpoints": { "description": "EndpointsName is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "string" }, "endpointsNamespace": { "description": "EndpointsNamespace is the namespace that contains Glusterfs endpoint. If this field is empty, the EndpointNamespace defaults to the same namespace as the bound PVC. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "string" }, "path": { "description": "Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "boolean" } }, "required": [ "endpoints", "path" ], "type": "object" }, "io_k8s_api_core_v1_GlusterfsVolumeSource": { "description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.", "properties": { "endpoints": { "description": "EndpointsName is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "string" }, "path": { "description": "Path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", "type": "boolean" } }, "required": [ "endpoints", "path" ], "type": "object" }, "io_k8s_api_core_v1_HTTPGetAction": { "description": "HTTPGetAction describes an action based on HTTP Get requests.", "properties": { "host": { "description": "Host name to connect to, defaults to the pod IP. You probably want to set \"Host\" in httpHeaders instead.", "type": "string" }, "httpHeaders": { "description": "Custom headers to set in the request. HTTP allows repeated headers.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_HTTPHeader" }, "type": "array" }, "path": { "description": "Path to access on the HTTP server.", "type": "string" }, "port": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_util_intstr_IntOrString", "description": "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." }, "scheme": { "description": "Scheme to use for connecting to the host. Defaults to HTTP.", "type": "string" } }, "required": [ "port" ], "type": "object" }, "io_k8s_api_core_v1_HTTPHeader": { "description": "HTTPHeader describes a custom header to be used in HTTP probes", "properties": { "name": { "description": "The header field name", "type": "string" }, "value": { "description": "The header field value", "type": "string" } }, "required": [ "name", "value" ], "type": "object" }, "io_k8s_api_core_v1_Handler": { "description": "Handler defines a specific action that should be taken", "properties": { "exec": { "$ref": "#/definitions/io_k8s_api_core_v1_ExecAction", "description": "One and only one of the following should be specified. Exec specifies the action to take." }, "httpGet": { "$ref": "#/definitions/io_k8s_api_core_v1_HTTPGetAction", "description": "HTTPGet specifies the http request to perform." }, "tcpSocket": { "$ref": "#/definitions/io_k8s_api_core_v1_TCPSocketAction", "description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported" } }, "type": "object" }, "io_k8s_api_core_v1_HostAlias": { "description": "HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.", "properties": { "hostnames": { "description": "Hostnames for the above IP address.", "items": { "type": "string" }, "type": "array" }, "ip": { "description": "IP address of the host file entry.", "type": "string" } }, "type": "object" }, "io_k8s_api_core_v1_HostPathVolumeSource": { "description": "Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.", "properties": { "path": { "description": "Path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", "type": "string" }, "type": { "description": "Type for HostPath Volume Defaults to \"\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", "type": "string" } }, "required": [ "path" ], "type": "object" }, "io_k8s_api_core_v1_ISCSIPersistentVolumeSource": { "description": "ISCSIPersistentVolumeSource represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.", "properties": { "chapAuthDiscovery": { "description": "whether support iSCSI Discovery CHAP authentication", "type": "boolean" }, "chapAuthSession": { "description": "whether support iSCSI Session CHAP authentication", "type": "boolean" }, "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi", "type": "string" }, "initiatorName": { "description": "Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection.", "type": "string" }, "iqn": { "description": "Target iSCSI Qualified Name.", "type": "string" }, "iscsiInterface": { "description": "iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).", "type": "string" }, "lun": { "_format": "int32", "description": "iSCSI Target Lun number.", "type": "integer" }, "portals": { "description": "iSCSI Target Portal List. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).", "items": { "type": "string" }, "type": "array" }, "readOnly": { "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/io_k8s_api_core_v1_SecretReference", "description": "CHAP Secret for iSCSI target and initiator authentication" }, "targetPortal": { "description": "iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).", "type": "string" } }, "required": [ "targetPortal", "iqn", "lun" ], "type": "object" }, "io_k8s_api_core_v1_ISCSIVolumeSource": { "description": "Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.", "properties": { "chapAuthDiscovery": { "description": "whether support iSCSI Discovery CHAP authentication", "type": "boolean" }, "chapAuthSession": { "description": "whether support iSCSI Session CHAP authentication", "type": "boolean" }, "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi", "type": "string" }, "initiatorName": { "description": "Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection.", "type": "string" }, "iqn": { "description": "Target iSCSI Qualified Name.", "type": "string" }, "iscsiInterface": { "description": "iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).", "type": "string" }, "lun": { "_format": "int32", "description": "iSCSI Target Lun number.", "type": "integer" }, "portals": { "description": "iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).", "items": { "type": "string" }, "type": "array" }, "readOnly": { "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/io_k8s_api_core_v1_LocalObjectReference", "description": "CHAP Secret for iSCSI target and initiator authentication" }, "targetPortal": { "description": "iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).", "type": "string" } }, "required": [ "targetPortal", "iqn", "lun" ], "type": "object" }, "io_k8s_api_core_v1_KeyToPath": { "description": "Maps a string key to a path within a volume.", "properties": { "key": { "description": "The key to project.", "type": "string" }, "mode": { "_format": "int32", "description": "Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "path": { "description": "The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.", "type": "string" } }, "required": [ "key", "path" ], "type": "object" }, "io_k8s_api_core_v1_Lifecycle": { "description": "Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.", "properties": { "postStart": { "$ref": "#/definitions/io_k8s_api_core_v1_Handler", "description": "PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks" }, "preStop": { "$ref": "#/definitions/io_k8s_api_core_v1_Handler", "description": "PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The reason for termination is passed to the handler. The Pod's termination grace period countdown begins before the PreStop hooked is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period. Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks" } }, "type": "object" }, "io_k8s_api_core_v1_LimitRange": { "description": "LimitRange sets resource usage limits for each kind of resource in a Namespace.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "LimitRange" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/io_k8s_api_core_v1_LimitRangeSpec", "description": "Spec defines the limits enforced. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "LimitRange", "version": "v1" } ] }, "io_k8s_api_core_v1_LimitRangeItem": { "description": "LimitRangeItem defines a min/max usage limit for any resource that matches on kind.", "properties": { "default": { "additionalProperties": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "Default resource requirement limit value by resource name if resource limit is omitted.", "type": "object" }, "defaultRequest": { "additionalProperties": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "DefaultRequest is the default resource requirement request value by resource name if resource request is omitted.", "type": "object" }, "max": { "additionalProperties": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "Max usage constraints on this kind by resource name.", "type": "object" }, "maxLimitRequestRatio": { "additionalProperties": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "MaxLimitRequestRatio if specified, the named resource must have a request and limit that are both non-zero where limit divided by request is less than or equal to the enumerated value; this represents the max burst for the named resource.", "type": "object" }, "min": { "additionalProperties": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "Min usage constraints on this kind by resource name.", "type": "object" }, "type": { "description": "Type of resource that this limit applies to.", "type": "string" } }, "required": [ "type" ], "type": "object" }, "io_k8s_api_core_v1_LimitRangeList": { "description": "LimitRangeList is a list of LimitRange items.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "Items is a list of LimitRange objects. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_LimitRange" }, "type": "array" }, "kind": { "description": "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", "enum": [ "LimitRangeList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "LimitRangeList", "version": "v1" } ] }, "io_k8s_api_core_v1_LimitRangeSpec": { "description": "LimitRangeSpec defines a min/max usage limit for resources that match on kind.", "properties": { "limits": { "description": "Limits is the list of LimitRangeItem objects that are enforced.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_LimitRangeItem" }, "type": "array" } }, "required": [ "limits" ], "type": "object" }, "io_k8s_api_core_v1_LoadBalancerIngress": { "description": "LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.", "properties": { "hostname": { "description": "Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers)", "type": "string" }, "ip": { "description": "IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)", "type": "string" } }, "type": "object" }, "io_k8s_api_core_v1_LoadBalancerStatus": { "description": "LoadBalancerStatus represents the status of a load-balancer.", "properties": { "ingress": { "description": "Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_LoadBalancerIngress" }, "type": "array" } }, "type": "object" }, "io_k8s_api_core_v1_LocalObjectReference": { "description": "LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.", "properties": { "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" } }, "type": "object" }, "io_k8s_api_core_v1_LocalVolumeSource": { "description": "Local represents directly-attached storage with node affinity (Beta feature)", "properties": { "fsType": { "description": "Filesystem type to mount. It applies only when the Path is a block device. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default value is to auto-select a fileystem if unspecified.", "type": "string" }, "path": { "description": "The full path to the volume on the node. It can be either a directory or block device (disk, partition, ...).", "type": "string" } }, "required": [ "path" ], "type": "object" }, "io_k8s_api_core_v1_NFSVolumeSource": { "description": "Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.", "properties": { "path": { "description": "Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", "type": "boolean" }, "server": { "description": "Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", "type": "string" } }, "required": [ "server", "path" ], "type": "object" }, "io_k8s_api_core_v1_Namespace": { "description": "Namespace provides a scope for Names. Use of multiple namespaces is optional.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "Namespace" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/io_k8s_api_core_v1_NamespaceSpec", "description": "Spec defines the behavior of the Namespace. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" }, "status": { "$ref": "#/definitions/io_k8s_api_core_v1_NamespaceStatus", "description": "Status describes the current status of a Namespace. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "Namespace", "version": "v1" } ] }, "io_k8s_api_core_v1_NamespaceCondition": { "description": "NamespaceCondition contains details about state of namespace.", "properties": { "lastTransitionTime": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time" }, "message": { "type": "string" }, "reason": { "type": "string" }, "status": { "description": "Status of the condition, one of True, False, Unknown.", "type": "string" }, "type": { "description": "Type of namespace controller condition.", "type": "string" } }, "required": [ "type", "status" ], "type": "object" }, "io_k8s_api_core_v1_NamespaceList": { "description": "NamespaceList is a list of Namespaces.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "Items is the list of Namespace objects in the list. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_Namespace" }, "type": "array" }, "kind": { "description": "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", "enum": [ "NamespaceList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "NamespaceList", "version": "v1" } ] }, "io_k8s_api_core_v1_NamespaceSpec": { "description": "NamespaceSpec describes the attributes on a Namespace.", "properties": { "finalizers": { "description": "Finalizers is an opaque list of values that must be empty to permanently remove object from storage. More info: https://kubernetes.io/docs/tasks/administer-cluster/namespaces/", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "io_k8s_api_core_v1_NamespaceStatus": { "description": "NamespaceStatus is information about the current status of a Namespace.", "properties": { "conditions": { "description": "Represents the latest available observations of a namespace's current state.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_NamespaceCondition" }, "type": "array", "x-kubernetes-patch-merge-key": "type", "x-kubernetes-patch-strategy": "merge" }, "phase": { "description": "Phase is the current lifecycle phase of the namespace. More info: https://kubernetes.io/docs/tasks/administer-cluster/namespaces/", "type": "string" } }, "type": "object" }, "io_k8s_api_core_v1_Node": { "description": "Node is a worker node in Kubernetes. Each node will have a unique identifier in the cache (i.e. in etcd).", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "Node" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/io_k8s_api_core_v1_NodeSpec", "description": "Spec defines the behavior of a node. https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" }, "status": { "$ref": "#/definitions/io_k8s_api_core_v1_NodeStatus", "description": "Most recently observed status of the node. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "Node", "version": "v1" } ] }, "io_k8s_api_core_v1_NodeAddress": { "description": "NodeAddress contains information for the node's address.", "properties": { "address": { "description": "The node address.", "type": "string" }, "type": { "description": "Node address type, one of Hostname, ExternalIP or InternalIP.", "type": "string" } }, "required": [ "type", "address" ], "type": "object" }, "io_k8s_api_core_v1_NodeAffinity": { "description": "Node affinity is a group of node affinity scheduling rules.", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_PreferredSchedulingTerm" }, "type": "array" }, "requiredDuringSchedulingIgnoredDuringExecution": { "$ref": "#/definitions/io_k8s_api_core_v1_NodeSelector", "description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node." } }, "type": "object" }, "io_k8s_api_core_v1_NodeCondition": { "description": "NodeCondition contains condition information for a node.", "properties": { "lastHeartbeatTime": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Last time we got an update on a given condition." }, "lastTransitionTime": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Last time the condition transit from one status to another." }, "message": { "description": "Human readable message indicating details about last transition.", "type": "string" }, "reason": { "description": "(brief) reason for the condition's last transition.", "type": "string" }, "status": { "description": "Status of the condition, one of True, False, Unknown.", "type": "string" }, "type": { "description": "Type of node condition.", "type": "string" } }, "required": [ "type", "status" ], "type": "object" }, "io_k8s_api_core_v1_NodeConfigSource": { "description": "NodeConfigSource specifies a source of node configuration. Exactly one subfield (excluding metadata) must be non-nil.", "properties": { "configMap": { "$ref": "#/definitions/io_k8s_api_core_v1_ConfigMapNodeConfigSource", "description": "ConfigMap is a reference to a Node's ConfigMap" } }, "type": "object" }, "io_k8s_api_core_v1_NodeConfigStatus": { "description": "NodeConfigStatus describes the status of the config assigned by Node.Spec.ConfigSource.", "properties": { "active": { "$ref": "#/definitions/io_k8s_api_core_v1_NodeConfigSource", "description": "Active reports the checkpointed config the node is actively using. Active will represent either the current version of the Assigned config, or the current LastKnownGood config, depending on whether attempting to use the Assigned config results in an error." }, "assigned": { "$ref": "#/definitions/io_k8s_api_core_v1_NodeConfigSource", "description": "Assigned reports the checkpointed config the node will try to use. When Node.Spec.ConfigSource is updated, the node checkpoints the associated config payload to local disk, along with a record indicating intended config. The node refers to this record to choose its config checkpoint, and reports this record in Assigned. Assigned only updates in the status after the record has been checkpointed to disk. When the Kubelet is restarted, it tries to make the Assigned config the Active config by loading and validating the checkpointed payload identified by Assigned." }, "error": { "description": "Error describes any problems reconciling the Spec.ConfigSource to the Active config. Errors may occur, for example, attempting to checkpoint Spec.ConfigSource to the local Assigned record, attempting to checkpoint the payload associated with Spec.ConfigSource, attempting to load or validate the Assigned config, etc. Errors may occur at different points while syncing config. Earlier errors (e.g. download or checkpointing errors) will not result in a rollback to LastKnownGood, and may resolve across Kubelet retries. Later errors (e.g. loading or validating a checkpointed config) will result in a rollback to LastKnownGood. In the latter case, it is usually possible to resolve the error by fixing the config assigned in Spec.ConfigSource. You can find additional information for debugging by searching the error message in the Kubelet log. Error is a human-readable description of the error state; machines can check whether or not Error is empty, but should not rely on the stability of the Error text across Kubelet versions.", "type": "string" }, "lastKnownGood": { "$ref": "#/definitions/io_k8s_api_core_v1_NodeConfigSource", "description": "LastKnownGood reports the checkpointed config the node will fall back to when it encounters an error attempting to use the Assigned config. The Assigned config becomes the LastKnownGood config when the node determines that the Assigned config is stable and correct. This is currently implemented as a 10-minute soak period starting when the local record of Assigned config is updated. If the Assigned config is Active at the end of this period, it becomes the LastKnownGood. Note that if Spec.ConfigSource is reset to nil (use local defaults), the LastKnownGood is also immediately reset to nil, because the local default config is always assumed good. You should not make assumptions about the node's method of determining config stability and correctness, as this may change or become configurable in the future." } }, "type": "object" }, "io_k8s_api_core_v1_NodeDaemonEndpoints": { "description": "NodeDaemonEndpoints lists ports opened by daemons running on the Node.", "properties": { "kubeletEndpoint": { "$ref": "#/definitions/io_k8s_api_core_v1_DaemonEndpoint", "description": "Endpoint on which Kubelet is listening." } }, "type": "object" }, "io_k8s_api_core_v1_NodeList": { "description": "NodeList is the whole list of all Nodes which have been registered with master.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of nodes", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_Node" }, "type": "array" }, "kind": { "description": "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", "enum": [ "NodeList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "NodeList", "version": "v1" } ] }, "io_k8s_api_core_v1_NodeSelector": { "description": "A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.", "properties": { "nodeSelectorTerms": { "description": "Required. A list of node selector terms. The terms are ORed.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_NodeSelectorTerm" }, "type": "array" } }, "required": [ "nodeSelectorTerms" ], "type": "object" }, "io_k8s_api_core_v1_NodeSelectorRequirement": { "description": "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", "properties": { "key": { "description": "The label key that the selector applies to.", "type": "string" }, "operator": { "description": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.", "type": "string" }, "values": { "description": "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. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.", "items": { "type": "string" }, "type": "array" } }, "required": [ "key", "operator" ], "type": "object" }, "io_k8s_api_core_v1_NodeSelectorTerm": { "description": "A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.", "properties": { "matchExpressions": { "description": "A list of node selector requirements by node's labels.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_NodeSelectorRequirement" }, "type": "array" }, "matchFields": { "description": "A list of node selector requirements by node's fields.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_NodeSelectorRequirement" }, "type": "array" } }, "type": "object" }, "io_k8s_api_core_v1_NodeSpec": { "description": "NodeSpec describes the attributes that a node is created with.", "properties": { "configSource": { "$ref": "#/definitions/io_k8s_api_core_v1_NodeConfigSource", "description": "If specified, the source to get node configuration from The DynamicKubeletConfig feature gate must be enabled for the Kubelet to use this field" }, "externalID": { "description": "Deprecated. Not all kubelets will set this field. Remove field after 1.13. see: https://issues.k8s.io/61966", "type": "string" }, "podCIDR": { "description": "PodCIDR represents the pod IP range assigned to the node.", "type": "string" }, "podCIDRs": { "description": "podCIDRs represents the IP ranges assigned to the node for usage by Pods on that node. If this field is specified, the 0th entry must match the podCIDR field. It may contain at most 1 value for each of IPv4 and IPv6.", "items": { "type": "string" }, "type": "array", "x-kubernetes-patch-strategy": "merge" }, "providerID": { "description": "ID of the node assigned by the cloud provider in the format: <ProviderName>://<ProviderSpecificNodeID>", "type": "string" }, "taints": { "description": "If specified, the node's taints.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_Taint" }, "type": "array" }, "unschedulable": { "description": "Unschedulable controls node schedulability of new pods. By default, node is schedulable. More info: https://kubernetes.io/docs/concepts/nodes/node/#manual-node-administration", "type": "boolean" } }, "type": "object" }, "io_k8s_api_core_v1_NodeStatus": { "description": "NodeStatus is information about the current status of a node.", "properties": { "addresses": { "description": "List of addresses reachable to the node. Queried from cloud provider, if available. More info: https://kubernetes.io/docs/concepts/nodes/node/#addresses Note: This field is declared as mergeable, but the merge key is not sufficiently unique, which can cause data corruption when it is merged. Callers should instead use a full-replacement patch. See http://pr.k8s.io/79391 for an example.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_NodeAddress" }, "type": "array", "x-kubernetes-patch-merge-key": "type", "x-kubernetes-patch-strategy": "merge" }, "allocatable": { "additionalProperties": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "Allocatable represents the resources of a node that are available for scheduling. Defaults to Capacity.", "type": "object" }, "capacity": { "additionalProperties": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "Capacity represents the total resources of a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity", "type": "object" }, "conditions": { "description": "Conditions is an array of current observed node conditions. More info: https://kubernetes.io/docs/concepts/nodes/node/#condition", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_NodeCondition" }, "type": "array", "x-kubernetes-patch-merge-key": "type", "x-kubernetes-patch-strategy": "merge" }, "config": { "$ref": "#/definitions/io_k8s_api_core_v1_NodeConfigStatus", "description": "Status of the config assigned to the node via the dynamic Kubelet config feature." }, "daemonEndpoints": { "$ref": "#/definitions/io_k8s_api_core_v1_NodeDaemonEndpoints", "description": "Endpoints of daemons running on the Node." }, "images": { "description": "List of container images on this node", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_ContainerImage" }, "type": "array" }, "nodeInfo": { "$ref": "#/definitions/io_k8s_api_core_v1_NodeSystemInfo", "description": "Set of ids/uuids to uniquely identify the node. More info: https://kubernetes.io/docs/concepts/nodes/node/#info" }, "phase": { "description": "NodePhase is the recently observed lifecycle phase of the node. More info: https://kubernetes.io/docs/concepts/nodes/node/#phase The field is never populated, and now is deprecated.", "type": "string" }, "volumesAttached": { "description": "List of volumes that are attached to the node.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_AttachedVolume" }, "type": "array" }, "volumesInUse": { "description": "List of attachable volumes in use (mounted) by the node.", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "io_k8s_api_core_v1_NodeSystemInfo": { "description": "NodeSystemInfo is a set of ids/uuids to uniquely identify the node.", "properties": { "architecture": { "description": "The Architecture reported by the node", "type": "string" }, "bootID": { "description": "Boot ID reported by the node.", "type": "string" }, "containerRuntimeVersion": { "description": "ContainerRuntime Version reported by the node through runtime remote API (e.g. docker://1.5.0).", "type": "string" }, "kernelVersion": { "description": "Kernel Version reported by the node from 'uname -r' (e.g. 3.16.0-0.bpo.4-amd64).", "type": "string" }, "kubeProxyVersion": { "description": "KubeProxy Version reported by the node.", "type": "string" }, "kubeletVersion": { "description": "Kubelet Version reported by the node.", "type": "string" }, "machineID": { "description": "MachineID reported by the node. For unique machine identification in the cluster this field is preferred. Learn more from man(5) machine-id: http://man7.org/linux/man-pages/man5/machine-id.5.html", "type": "string" }, "operatingSystem": { "description": "The Operating System reported by the node", "type": "string" }, "osImage": { "description": "OS Image reported by the node from /etc/os-release (e.g. Debian GNU/Linux 7 (wheezy)).", "type": "string" }, "systemUUID": { "description": "SystemUUID reported by the node. For unique machine identification MachineID is preferred. This field is specific to Red Hat hosts https://access.redhat.com/documentation/en-us/red_hat_subscription_management/1/html/rhsm/uuid", "type": "string" } }, "required": [ "machineID", "systemUUID", "bootID", "kernelVersion", "osImage", "containerRuntimeVersion", "kubeletVersion", "kubeProxyVersion", "operatingSystem", "architecture" ], "type": "object" }, "io_k8s_api_core_v1_ObjectFieldSelector": { "description": "ObjectFieldSelector selects an APIVersioned field of an object.", "properties": { "apiVersion": { "description": "Version of the schema the FieldPath is written in terms of, defaults to \"v1\".", "type": "string" }, "fieldPath": { "description": "Path of the field to select in the specified API version.", "type": "string" } }, "required": [ "fieldPath" ], "type": "object" }, "io_k8s_api_core_v1_ObjectReference": { "description": "ObjectReference contains enough information to let you inspect or modify the referred object.", "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "fieldPath": { "description": "If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: \"spec.containers{name}\" (where \"name\" refers to the name of the container that triggered the event) or if no container name is specified \"spec.containers[2]\" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object.", "type": "string" }, "kind": { "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "namespace": { "description": "Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/", "type": "string" }, "resourceVersion": { "description": "Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", "type": "string" }, "uid": { "description": "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids", "type": "string" } }, "type": "object" }, "io_k8s_api_core_v1_PersistentVolume": { "description": "PersistentVolume (PV) is a storage resource provisioned by an administrator. It is analogous to a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "PersistentVolume" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/io_k8s_api_core_v1_PersistentVolumeSpec", "description": "Spec defines a specification of a persistent volume owned by the cluster. Provisioned by an administrator. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistent-volumes" }, "status": { "$ref": "#/definitions/io_k8s_api_core_v1_PersistentVolumeStatus", "description": "Status represents the current information/status for the persistent volume. Populated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistent-volumes" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "PersistentVolume", "version": "v1" } ] }, "io_k8s_api_core_v1_PersistentVolumeClaim": { "description": "PersistentVolumeClaim is a user's request for and claim to a persistent volume", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "PersistentVolumeClaim" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/io_k8s_api_core_v1_PersistentVolumeClaimSpec", "description": "Spec defines the desired characteristics of a volume requested by a pod author. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims" }, "status": { "$ref": "#/definitions/io_k8s_api_core_v1_PersistentVolumeClaimStatus", "description": "Status represents the current information/status of a persistent volume claim. Read-only. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "PersistentVolumeClaim", "version": "v1" } ] }, "io_k8s_api_core_v1_PersistentVolumeClaimCondition": { "description": "PersistentVolumeClaimCondition contails details about state of pvc", "properties": { "lastProbeTime": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Last time we probed the condition." }, "lastTransitionTime": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Last time the condition transitioned from one status to another." }, "message": { "description": "Human-readable message indicating details about last transition.", "type": "string" }, "reason": { "description": "Unique, this should be a short, machine understandable string that gives the reason for condition's last transition. If it reports \"ResizeStarted\" that means the underlying persistent volume is being resized.", "type": "string" }, "status": { "type": "string" }, "type": { "type": "string" } }, "required": [ "type", "status" ], "type": "object" }, "io_k8s_api_core_v1_PersistentVolumeClaimList": { "description": "PersistentVolumeClaimList is a list of PersistentVolumeClaim items.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "A list of persistent volume claims. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_PersistentVolumeClaim" }, "type": "array" }, "kind": { "description": "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", "enum": [ "PersistentVolumeClaimList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "PersistentVolumeClaimList", "version": "v1" } ] }, "io_k8s_api_core_v1_PersistentVolumeClaimSpec": { "description": "PersistentVolumeClaimSpec describes the common attributes of storage devices and allows a Source for provider-specific attributes", "properties": { "accessModes": { "description": "AccessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1", "items": { "type": "string" }, "type": "array" }, "dataSource": { "$ref": "#/definitions/io_k8s_api_core_v1_TypedLocalObjectReference", "description": "This field can be used to specify either: * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot - Beta) * An existing PVC (PersistentVolumeClaim) * An existing custom resource/object that implements data population (Alpha) In order to use VolumeSnapshot object types, the appropriate feature gate must be enabled (VolumeSnapshotDataSource or AnyVolumeDataSource) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source. If the specified data source is not supported, the volume will not be created and the failure will be reported as an event. In the future, we plan to support more data source types and the behavior of the provisioner may change." }, "resources": { "$ref": "#/definitions/io_k8s_api_core_v1_ResourceRequirements", "description": "Resources represents the minimum resources the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources" }, "selector": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "A label query over volumes to consider for binding." }, "storageClassName": { "description": "Name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1", "type": "string" }, "volumeMode": { "description": "volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec.", "type": "string" }, "volumeName": { "description": "VolumeName is the binding reference to the PersistentVolume backing this claim.", "type": "string" } }, "type": "object" }, "io_k8s_api_core_v1_PersistentVolumeClaimStatus": { "description": "PersistentVolumeClaimStatus is the current status of a persistent volume claim.", "properties": { "accessModes": { "description": "AccessModes contains the actual access modes the volume backing the PVC has. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1", "items": { "type": "string" }, "type": "array" }, "capacity": { "additionalProperties": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "Represents the actual resources of the underlying volume.", "type": "object" }, "conditions": { "description": "Current Condition of persistent volume claim. If underlying persistent volume is being resized then the Condition will be set to 'ResizeStarted'.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_PersistentVolumeClaimCondition" }, "type": "array", "x-kubernetes-patch-merge-key": "type", "x-kubernetes-patch-strategy": "merge" }, "phase": { "description": "Phase represents the current phase of PersistentVolumeClaim.", "type": "string" } }, "type": "object" }, "io_k8s_api_core_v1_PersistentVolumeClaimVolumeSource": { "description": "PersistentVolumeClaimVolumeSource references the user's PVC in the same namespace. This volume finds the bound PV and mounts that volume for the pod. A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system).", "properties": { "claimName": { "description": "ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims", "type": "string" }, "readOnly": { "description": "Will force the ReadOnly setting in VolumeMounts. Default false.", "type": "boolean" } }, "required": [ "claimName" ], "type": "object" }, "io_k8s_api_core_v1_PersistentVolumeList": { "description": "PersistentVolumeList is a list of PersistentVolume items.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of persistent volumes. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_PersistentVolume" }, "type": "array" }, "kind": { "description": "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", "enum": [ "PersistentVolumeList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "PersistentVolumeList", "version": "v1" } ] }, "io_k8s_api_core_v1_PersistentVolumeSpec": { "description": "PersistentVolumeSpec is the specification of a persistent volume.", "properties": { "accessModes": { "description": "AccessModes contains all ways the volume can be mounted. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes", "items": { "type": "string" }, "type": "array" }, "awsElasticBlockStore": { "$ref": "#/definitions/io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource", "description": "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore" }, "azureDisk": { "$ref": "#/definitions/io_k8s_api_core_v1_AzureDiskVolumeSource", "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod." }, "azureFile": { "$ref": "#/definitions/io_k8s_api_core_v1_AzureFilePersistentVolumeSource", "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod." }, "capacity": { "additionalProperties": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "A description of the persistent volume's resources and capacity. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity", "type": "object" }, "cephfs": { "$ref": "#/definitions/io_k8s_api_core_v1_CephFSPersistentVolumeSource", "description": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime" }, "cinder": { "$ref": "#/definitions/io_k8s_api_core_v1_CinderPersistentVolumeSource", "description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md" }, "claimRef": { "$ref": "#/definitions/io_k8s_api_core_v1_ObjectReference", "description": "ClaimRef is part of a bi-directional binding between PersistentVolume and PersistentVolumeClaim. Expected to be non-nil when bound. claim.VolumeName is the authoritative bind between PV and PVC. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#binding" }, "csi": { "$ref": "#/definitions/io_k8s_api_core_v1_CSIPersistentVolumeSource", "description": "CSI represents storage that is handled by an external CSI driver (Beta feature)." }, "fc": { "$ref": "#/definitions/io_k8s_api_core_v1_FCVolumeSource", "description": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod." }, "flexVolume": { "$ref": "#/definitions/io_k8s_api_core_v1_FlexPersistentVolumeSource", "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin." }, "flocker": { "$ref": "#/definitions/io_k8s_api_core_v1_FlockerVolumeSource", "description": "Flocker represents a Flocker volume attached to a kubelet's host machine and exposed to the pod for its usage. This depends on the Flocker control service being running" }, "gcePersistentDisk": { "$ref": "#/definitions/io_k8s_api_core_v1_GCEPersistentDiskVolumeSource", "description": "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk" }, "glusterfs": { "$ref": "#/definitions/io_k8s_api_core_v1_GlusterfsPersistentVolumeSource", "description": "Glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod. Provisioned by an admin. More info: https://examples.k8s.io/volumes/glusterfs/README.md" }, "hostPath": { "$ref": "#/definitions/io_k8s_api_core_v1_HostPathVolumeSource", "description": "HostPath represents a directory on the host. Provisioned by a developer or tester. This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath" }, "iscsi": { "$ref": "#/definitions/io_k8s_api_core_v1_ISCSIPersistentVolumeSource", "description": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin." }, "local": { "$ref": "#/definitions/io_k8s_api_core_v1_LocalVolumeSource", "description": "Local represents directly-attached storage with node affinity" }, "mountOptions": { "description": "A list of mount options, e.g. [\"ro\", \"soft\"]. Not validated - mount will simply fail if one is invalid. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes/#mount-options", "items": { "type": "string" }, "type": "array" }, "nfs": { "$ref": "#/definitions/io_k8s_api_core_v1_NFSVolumeSource", "description": "NFS represents an NFS mount on the host. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs" }, "nodeAffinity": { "$ref": "#/definitions/io_k8s_api_core_v1_VolumeNodeAffinity", "description": "NodeAffinity defines constraints that limit what nodes this volume can be accessed from. This field influences the scheduling of pods that use this volume." }, "persistentVolumeReclaimPolicy": { "description": "What happens to a persistent volume when released from its claim. Valid options are Retain (default for manually created PersistentVolumes), Delete (default for dynamically provisioned PersistentVolumes), and Recycle (deprecated). Recycle must be supported by the volume plugin underlying this PersistentVolume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#reclaiming", "type": "string" }, "photonPersistentDisk": { "$ref": "#/definitions/io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource", "description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine" }, "portworxVolume": { "$ref": "#/definitions/io_k8s_api_core_v1_PortworxVolumeSource", "description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine" }, "quobyte": { "$ref": "#/definitions/io_k8s_api_core_v1_QuobyteVolumeSource", "description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime" }, "rbd": { "$ref": "#/definitions/io_k8s_api_core_v1_RBDPersistentVolumeSource", "description": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md" }, "scaleIO": { "$ref": "#/definitions/io_k8s_api_core_v1_ScaleIOPersistentVolumeSource", "description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes." }, "storageClassName": { "description": "Name of StorageClass to which this persistent volume belongs. Empty value means that this volume does not belong to any StorageClass.", "type": "string" }, "storageos": { "$ref": "#/definitions/io_k8s_api_core_v1_StorageOSPersistentVolumeSource", "description": "StorageOS represents a StorageOS volume that is attached to the kubelet's host machine and mounted into the pod More info: https://examples.k8s.io/volumes/storageos/README.md" }, "volumeMode": { "description": "volumeMode defines if a volume is intended to be used with a formatted filesystem or to remain in raw block state. Value of Filesystem is implied when not included in spec.", "type": "string" }, "vsphereVolume": { "$ref": "#/definitions/io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource", "description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine" } }, "type": "object" }, "io_k8s_api_core_v1_PersistentVolumeStatus": { "description": "PersistentVolumeStatus is the current status of a persistent volume.", "properties": { "message": { "description": "A human-readable message indicating details about why the volume is in this state.", "type": "string" }, "phase": { "description": "Phase indicates if a volume is available, bound to a claim, or released by a claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#phase", "type": "string" }, "reason": { "description": "Reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI.", "type": "string" } }, "type": "object" }, "io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource": { "description": "Represents a Photon Controller persistent disk resource.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "pdID": { "description": "ID that identifies Photon Controller persistent disk", "type": "string" } }, "required": [ "pdID" ], "type": "object" }, "io_k8s_api_core_v1_Pod": { "description": "Pod is a collection of containers that can run on a host. This resource is created by clients and scheduled onto hosts.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "Pod" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/io_k8s_api_core_v1_PodSpec", "description": "Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" }, "status": { "$ref": "#/definitions/io_k8s_api_core_v1_PodStatus", "description": "Most recently observed status of the pod. This data may not be up to date. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "Pod", "version": "v1" } ] }, "io_k8s_api_core_v1_PodAffinity": { "description": "Pod affinity is a group of inter pod affinity scheduling rules.", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_WeightedPodAffinityTerm" }, "type": "array" }, "requiredDuringSchedulingIgnoredDuringExecution": { "description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_PodAffinityTerm" }, "type": "array" } }, "type": "object" }, "io_k8s_api_core_v1_PodAffinityTerm": { "description": "Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> matches that of any node on which a pod of the set of pods is running", "properties": { "labelSelector": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "A label query over a set of resources, in this case pods." }, "namespaces": { "description": "namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means \"this pod's namespace\"", "items": { "type": "string" }, "type": "array" }, "topologyKey": { "description": "This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.", "type": "string" } }, "required": [ "topologyKey" ], "type": "object" }, "io_k8s_api_core_v1_PodAntiAffinity": { "description": "Pod anti affinity is a group of inter pod anti affinity scheduling rules.", "properties": { "preferredDuringSchedulingIgnoredDuringExecution": { "description": "The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_WeightedPodAffinityTerm" }, "type": "array" }, "requiredDuringSchedulingIgnoredDuringExecution": { "description": "If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_PodAffinityTerm" }, "type": "array" } }, "type": "object" }, "io_k8s_api_core_v1_PodCondition": { "description": "PodCondition contains details for the current condition of this pod.", "properties": { "lastProbeTime": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Last time we probed the condition." }, "lastTransitionTime": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Last time the condition transitioned from one status to another." }, "message": { "description": "Human-readable message indicating details about last transition.", "type": "string" }, "reason": { "description": "Unique, one-word, CamelCase reason for the condition's last transition.", "type": "string" }, "status": { "description": "Status is the status of the condition. Can be True, False, Unknown. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions", "type": "string" }, "type": { "description": "Type is the type of the condition. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions", "type": "string" } }, "required": [ "type", "status" ], "type": "object" }, "io_k8s_api_core_v1_PodDNSConfig": { "description": "PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.", "properties": { "nameservers": { "description": "A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed.", "items": { "type": "string" }, "type": "array" }, "options": { "description": "A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_PodDNSConfigOption" }, "type": "array" }, "searches": { "description": "A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed.", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "io_k8s_api_core_v1_PodDNSConfigOption": { "description": "PodDNSConfigOption defines DNS resolver options of a pod.", "properties": { "name": { "description": "Required.", "type": "string" }, "value": { "type": "string" } }, "type": "object" }, "io_k8s_api_core_v1_PodIP": { "description": "IP address information for entries in the (plural) PodIPs field. Each entry includes:\n IP: An IP address allocated to the pod. Routable at least within the cluster.", "properties": { "ip": { "description": "ip is an IP address (IPv4 or IPv6) assigned to the pod", "type": "string" } }, "type": "object" }, "io_k8s_api_core_v1_PodList": { "description": "PodList is a list of Pods.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of pods. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_Pod" }, "type": "array" }, "kind": { "description": "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", "enum": [ "PodList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "PodList", "version": "v1" } ] }, "io_k8s_api_core_v1_PodReadinessGate": { "description": "PodReadinessGate contains the reference to a pod condition", "properties": { "conditionType": { "description": "ConditionType refers to a condition in the pod's condition list with matching type.", "type": "string" } }, "required": [ "conditionType" ], "type": "object" }, "io_k8s_api_core_v1_PodSecurityContext": { "description": "PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.", "properties": { "fsGroup": { "_format": "int64", "description": "A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:\n\n1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw----\n\nIf unset, the Kubelet will not modify the ownership and permissions of any volume.", "type": "integer" }, "fsGroupChangePolicy": { "description": "fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are \"OnRootMismatch\" and \"Always\". If not specified defaults to \"Always\".", "type": "string" }, "runAsGroup": { "_format": "int64", "description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.", "type": "integer" }, "runAsNonRoot": { "description": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "boolean" }, "runAsUser": { "_format": "int64", "description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.", "type": "integer" }, "seLinuxOptions": { "$ref": "#/definitions/io_k8s_api_core_v1_SELinuxOptions", "description": "The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container." }, "supplementalGroups": { "description": "A list of groups applied to the first process run in each container, in addition to the container's primary GID. If unspecified, no groups will be added to any container.", "items": { "_format": "int64", "type": "integer" }, "type": "array" }, "sysctls": { "description": "Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_Sysctl" }, "type": "array" }, "windowsOptions": { "$ref": "#/definitions/io_k8s_api_core_v1_WindowsSecurityContextOptions", "description": "The Windows specific settings applied to all containers. If unspecified, the options within a container's SecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence." } }, "type": "object" }, "io_k8s_api_core_v1_PodSpec": { "description": "PodSpec is a description of a pod.", "properties": { "activeDeadlineSeconds": { "_format": "int64", "description": "Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.", "type": "integer" }, "affinity": { "$ref": "#/definitions/io_k8s_api_core_v1_Affinity", "description": "If specified, the pod's scheduling constraints" }, "automountServiceAccountToken": { "description": "AutomountServiceAccountToken indicates whether a service account token should be automatically mounted.", "type": "boolean" }, "containers": { "description": "List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_Container" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "dnsConfig": { "$ref": "#/definitions/io_k8s_api_core_v1_PodDNSConfig", "description": "Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy." }, "dnsPolicy": { "description": "Set DNS policy for the pod. Defaults to \"ClusterFirst\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'.", "type": "string" }, "enableServiceLinks": { "description": "EnableServiceLinks indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links. Optional: Defaults to true.", "type": "boolean" }, "ephemeralContainers": { "description": "List of ephemeral containers run in this pod. Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging. This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec. In order to add an ephemeral container to an existing pod, use the pod's ephemeralcontainers subresource. This field is alpha-level and is only honored by servers that enable the EphemeralContainers feature.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_EphemeralContainer" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "hostAliases": { "description": "HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_HostAlias" }, "type": "array", "x-kubernetes-patch-merge-key": "ip", "x-kubernetes-patch-strategy": "merge" }, "hostIPC": { "description": "Use the host's ipc namespace. Optional: Default to false.", "type": "boolean" }, "hostNetwork": { "description": "Host networking requested for this pod. Use the host's network namespace. If this option is set, the ports that will be used must be specified. Default to false.", "type": "boolean" }, "hostPID": { "description": "Use the host's pid namespace. Optional: Default to false.", "type": "boolean" }, "hostname": { "description": "Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.", "type": "string" }, "imagePullSecrets": { "description": "ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_LocalObjectReference" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "initContainers": { "description": "List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_Container" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" }, "nodeName": { "description": "NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.", "type": "string" }, "nodeSelector": { "additionalProperties": { "type": "string" }, "description": "NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/", "type": "object" }, "overhead": { "additionalProperties": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. This field will be autopopulated at admission time by the RuntimeClass admission controller. If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests. The RuntimeClass admission controller will reject Pod create requests which have the overhead already set. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero. More info: https://git.k8s.io/enhancements/keps/sig-node/20190226-pod-overhead.md This field is alpha-level as of Kubernetes v1.16, and is only honored by servers that enable the PodOverhead feature.", "type": "object" }, "preemptionPolicy": { "description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is alpha-level and is only honored by servers that enable the NonPreemptingPriority feature.", "type": "string" }, "priority": { "_format": "int32", "description": "The priority value. Various system components use this field to find the priority of the pod. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority.", "type": "integer" }, "priorityClassName": { "description": "If specified, indicates the pod's priority. \"system-node-critical\" and \"system-cluster-critical\" are two special keywords which indicate the highest priorities with the former being the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default.", "type": "string" }, "readinessGates": { "description": "If specified, all readiness gates will be evaluated for pod readiness. A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to \"True\" More info: https://git.k8s.io/enhancements/keps/sig-network/0007-pod-ready%2B%2B.md", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_PodReadinessGate" }, "type": "array" }, "restartPolicy": { "description": "Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy", "type": "string" }, "runtimeClassName": { "description": "RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used to run this pod. If no RuntimeClass resource matches the named class, the pod will not be run. If unset or empty, the \"legacy\" RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler. More info: https://git.k8s.io/enhancements/keps/sig-node/runtime-class.md This is a beta feature as of Kubernetes v1.14.", "type": "string" }, "schedulerName": { "description": "If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.", "type": "string" }, "securityContext": { "$ref": "#/definitions/io_k8s_api_core_v1_PodSecurityContext", "description": "SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field." }, "serviceAccount": { "description": "DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.", "type": "string" }, "serviceAccountName": { "description": "ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/", "type": "string" }, "shareProcessNamespace": { "description": "Share a single process namespace between all of the containers in a pod. When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1. HostPID and ShareProcessNamespace cannot both be set. Optional: Default to false.", "type": "boolean" }, "subdomain": { "description": "If specified, the fully qualified Pod hostname will be \"<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>\". If not specified, the pod will not have a domainname at all.", "type": "string" }, "terminationGracePeriodSeconds": { "_format": "int64", "description": "Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.", "type": "integer" }, "tolerations": { "description": "If specified, the pod's tolerations.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_Toleration" }, "type": "array" }, "topologySpreadConstraints": { "description": "TopologySpreadConstraints describes how a group of pods ought to spread across topology domains. Scheduler will schedule pods in a way which abides by the constraints. This field is only honored by clusters that enable the EvenPodsSpread feature. All topologySpreadConstraints are ANDed.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_TopologySpreadConstraint" }, "type": "array", "x-kubernetes-list-map-keys": [ "topologyKey", "whenUnsatisfiable" ], "x-kubernetes-list-type": "map", "x-kubernetes-patch-merge-key": "topologyKey", "x-kubernetes-patch-strategy": "merge" }, "volumes": { "description": "List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_Volume" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge,retainKeys" } }, "required": [ "containers" ], "type": "object" }, "io_k8s_api_core_v1_PodStatus": { "description": "PodStatus represents information about the status of a pod. Status may trail the actual state of a system, especially if the node that hosts the pod cannot contact the control plane.", "properties": { "conditions": { "description": "Current service state of pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_PodCondition" }, "type": "array", "x-kubernetes-patch-merge-key": "type", "x-kubernetes-patch-strategy": "merge" }, "containerStatuses": { "description": "The list has one entry per container in the manifest. Each entry is currently the output of `docker inspect`. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_ContainerStatus" }, "type": "array" }, "ephemeralContainerStatuses": { "description": "Status for any ephemeral containers that have run in this pod. This field is alpha-level and is only populated by servers that enable the EphemeralContainers feature.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_ContainerStatus" }, "type": "array" }, "hostIP": { "description": "IP address of the host to which the pod is assigned. Empty if not yet scheduled.", "type": "string" }, "initContainerStatuses": { "description": "The list has one entry per init container in the manifest. The most recent successful init container will have ready = true, the most recently started container will have startTime set. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_ContainerStatus" }, "type": "array" }, "message": { "description": "A human readable message indicating details about why the pod is in this condition.", "type": "string" }, "nominatedNodeName": { "description": "nominatedNodeName is set only when this pod preempts other pods on the node, but it cannot be scheduled right away as preemption victims receive their graceful termination periods. This field does not guarantee that the pod will be scheduled on this node. Scheduler may decide to place the pod elsewhere if other nodes become available sooner. Scheduler may also decide to give the resources on this node to a higher priority pod that is created after preemption. As a result, this field may be different than PodSpec.nodeName when the pod is scheduled.", "type": "string" }, "phase": { "description": "The phase of a Pod is a simple, high-level summary of where the Pod is in its lifecycle. The conditions array, the reason and message fields, and the individual container status arrays contain more detail about the pod's status. There are five possible phase values:\n\nPending: The pod has been accepted by the Kubernetes system, but one or more of the container images has not been created. This includes time before being scheduled as well as time spent downloading images over the network, which could take a while. Running: The pod has been bound to a node, and all of the containers have been created. At least one container is still running, or is in the process of starting or restarting. Succeeded: All containers in the pod have terminated in success, and will not be restarted. Failed: All containers in the pod have terminated, and at least one container has terminated in failure. The container either exited with non-zero status or was terminated by the system. Unknown: For some reason the state of the pod could not be obtained, typically due to an error in communicating with the host of the pod.\n\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-phase", "type": "string" }, "podIP": { "description": "IP address allocated to the pod. Routable at least within the cluster. Empty if not yet allocated.", "type": "string" }, "podIPs": { "description": "podIPs holds the IP addresses allocated to the pod. If this field is specified, the 0th entry must match the podIP field. Pods may be allocated at most 1 value for each of IPv4 and IPv6. This list is empty if no IPs have been allocated yet.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_PodIP" }, "type": "array", "x-kubernetes-patch-merge-key": "ip", "x-kubernetes-patch-strategy": "merge" }, "qosClass": { "description": "The Quality of Service (QOS) classification assigned to the pod based on resource requirements See PodQOSClass type for available QOS classes More info: https://git.k8s.io/community/contributors/design-proposals/node/resource-qos.md", "type": "string" }, "reason": { "description": "A brief CamelCase message indicating details about why the pod is in this state. e.g. 'Evicted'", "type": "string" }, "startTime": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "RFC 3339 date and time at which the object was acknowledged by the Kubelet. This is before the Kubelet pulled the container image(s) for the pod." } }, "type": "object" }, "io_k8s_api_core_v1_PodTemplate": { "description": "PodTemplate describes a template for creating copies of a predefined pod.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "PodTemplate" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "template": { "$ref": "#/definitions/io_k8s_api_core_v1_PodTemplateSpec", "description": "Template defines the pods that will be created from this pod template. https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "PodTemplate", "version": "v1" } ] }, "io_k8s_api_core_v1_PodTemplateList": { "description": "PodTemplateList is a list of PodTemplates.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of pod templates", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_PodTemplate" }, "type": "array" }, "kind": { "description": "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", "enum": [ "PodTemplateList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "PodTemplateList", "version": "v1" } ] }, "io_k8s_api_core_v1_PodTemplateSpec": { "description": "PodTemplateSpec describes the data a pod should have when created from a template", "properties": { "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/io_k8s_api_core_v1_PodSpec", "description": "Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object" }, "io_k8s_api_core_v1_PortworxVolumeSource": { "description": "PortworxVolumeSource represents a Portworx volume resource.", "properties": { "fsType": { "description": "FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "volumeID": { "description": "VolumeID uniquely identifies a Portworx volume", "type": "string" } }, "required": [ "volumeID" ], "type": "object" }, "io_k8s_api_core_v1_PreferredSchedulingTerm": { "description": "An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).", "properties": { "preference": { "$ref": "#/definitions/io_k8s_api_core_v1_NodeSelectorTerm", "description": "A node selector term, associated with the corresponding weight." }, "weight": { "_format": "int32", "description": "Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.", "type": "integer" } }, "required": [ "weight", "preference" ], "type": "object" }, "io_k8s_api_core_v1_Probe": { "description": "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.", "properties": { "exec": { "$ref": "#/definitions/io_k8s_api_core_v1_ExecAction", "description": "One and only one of the following should be specified. Exec specifies the action to take." }, "failureThreshold": { "_format": "int32", "description": "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.", "type": "integer" }, "httpGet": { "$ref": "#/definitions/io_k8s_api_core_v1_HTTPGetAction", "description": "HTTPGet specifies the http request to perform." }, "initialDelaySeconds": { "_format": "int32", "description": "Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", "type": "integer" }, "periodSeconds": { "_format": "int32", "description": "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.", "type": "integer" }, "successThreshold": { "_format": "int32", "description": "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.", "type": "integer" }, "tcpSocket": { "$ref": "#/definitions/io_k8s_api_core_v1_TCPSocketAction", "description": "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported" }, "timeoutSeconds": { "_format": "int32", "description": "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", "type": "integer" } }, "type": "object" }, "io_k8s_api_core_v1_ProjectedVolumeSource": { "description": "Represents a projected volume source", "properties": { "defaultMode": { "_format": "int32", "description": "Mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "sources": { "description": "list of volume projections", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_VolumeProjection" }, "type": "array" } }, "required": [ "sources" ], "type": "object" }, "io_k8s_api_core_v1_QuobyteVolumeSource": { "description": "Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.", "properties": { "group": { "description": "Group to map volume access to Default is no group", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.", "type": "boolean" }, "registry": { "description": "Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes", "type": "string" }, "tenant": { "description": "Tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin", "type": "string" }, "user": { "description": "User to map volume access to Defaults to serivceaccount user", "type": "string" }, "volume": { "description": "Volume is a string that references an already created Quobyte volume by name.", "type": "string" } }, "required": [ "registry", "volume" ], "type": "object" }, "io_k8s_api_core_v1_RBDPersistentVolumeSource": { "description": "Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd", "type": "string" }, "image": { "description": "The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "keyring": { "description": "Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "monitors": { "description": "A collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "items": { "type": "string" }, "type": "array" }, "pool": { "description": "The rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/io_k8s_api_core_v1_SecretReference", "description": "SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it" }, "user": { "description": "The rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" } }, "required": [ "monitors", "image" ], "type": "object" }, "io_k8s_api_core_v1_RBDVolumeSource": { "description": "Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.", "properties": { "fsType": { "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd", "type": "string" }, "image": { "description": "The rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "keyring": { "description": "Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "monitors": { "description": "A collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "items": { "type": "string" }, "type": "array" }, "pool": { "description": "The rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" }, "readOnly": { "description": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/io_k8s_api_core_v1_LocalObjectReference", "description": "SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it" }, "user": { "description": "The rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", "type": "string" } }, "required": [ "monitors", "image" ], "type": "object" }, "io_k8s_api_core_v1_ReplicationController": { "description": "ReplicationController represents the configuration of a replication controller.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "ReplicationController" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "If the Labels of a ReplicationController are empty, they are defaulted to be the same as the Pod(s) that the replication controller manages. Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/io_k8s_api_core_v1_ReplicationControllerSpec", "description": "Spec defines the specification of the desired behavior of the replication controller. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" }, "status": { "$ref": "#/definitions/io_k8s_api_core_v1_ReplicationControllerStatus", "description": "Status is the most recently observed status of the replication controller. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "ReplicationController", "version": "v1" } ] }, "io_k8s_api_core_v1_ReplicationControllerCondition": { "description": "ReplicationControllerCondition describes the state of a replication controller at a certain point.", "properties": { "lastTransitionTime": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "The last time the condition transitioned from one status to another." }, "message": { "description": "A human readable message indicating details about the transition.", "type": "string" }, "reason": { "description": "The reason for the condition's last transition.", "type": "string" }, "status": { "description": "Status of the condition, one of True, False, Unknown.", "type": "string" }, "type": { "description": "Type of replication controller condition.", "type": "string" } }, "required": [ "type", "status" ], "type": "object" }, "io_k8s_api_core_v1_ReplicationControllerList": { "description": "ReplicationControllerList is a collection of replication controllers.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of replication controllers. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_ReplicationController" }, "type": "array" }, "kind": { "description": "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", "enum": [ "ReplicationControllerList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "ReplicationControllerList", "version": "v1" } ] }, "io_k8s_api_core_v1_ReplicationControllerSpec": { "description": "ReplicationControllerSpec is the specification of a replication controller.", "properties": { "minReadySeconds": { "_format": "int32", "description": "Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)", "type": "integer" }, "replicas": { "_format": "int32", "description": "Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller", "type": "integer" }, "selector": { "additionalProperties": { "type": "string" }, "description": "Selector is a label query over pods that should match the Replicas count. If Selector is empty, it is defaulted to the labels present on the Pod template. Label keys and values that must match in order to be controlled by this replication controller, if empty defaulted to labels on Pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors", "type": "object" }, "template": { "$ref": "#/definitions/io_k8s_api_core_v1_PodTemplateSpec", "description": "Template is the object that describes the pod that will be created if insufficient replicas are detected. This takes precedence over a TemplateRef. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template" } }, "type": "object" }, "io_k8s_api_core_v1_ReplicationControllerStatus": { "description": "ReplicationControllerStatus represents the current status of a replication controller.", "properties": { "availableReplicas": { "_format": "int32", "description": "The number of available replicas (ready for at least minReadySeconds) for this replication controller.", "type": "integer" }, "conditions": { "description": "Represents the latest available observations of a replication controller's current state.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_ReplicationControllerCondition" }, "type": "array", "x-kubernetes-patch-merge-key": "type", "x-kubernetes-patch-strategy": "merge" }, "fullyLabeledReplicas": { "_format": "int32", "description": "The number of pods that have labels matching the labels of the pod template of the replication controller.", "type": "integer" }, "observedGeneration": { "_format": "int64", "description": "ObservedGeneration reflects the generation of the most recently observed replication controller.", "type": "integer" }, "readyReplicas": { "_format": "int32", "description": "The number of ready replicas for this replication controller.", "type": "integer" }, "replicas": { "_format": "int32", "description": "Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller", "type": "integer" } }, "required": [ "replicas" ], "type": "object" }, "io_k8s_api_core_v1_ResourceFieldSelector": { "description": "ResourceFieldSelector represents container resources (cpu, memory) and their output format", "properties": { "containerName": { "description": "Container name: required for volumes, optional for env vars", "type": "string" }, "divisor": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_api_resource_Quantity", "description": "Specifies the output format of the exposed resources, defaults to \"1\"" }, "resource": { "description": "Required: resource to select", "type": "string" } }, "required": [ "resource" ], "type": "object" }, "io_k8s_api_core_v1_ResourceQuota": { "description": "ResourceQuota sets aggregate quota restrictions enforced per namespace", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "ResourceQuota" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/io_k8s_api_core_v1_ResourceQuotaSpec", "description": "Spec defines the desired quota. https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" }, "status": { "$ref": "#/definitions/io_k8s_api_core_v1_ResourceQuotaStatus", "description": "Status defines the actual enforced quota and its current usage. https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "ResourceQuota", "version": "v1" } ] }, "io_k8s_api_core_v1_ResourceQuotaList": { "description": "ResourceQuotaList is a list of ResourceQuota items.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "Items is a list of ResourceQuota objects. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_ResourceQuota" }, "type": "array" }, "kind": { "description": "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", "enum": [ "ResourceQuotaList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "ResourceQuotaList", "version": "v1" } ] }, "io_k8s_api_core_v1_ResourceQuotaSpec": { "description": "ResourceQuotaSpec defines the desired hard limits to enforce for Quota.", "properties": { "hard": { "additionalProperties": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "hard is the set of desired hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/", "type": "object" }, "scopeSelector": { "$ref": "#/definitions/io_k8s_api_core_v1_ScopeSelector", "description": "scopeSelector is also a collection of filters like scopes that must match each object tracked by a quota but expressed using ScopeSelectorOperator in combination with possible values. For a resource to match, both scopes AND scopeSelector (if specified in spec), must be matched." }, "scopes": { "description": "A collection of filters that must match each object tracked by a quota. If not specified, the quota matches all objects.", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "io_k8s_api_core_v1_ResourceQuotaStatus": { "description": "ResourceQuotaStatus defines the enforced hard limits and observed use.", "properties": { "hard": { "additionalProperties": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "Hard is the set of enforced hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/", "type": "object" }, "used": { "additionalProperties": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "Used is the current observed total usage of the resource in the namespace.", "type": "object" } }, "type": "object" }, "io_k8s_api_core_v1_ResourceRequirements": { "description": "ResourceRequirements describes the compute resource requirements.", "properties": { "limits": { "additionalProperties": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/", "type": "object" }, "requests": { "additionalProperties": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/", "type": "object" } }, "type": "object" }, "io_k8s_api_core_v1_SELinuxOptions": { "description": "SELinuxOptions are the labels to be applied to the container", "properties": { "level": { "description": "Level is SELinux level label that applies to the container.", "type": "string" }, "role": { "description": "Role is a SELinux role label that applies to the container.", "type": "string" }, "type": { "description": "Type is a SELinux type label that applies to the container.", "type": "string" }, "user": { "description": "User is a SELinux user label that applies to the container.", "type": "string" } }, "type": "object" }, "io_k8s_api_core_v1_ScaleIOPersistentVolumeSource": { "description": "ScaleIOPersistentVolumeSource represents a persistent ScaleIO volume", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\"", "type": "string" }, "gateway": { "description": "The host address of the ScaleIO API Gateway.", "type": "string" }, "protectionDomain": { "description": "The name of the ScaleIO Protection Domain for the configured storage.", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/io_k8s_api_core_v1_SecretReference", "description": "SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail." }, "sslEnabled": { "description": "Flag to enable/disable SSL communication with Gateway, default false", "type": "boolean" }, "storageMode": { "description": "Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.", "type": "string" }, "storagePool": { "description": "The ScaleIO Storage Pool associated with the protection domain.", "type": "string" }, "system": { "description": "The name of the storage system as configured in ScaleIO.", "type": "string" }, "volumeName": { "description": "The name of a volume already created in the ScaleIO system that is associated with this volume source.", "type": "string" } }, "required": [ "gateway", "system", "secretRef" ], "type": "object" }, "io_k8s_api_core_v1_ScaleIOVolumeSource": { "description": "ScaleIOVolumeSource represents a persistent ScaleIO volume", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\".", "type": "string" }, "gateway": { "description": "The host address of the ScaleIO API Gateway.", "type": "string" }, "protectionDomain": { "description": "The name of the ScaleIO Protection Domain for the configured storage.", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/io_k8s_api_core_v1_LocalObjectReference", "description": "SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail." }, "sslEnabled": { "description": "Flag to enable/disable SSL communication with Gateway, default false", "type": "boolean" }, "storageMode": { "description": "Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.", "type": "string" }, "storagePool": { "description": "The ScaleIO Storage Pool associated with the protection domain.", "type": "string" }, "system": { "description": "The name of the storage system as configured in ScaleIO.", "type": "string" }, "volumeName": { "description": "The name of a volume already created in the ScaleIO system that is associated with this volume source.", "type": "string" } }, "required": [ "gateway", "system", "secretRef" ], "type": "object" }, "io_k8s_api_core_v1_ScopeSelector": { "description": "A scope selector represents the AND of the selectors represented by the scoped-resource selector requirements.", "properties": { "matchExpressions": { "description": "A list of scope selector requirements by scope of the resources.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_ScopedResourceSelectorRequirement" }, "type": "array" } }, "type": "object" }, "io_k8s_api_core_v1_ScopedResourceSelectorRequirement": { "description": "A scoped-resource selector requirement is a selector that contains values, a scope name, and an operator that relates the scope name and values.", "properties": { "operator": { "description": "Represents a scope's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist.", "type": "string" }, "scopeName": { "description": "The name of the scope that the selector applies to.", "type": "string" }, "values": { "description": "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.", "items": { "type": "string" }, "type": "array" } }, "required": [ "scopeName", "operator" ], "type": "object" }, "io_k8s_api_core_v1_Secret": { "description": "Secret holds secret data of a certain type. The total bytes of the values in the Data field must be less than MaxSecretSize bytes.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "data": { "additionalProperties": { "_format": "byte", "type": "string" }, "description": "Data contains the secret data. Each key must consist of alphanumeric characters, '-', '_' or '.'. The serialized form of the secret data is a base64 encoded string, representing the arbitrary (possibly non-string) data value here. Described in https://tools.ietf.org/html/rfc4648#section-4", "type": "object" }, "immutable": { "description": "Immutable, if set to true, ensures that data stored in the Secret cannot be updated (only object metadata can be modified). If not set to true, the field can be modified at any time. Defaulted to nil. This is an alpha field enabled by ImmutableEphemeralVolumes feature gate.", "type": "boolean" }, "kind": { "description": "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", "enum": [ "Secret" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "stringData": { "additionalProperties": { "type": "string" }, "description": "stringData allows specifying non-binary secret data in string form. It is provided as a write-only convenience method. All keys and values are merged into the data field on write, overwriting any existing values. It is never output when reading from the API.", "type": "object" }, "type": { "description": "Used to facilitate programmatic handling of secret data.", "type": "string" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "Secret", "version": "v1" } ] }, "io_k8s_api_core_v1_SecretEnvSource": { "description": "SecretEnvSource selects a Secret to populate the environment variables with.\n\nThe contents of the target Secret's Data field will represent the key-value pairs as environment variables.", "properties": { "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the Secret must be defined", "type": "boolean" } }, "type": "object" }, "io_k8s_api_core_v1_SecretKeySelector": { "description": "SecretKeySelector selects a key of a Secret.", "properties": { "key": { "description": "The key of the secret to select from. Must be a valid secret key.", "type": "string" }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the Secret or its key must be defined", "type": "boolean" } }, "required": [ "key" ], "type": "object" }, "io_k8s_api_core_v1_SecretList": { "description": "SecretList is a list of Secret.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "Items is a list of secret objects. More info: https://kubernetes.io/docs/concepts/configuration/secret", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_Secret" }, "type": "array" }, "kind": { "description": "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", "enum": [ "SecretList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "SecretList", "version": "v1" } ] }, "io_k8s_api_core_v1_SecretProjection": { "description": "Adapts a secret into a projected volume.\n\nThe contents of the target Secret's Data field will be presented in a projected volume as files using the keys in the Data field as the file names. Note that this is identical to a secret volume source without the default mode.", "properties": { "items": { "description": "If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_KeyToPath" }, "type": "array" }, "name": { "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "optional": { "description": "Specify whether the Secret or its key must be defined", "type": "boolean" } }, "type": "object" }, "io_k8s_api_core_v1_SecretReference": { "description": "SecretReference represents a Secret Reference. It has enough information to retrieve secret in any namespace", "properties": { "name": { "description": "Name is unique within a namespace to reference a secret resource.", "type": "string" }, "namespace": { "description": "Namespace defines the space within which the secret name must be unique.", "type": "string" } }, "type": "object" }, "io_k8s_api_core_v1_SecretVolumeSource": { "description": "Adapts a Secret into a volume.\n\nThe contents of the target Secret's Data field will be presented in a volume as files using the keys in the Data field as the file names. Secret volumes support ownership management and SELinux relabeling.", "properties": { "defaultMode": { "_format": "int32", "description": "Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "type": "integer" }, "items": { "description": "If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_KeyToPath" }, "type": "array" }, "optional": { "description": "Specify whether the Secret or its keys must be defined", "type": "boolean" }, "secretName": { "description": "Name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret", "type": "string" } }, "type": "object" }, "io_k8s_api_core_v1_SecurityContext": { "description": "SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.", "properties": { "allowPrivilegeEscalation": { "description": "AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN", "type": "boolean" }, "capabilities": { "$ref": "#/definitions/io_k8s_api_core_v1_Capabilities", "description": "The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime." }, "privileged": { "description": "Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.", "type": "boolean" }, "procMount": { "description": "procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled.", "type": "string" }, "readOnlyRootFilesystem": { "description": "Whether this container has a read-only root filesystem. Default is false.", "type": "boolean" }, "runAsGroup": { "_format": "int64", "description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "integer" }, "runAsNonRoot": { "description": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "boolean" }, "runAsUser": { "_format": "int64", "description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "integer" }, "seLinuxOptions": { "$ref": "#/definitions/io_k8s_api_core_v1_SELinuxOptions", "description": "The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence." }, "windowsOptions": { "$ref": "#/definitions/io_k8s_api_core_v1_WindowsSecurityContextOptions", "description": "The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence." } }, "type": "object" }, "io_k8s_api_core_v1_Service": { "description": "Service is a named abstraction of software service (for example, mysql) consisting of local port (for example 3306) that the proxy listens on, and the selector that determines which pods will answer requests sent through the proxy.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "Service" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/io_k8s_api_core_v1_ServiceSpec", "description": "Spec defines the behavior of a service. https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" }, "status": { "$ref": "#/definitions/io_k8s_api_core_v1_ServiceStatus", "description": "Most recently observed status of the service. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "Service", "version": "v1" } ] }, "io_k8s_api_core_v1_ServiceAccount": { "description": "ServiceAccount binds together: * a name, understood by users, and perhaps by peripheral systems, for an identity * a principal that can be authenticated and authorized * a set of secrets", "properties": { "apiVersion": { "description": "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", "type": "string" }, "automountServiceAccountToken": { "description": "AutomountServiceAccountToken indicates whether pods running as this service account should have an API token automatically mounted. Can be overridden at the pod level.", "type": "boolean" }, "imagePullSecrets": { "description": "ImagePullSecrets is a list of references to secrets in the same namespace to use for pulling any images in pods that reference this ServiceAccount. ImagePullSecrets are distinct from Secrets because Secrets can be mounted in the pod, but ImagePullSecrets are only accessed by the kubelet. More info: https://kubernetes.io/docs/concepts/containers/images/#specifying-imagepullsecrets-on-a-pod", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_LocalObjectReference" }, "type": "array" }, "kind": { "description": "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", "enum": [ "ServiceAccount" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "secrets": { "description": "Secrets is the list of secrets allowed to be used by pods running using this ServiceAccount. More info: https://kubernetes.io/docs/concepts/configuration/secret", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_ObjectReference" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "ServiceAccount", "version": "v1" } ] }, "io_k8s_api_core_v1_ServiceAccountList": { "description": "ServiceAccountList is a list of ServiceAccount objects", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of ServiceAccounts. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_ServiceAccount" }, "type": "array" }, "kind": { "description": "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", "enum": [ "ServiceAccountList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "ServiceAccountList", "version": "v1" } ] }, "io_k8s_api_core_v1_ServiceAccountTokenProjection": { "description": "ServiceAccountTokenProjection represents a projected service account token volume. This projection can be used to insert a service account token into the pods runtime filesystem for use against APIs (Kubernetes API Server or otherwise).", "properties": { "audience": { "description": "Audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver.", "type": "string" }, "expirationSeconds": { "_format": "int64", "description": "ExpirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes.", "type": "integer" }, "path": { "description": "Path is the path relative to the mount point of the file to project the token into.", "type": "string" } }, "required": [ "path" ], "type": "object" }, "io_k8s_api_core_v1_ServiceList": { "description": "ServiceList holds a list of services.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of services", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_Service" }, "type": "array" }, "kind": { "description": "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", "enum": [ "ServiceList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "ServiceList", "version": "v1" } ] }, "io_k8s_api_core_v1_ServicePort": { "description": "ServicePort contains information on service's port.", "properties": { "appProtocol": { "description": "The application protocol for this port. This field follows standard Kubernetes label syntax. Un-prefixed names are reserved for IANA standard service names (as per RFC-6335 and http://www.iana.org/assignments/service-names). Non-standard protocols should use prefixed names such as mycompany.com/my-custom-protocol. Field can be enabled with ServiceAppProtocol feature gate.", "type": "string" }, "name": { "description": "The name of this port within the service. This must be a DNS_LABEL. All ports within a ServiceSpec must have unique names. When considering the endpoints for a Service, this must match the 'name' field in the EndpointPort. Optional if only one ServicePort is defined on this service.", "type": "string" }, "nodePort": { "_format": "int32", "description": "The port on each node on which this service is exposed when type=NodePort or LoadBalancer. Usually assigned by the system. If specified, it will be allocated to the service if unused or else creation of the service will fail. Default is to auto-allocate a port if the ServiceType of this Service requires one. More info: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport", "type": "integer" }, "port": { "_format": "int32", "description": "The port that will be exposed by this service.", "type": "integer" }, "protocol": { "description": "The IP protocol for this port. Supports \"TCP\", \"UDP\", and \"SCTP\". Default is TCP.", "type": "string" }, "targetPort": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_util_intstr_IntOrString", "description": "Number or name of the port to access on the pods targeted by the service. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. If this is a string, it will be looked up as a named port in the target Pod's container ports. If this is not specified, the value of the 'port' field is used (an identity map). This field is ignored for services with clusterIP=None, and should be omitted or set equal to the 'port' field. More info: https://kubernetes.io/docs/concepts/services-networking/service/#defining-a-service" } }, "required": [ "port" ], "type": "object" }, "io_k8s_api_core_v1_ServiceSpec": { "description": "ServiceSpec describes the attributes that a user creates on a service.", "properties": { "clusterIP": { "description": "clusterIP is the IP address of the service and is usually assigned randomly by the master. If an address is specified manually and is not in use by others, it will be allocated to the service; otherwise, creation of the service will fail. This field can not be changed through updates. Valid values are \"None\", empty string (\"\"), or a valid IP address. \"None\" can be specified for headless services when proxying is not required. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies", "type": "string" }, "externalIPs": { "description": "externalIPs is a list of IP addresses for which nodes in the cluster will also accept traffic for this service. These IPs are not managed by Kubernetes. The user is responsible for ensuring that traffic arrives at a node with this IP. A common example is external load-balancers that are not part of the Kubernetes system.", "items": { "type": "string" }, "type": "array" }, "externalName": { "description": "externalName is the external reference that kubedns or equivalent will return as a CNAME record for this service. No proxying will be involved. Must be a valid RFC-1123 hostname (https://tools.ietf.org/html/rfc1123) and requires Type to be ExternalName.", "type": "string" }, "externalTrafficPolicy": { "description": "externalTrafficPolicy denotes if this Service desires to route external traffic to node-local or cluster-wide endpoints. \"Local\" preserves the client source IP and avoids a second hop for LoadBalancer and Nodeport type services, but risks potentially imbalanced traffic spreading. \"Cluster\" obscures the client source IP and may cause a second hop to another node, but should have good overall load-spreading.", "type": "string" }, "healthCheckNodePort": { "_format": "int32", "description": "healthCheckNodePort specifies the healthcheck nodePort for the service. If not specified, HealthCheckNodePort is created by the service api backend with the allocated nodePort. Will use user-specified nodePort value if specified by the client. Only effects when Type is set to LoadBalancer and ExternalTrafficPolicy is set to Local.", "type": "integer" }, "ipFamily": { "description": "ipFamily specifies whether this Service has a preference for a particular IP family (e.g. IPv4 vs. IPv6). If a specific IP family is requested, the clusterIP field will be allocated from that family, if it is available in the cluster. If no IP family is requested, the cluster's primary IP family will be used. Other IP fields (loadBalancerIP, loadBalancerSourceRanges, externalIPs) and controllers which allocate external load-balancers should use the same IP family. Endpoints for this Service will be of this family. This field is immutable after creation. Assigning a ServiceIPFamily not available in the cluster (e.g. IPv6 in IPv4 only cluster) is an error condition and will fail during clusterIP assignment.", "type": "string" }, "loadBalancerIP": { "description": "Only applies to Service Type: LoadBalancer LoadBalancer will get created with the IP specified in this field. This feature depends on whether the underlying cloud-provider supports specifying the loadBalancerIP when a load balancer is created. This field will be ignored if the cloud-provider does not support the feature.", "type": "string" }, "loadBalancerSourceRanges": { "description": "If specified and supported by the platform, this will restrict traffic through the cloud-provider load-balancer will be restricted to the specified client IPs. This field will be ignored if the cloud-provider does not support the feature.\" More info: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/", "items": { "type": "string" }, "type": "array" }, "ports": { "description": "The list of ports that are exposed by this service. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_ServicePort" }, "type": "array", "x-kubernetes-list-map-keys": [ "port", "protocol" ], "x-kubernetes-list-type": "map", "x-kubernetes-patch-merge-key": "port", "x-kubernetes-patch-strategy": "merge" }, "publishNotReadyAddresses": { "description": "publishNotReadyAddresses, when set to true, indicates that DNS implementations must publish the notReadyAddresses of subsets for the Endpoints associated with the Service. The default value is false. The primary use case for setting this field is to use a StatefulSet's Headless Service to propagate SRV records for its Pods without respect to their readiness for purpose of peer discovery.", "type": "boolean" }, "selector": { "additionalProperties": { "type": "string" }, "description": "Route service traffic to pods with label keys and values matching this selector. If empty or not present, the service is assumed to have an external process managing its endpoints, which Kubernetes will not modify. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: https://kubernetes.io/docs/concepts/services-networking/service/", "type": "object" }, "sessionAffinity": { "description": "Supports \"ClientIP\" and \"None\". Used to maintain session affinity. Enable client IP based session affinity. Must be ClientIP or None. Defaults to None. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies", "type": "string" }, "sessionAffinityConfig": { "$ref": "#/definitions/io_k8s_api_core_v1_SessionAffinityConfig", "description": "sessionAffinityConfig contains the configurations of session affinity." }, "topologyKeys": { "description": "topologyKeys is a preference-order list of topology keys which implementations of services should use to preferentially sort endpoints when accessing this Service, it can not be used at the same time as externalTrafficPolicy=Local. Topology keys must be valid label keys and at most 16 keys may be specified. Endpoints are chosen based on the first topology key with available backends. If this field is specified and all entries have no backends that match the topology of the client, the service has no backends for that client and connections should fail. The special value \"*\" may be used to mean \"any topology\". This catch-all value, if used, only makes sense as the last value in the list. If this is not specified or empty, no topology constraints will be applied.", "items": { "type": "string" }, "type": "array" }, "type": { "description": "type determines how the Service is exposed. Defaults to ClusterIP. Valid options are ExternalName, ClusterIP, NodePort, and LoadBalancer. \"ExternalName\" maps to the specified externalName. \"ClusterIP\" allocates a cluster-internal IP address for load-balancing to endpoints. Endpoints are determined by the selector or if that is not specified, by manual construction of an Endpoints object. If clusterIP is \"None\", no virtual IP is allocated and the endpoints are published as a set of endpoints rather than a stable IP. \"NodePort\" builds on ClusterIP and allocates a port on every node which routes to the clusterIP. \"LoadBalancer\" builds on NodePort and creates an external load-balancer (if supported in the current cloud) which routes to the clusterIP. More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types", "type": "string" } }, "type": "object" }, "io_k8s_api_core_v1_ServiceStatus": { "description": "ServiceStatus represents the current status of a service.", "properties": { "loadBalancer": { "$ref": "#/definitions/io_k8s_api_core_v1_LoadBalancerStatus", "description": "LoadBalancer contains the current status of the load-balancer, if one is present." } }, "type": "object" }, "io_k8s_api_core_v1_SessionAffinityConfig": { "description": "SessionAffinityConfig represents the configurations of session affinity.", "properties": { "clientIP": { "$ref": "#/definitions/io_k8s_api_core_v1_ClientIPConfig", "description": "clientIP contains the configurations of Client IP based session affinity." } }, "type": "object" }, "io_k8s_api_core_v1_StorageOSPersistentVolumeSource": { "description": "Represents a StorageOS persistent volume resource.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/io_k8s_api_core_v1_ObjectReference", "description": "SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted." }, "volumeName": { "description": "VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.", "type": "string" }, "volumeNamespace": { "description": "VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \"default\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.", "type": "string" } }, "type": "object" }, "io_k8s_api_core_v1_StorageOSVolumeSource": { "description": "Represents a StorageOS persistent volume resource.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "readOnly": { "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", "type": "boolean" }, "secretRef": { "$ref": "#/definitions/io_k8s_api_core_v1_LocalObjectReference", "description": "SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted." }, "volumeName": { "description": "VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.", "type": "string" }, "volumeNamespace": { "description": "VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \"default\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.", "type": "string" } }, "type": "object" }, "io_k8s_api_core_v1_Sysctl": { "description": "Sysctl defines a kernel parameter to be set", "properties": { "name": { "description": "Name of a property to set", "type": "string" }, "value": { "description": "Value of a property to set", "type": "string" } }, "required": [ "name", "value" ], "type": "object" }, "io_k8s_api_core_v1_TCPSocketAction": { "description": "TCPSocketAction describes an action based on opening a socket", "properties": { "host": { "description": "Optional: Host name to connect to, defaults to the pod IP.", "type": "string" }, "port": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_util_intstr_IntOrString", "description": "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." } }, "required": [ "port" ], "type": "object" }, "io_k8s_api_core_v1_Taint": { "description": "The node this Taint is attached to has the \"effect\" on any pod that does not tolerate the Taint.", "properties": { "effect": { "description": "Required. The effect of the taint on pods that do not tolerate the taint. Valid effects are NoSchedule, PreferNoSchedule and NoExecute.", "type": "string" }, "key": { "description": "Required. The taint key to be applied to a node.", "type": "string" }, "timeAdded": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "TimeAdded represents the time at which the taint was added. It is only written for NoExecute taints." }, "value": { "description": "The taint value corresponding to the taint key.", "type": "string" } }, "required": [ "key", "effect" ], "type": "object" }, "io_k8s_api_core_v1_Toleration": { "description": "The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.", "properties": { "effect": { "description": "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.", "type": "string" }, "key": { "description": "Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.", "type": "string" }, "operator": { "description": "Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.", "type": "string" }, "tolerationSeconds": { "_format": "int64", "description": "TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.", "type": "integer" }, "value": { "description": "Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.", "type": "string" } }, "type": "object" }, "io_k8s_api_core_v1_TopologySelectorLabelRequirement": { "description": "A topology selector requirement is a selector that matches given label. This is an alpha feature and may change in the future.", "properties": { "key": { "description": "The label key that the selector applies to.", "type": "string" }, "values": { "description": "An array of string values. One value must match the label to be selected. Each entry in Values is ORed.", "items": { "type": "string" }, "type": "array" } }, "required": [ "key", "values" ], "type": "object" }, "io_k8s_api_core_v1_TopologySelectorTerm": { "description": "A topology selector term represents the result of label queries. A null or empty topology selector term matches no objects. The requirements of them are ANDed. It provides a subset of functionality as NodeSelectorTerm. This is an alpha feature and may change in the future.", "properties": { "matchLabelExpressions": { "description": "A list of topology selector requirements by labels.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_TopologySelectorLabelRequirement" }, "type": "array" } }, "type": "object" }, "io_k8s_api_core_v1_TopologySpreadConstraint": { "description": "TopologySpreadConstraint specifies how to spread matching pods among the given topology.", "properties": { "labelSelector": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "LabelSelector is used to find matching pods. Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain." }, "maxSkew": { "_format": "int32", "description": "MaxSkew describes the degree to which pods may be unevenly distributed. It's the maximum permitted difference between the number of matching pods in any two topology domains of a given topology type. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 1/1/0: | zone1 | zone2 | zone3 | | P | P | | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 1/1/1; scheduling it onto zone1(zone2) would make the ActualSkew(2-0) on zone1(zone2) violate MaxSkew(1). - if MaxSkew is 2, incoming pod can be scheduled onto any zone. It's a required field. Default value is 1 and 0 is not allowed.", "type": "integer" }, "topologyKey": { "description": "TopologyKey is the key of node labels. Nodes that have a label with this key and identical values are considered to be in the same topology. We consider each <key, value> as a \"bucket\", and try to put balanced number of pods into each bucket. It's a required field.", "type": "string" }, "whenUnsatisfiable": { "description": "WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy the spread constraint. - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to still schedule it It's considered as \"Unsatisfiable\" if and only if placing incoming pod on any topology violates \"MaxSkew\". For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P | P | P | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler won't make it *more* imbalanced. It's a required field.", "type": "string" } }, "required": [ "maxSkew", "topologyKey", "whenUnsatisfiable" ], "type": "object" }, "io_k8s_api_core_v1_TypedLocalObjectReference": { "description": "TypedLocalObjectReference contains enough information to let you locate the typed referenced object inside the same namespace.", "properties": { "apiGroup": { "description": "APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required.", "type": "string" }, "kind": { "description": "Kind is the type of resource being referenced", "type": "string" }, "name": { "description": "Name is the name of resource being referenced", "type": "string" } }, "required": [ "kind", "name" ], "type": "object" }, "io_k8s_api_core_v1_Volume": { "description": "Volume represents a named volume in a pod that may be accessed by any container in the pod.", "properties": { "awsElasticBlockStore": { "$ref": "#/definitions/io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource", "description": "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore" }, "azureDisk": { "$ref": "#/definitions/io_k8s_api_core_v1_AzureDiskVolumeSource", "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod." }, "azureFile": { "$ref": "#/definitions/io_k8s_api_core_v1_AzureFileVolumeSource", "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod." }, "cephfs": { "$ref": "#/definitions/io_k8s_api_core_v1_CephFSVolumeSource", "description": "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime" }, "cinder": { "$ref": "#/definitions/io_k8s_api_core_v1_CinderVolumeSource", "description": "Cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md" }, "configMap": { "$ref": "#/definitions/io_k8s_api_core_v1_ConfigMapVolumeSource", "description": "ConfigMap represents a configMap that should populate this volume" }, "csi": { "$ref": "#/definitions/io_k8s_api_core_v1_CSIVolumeSource", "description": "CSI (Container Storage Interface) represents storage that is handled by an external CSI driver (Alpha feature)." }, "downwardAPI": { "$ref": "#/definitions/io_k8s_api_core_v1_DownwardAPIVolumeSource", "description": "DownwardAPI represents downward API about the pod that should populate this volume" }, "emptyDir": { "$ref": "#/definitions/io_k8s_api_core_v1_EmptyDirVolumeSource", "description": "EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir" }, "fc": { "$ref": "#/definitions/io_k8s_api_core_v1_FCVolumeSource", "description": "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod." }, "flexVolume": { "$ref": "#/definitions/io_k8s_api_core_v1_FlexVolumeSource", "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin." }, "flocker": { "$ref": "#/definitions/io_k8s_api_core_v1_FlockerVolumeSource", "description": "Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running" }, "gcePersistentDisk": { "$ref": "#/definitions/io_k8s_api_core_v1_GCEPersistentDiskVolumeSource", "description": "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk" }, "gitRepo": { "$ref": "#/definitions/io_k8s_api_core_v1_GitRepoVolumeSource", "description": "GitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container." }, "glusterfs": { "$ref": "#/definitions/io_k8s_api_core_v1_GlusterfsVolumeSource", "description": "Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md" }, "hostPath": { "$ref": "#/definitions/io_k8s_api_core_v1_HostPathVolumeSource", "description": "HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath" }, "iscsi": { "$ref": "#/definitions/io_k8s_api_core_v1_ISCSIVolumeSource", "description": "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md" }, "name": { "description": "Volume's name. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", "type": "string" }, "nfs": { "$ref": "#/definitions/io_k8s_api_core_v1_NFSVolumeSource", "description": "NFS represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs" }, "persistentVolumeClaim": { "$ref": "#/definitions/io_k8s_api_core_v1_PersistentVolumeClaimVolumeSource", "description": "PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims" }, "photonPersistentDisk": { "$ref": "#/definitions/io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource", "description": "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine" }, "portworxVolume": { "$ref": "#/definitions/io_k8s_api_core_v1_PortworxVolumeSource", "description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine" }, "projected": { "$ref": "#/definitions/io_k8s_api_core_v1_ProjectedVolumeSource", "description": "Items for all in one resources secrets, configmaps, and downward API" }, "quobyte": { "$ref": "#/definitions/io_k8s_api_core_v1_QuobyteVolumeSource", "description": "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime" }, "rbd": { "$ref": "#/definitions/io_k8s_api_core_v1_RBDVolumeSource", "description": "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md" }, "scaleIO": { "$ref": "#/definitions/io_k8s_api_core_v1_ScaleIOVolumeSource", "description": "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes." }, "secret": { "$ref": "#/definitions/io_k8s_api_core_v1_SecretVolumeSource", "description": "Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret" }, "storageos": { "$ref": "#/definitions/io_k8s_api_core_v1_StorageOSVolumeSource", "description": "StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes." }, "vsphereVolume": { "$ref": "#/definitions/io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource", "description": "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine" } }, "required": [ "name" ], "type": "object" }, "io_k8s_api_core_v1_VolumeDevice": { "description": "volumeDevice describes a mapping of a raw block device within a container.", "properties": { "devicePath": { "description": "devicePath is the path inside of the container that the device will be mapped to.", "type": "string" }, "name": { "description": "name must match the name of a persistentVolumeClaim in the pod", "type": "string" } }, "required": [ "name", "devicePath" ], "type": "object" }, "io_k8s_api_core_v1_VolumeMount": { "description": "VolumeMount describes a mounting of a Volume within a container.", "properties": { "mountPath": { "description": "Path within the container at which the volume should be mounted. Must not contain ':'.", "type": "string" }, "mountPropagation": { "description": "mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.", "type": "string" }, "name": { "description": "This must match the Name of a Volume.", "type": "string" }, "readOnly": { "description": "Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.", "type": "boolean" }, "subPath": { "description": "Path within the volume from which the container's volume should be mounted. Defaults to \"\" (volume's root).", "type": "string" }, "subPathExpr": { "description": "Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to \"\" (volume's root). SubPathExpr and SubPath are mutually exclusive.", "type": "string" } }, "required": [ "name", "mountPath" ], "type": "object" }, "io_k8s_api_core_v1_VolumeNodeAffinity": { "description": "VolumeNodeAffinity defines constraints that limit what nodes this volume can be accessed from.", "properties": { "required": { "$ref": "#/definitions/io_k8s_api_core_v1_NodeSelector", "description": "Required specifies hard node constraints that must be met." } }, "type": "object" }, "io_k8s_api_core_v1_VolumeProjection": { "description": "Projection that may be projected along with other supported volume types", "properties": { "configMap": { "$ref": "#/definitions/io_k8s_api_core_v1_ConfigMapProjection", "description": "information about the configMap data to project" }, "downwardAPI": { "$ref": "#/definitions/io_k8s_api_core_v1_DownwardAPIProjection", "description": "information about the downwardAPI data to project" }, "secret": { "$ref": "#/definitions/io_k8s_api_core_v1_SecretProjection", "description": "information about the secret data to project" }, "serviceAccountToken": { "$ref": "#/definitions/io_k8s_api_core_v1_ServiceAccountTokenProjection", "description": "information about the serviceAccountToken data to project" } }, "type": "object" }, "io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource": { "description": "Represents a vSphere volume resource.", "properties": { "fsType": { "description": "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", "type": "string" }, "storagePolicyID": { "description": "Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.", "type": "string" }, "storagePolicyName": { "description": "Storage Policy Based Management (SPBM) profile name.", "type": "string" }, "volumePath": { "description": "Path that identifies vSphere volume vmdk", "type": "string" } }, "required": [ "volumePath" ], "type": "object" }, "io_k8s_api_core_v1_WeightedPodAffinityTerm": { "description": "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)", "properties": { "podAffinityTerm": { "$ref": "#/definitions/io_k8s_api_core_v1_PodAffinityTerm", "description": "Required. A pod affinity term, associated with the corresponding weight." }, "weight": { "_format": "int32", "description": "weight associated with matching the corresponding podAffinityTerm, in the range 1-100.", "type": "integer" } }, "required": [ "weight", "podAffinityTerm" ], "type": "object" }, "io_k8s_api_core_v1_WindowsSecurityContextOptions": { "description": "WindowsSecurityContextOptions contain Windows-specific options and credentials.", "properties": { "gmsaCredentialSpec": { "description": "GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.", "type": "string" }, "gmsaCredentialSpecName": { "description": "GMSACredentialSpecName is the name of the GMSA credential spec to use.", "type": "string" }, "runAsUserName": { "description": "The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", "type": "string" } }, "type": "object" }, "io_k8s_api_discovery_v1beta1_Endpoint": { "description": "Endpoint represents a single logical \"backend\" implementing a service.", "properties": { "addresses": { "description": "addresses of this endpoint. The contents of this field are interpreted according to the corresponding EndpointSlice addressType field. Consumers must handle different types of addresses in the context of their own capabilities. This must contain at least one address but no more than 100.", "items": { "type": "string" }, "type": "array", "x-kubernetes-list-type": "set" }, "conditions": { "$ref": "#/definitions/io_k8s_api_discovery_v1beta1_EndpointConditions", "description": "conditions contains information about the current status of the endpoint." }, "hostname": { "description": "hostname of this endpoint. This field may be used by consumers of endpoints to distinguish endpoints from each other (e.g. in DNS names). Multiple endpoints which use the same hostname should be considered fungible (e.g. multiple A values in DNS). Must pass DNS Label (RFC 1123) validation.", "type": "string" }, "targetRef": { "$ref": "#/definitions/io_k8s_api_core_v1_ObjectReference", "description": "targetRef is a reference to a Kubernetes object that represents this endpoint." }, "topology": { "additionalProperties": { "type": "string" }, "description": "topology contains arbitrary topology information associated with the endpoint. These key/value pairs must conform with the label format. https://kubernetes.io/docs/concepts/overview/working-with-objects/labels Topology may include a maximum of 16 key/value pairs. This includes, but is not limited to the following well known keys: * kubernetes.io/hostname: the value indicates the hostname of the node\n where the endpoint is located. This should match the corresponding\n node label.\n* topology.kubernetes.io/zone: the value indicates the zone where the\n endpoint is located. This should match the corresponding node label.\n* topology.kubernetes.io/region: the value indicates the region where the\n endpoint is located. This should match the corresponding node label.", "type": "object" } }, "required": [ "addresses" ], "type": "object" }, "io_k8s_api_discovery_v1beta1_EndpointConditions": { "description": "EndpointConditions represents the current condition of an endpoint.", "properties": { "ready": { "description": "ready indicates that this endpoint is prepared to receive traffic, according to whatever system is managing the endpoint. A nil value indicates an unknown state. In most cases consumers should interpret this unknown state as ready.", "type": "boolean" } }, "type": "object" }, "io_k8s_api_discovery_v1beta1_EndpointPort": { "description": "EndpointPort represents a Port used by an EndpointSlice", "properties": { "appProtocol": { "description": "The application protocol for this port. This field follows standard Kubernetes label syntax. Un-prefixed names are reserved for IANA standard service names (as per RFC-6335 and http://www.iana.org/assignments/service-names). Non-standard protocols should use prefixed names such as mycompany.com/my-custom-protocol.", "type": "string" }, "name": { "description": "The name of this port. All ports in an EndpointSlice must have a unique name. If the EndpointSlice is dervied from a Kubernetes service, this corresponds to the Service.ports[].name. Name must either be an empty string or pass DNS_LABEL validation: * must be no more than 63 characters long. * must consist of lower case alphanumeric characters or '-'. * must start and end with an alphanumeric character. Default is empty string.", "type": "string" }, "port": { "_format": "int32", "description": "The port number of the endpoint. If this is not specified, ports are not restricted and must be interpreted in the context of the specific consumer.", "type": "integer" }, "protocol": { "description": "The IP protocol for this port. Must be UDP, TCP, or SCTP. Default is TCP.", "type": "string" } }, "type": "object" }, "io_k8s_api_discovery_v1beta1_EndpointSlice": { "description": "EndpointSlice represents a subset of the endpoints that implement a service. For a given service there may be multiple EndpointSlice objects, selected by labels, which must be joined to produce the full set of endpoints.", "properties": { "addressType": { "description": "addressType specifies the type of address carried by this EndpointSlice. All addresses in this slice must be the same type. This field is immutable after creation. The following address types are currently supported: * IPv4: Represents an IPv4 Address. * IPv6: Represents an IPv6 Address. * FQDN: Represents a Fully Qualified Domain Name.", "type": "string" }, "apiVersion": { "description": "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", "type": "string" }, "endpoints": { "description": "endpoints is a list of unique endpoints in this slice. Each slice may include a maximum of 1000 endpoints.", "items": { "$ref": "#/definitions/io_k8s_api_discovery_v1beta1_Endpoint" }, "type": "array", "x-kubernetes-list-type": "atomic" }, "kind": { "description": "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", "enum": [ "EndpointSlice" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata." }, "ports": { "description": "ports specifies the list of network ports exposed by each endpoint in this slice. Each port must have a unique name. When ports is empty, it indicates that there are no defined ports. When a port is defined with a nil port value, it indicates \"all ports\". Each slice may include a maximum of 100 ports.", "items": { "$ref": "#/definitions/io_k8s_api_discovery_v1beta1_EndpointPort" }, "type": "array", "x-kubernetes-list-type": "atomic" } }, "required": [ "addressType", "endpoints" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "discovery.k8s.io", "kind": "EndpointSlice", "version": "v1beta1" } ] }, "io_k8s_api_discovery_v1beta1_EndpointSliceList": { "description": "EndpointSliceList represents a list of endpoint slices", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "List of endpoint slices", "items": { "$ref": "#/definitions/io_k8s_api_discovery_v1beta1_EndpointSlice" }, "type": "array" }, "kind": { "description": "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", "enum": [ "EndpointSliceList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata." } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "discovery.k8s.io", "kind": "EndpointSliceList", "version": "v1beta1" } ] }, "io_k8s_api_events_v1beta1_Event": { "description": "Event is a report of an event somewhere in the cluster. It generally denotes some state change in the system.", "properties": { "action": { "description": "What action was taken/failed regarding to the regarding object.", "type": "string" }, "apiVersion": { "description": "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", "type": "string" }, "deprecatedCount": { "_format": "int32", "description": "Deprecated field assuring backward compatibility with core.v1 Event type", "type": "integer" }, "deprecatedFirstTimestamp": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Deprecated field assuring backward compatibility with core.v1 Event type" }, "deprecatedLastTimestamp": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Deprecated field assuring backward compatibility with core.v1 Event type" }, "deprecatedSource": { "$ref": "#/definitions/io_k8s_api_core_v1_EventSource", "description": "Deprecated field assuring backward compatibility with core.v1 Event type" }, "eventTime": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_MicroTime", "description": "Required. Time when this Event was first observed." }, "kind": { "description": "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", "enum": [ "Event" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta" }, "note": { "description": "Optional. A human-readable description of the status of this operation. Maximal length of the note is 1kB, but libraries should be prepared to handle values up to 64kB.", "type": "string" }, "reason": { "description": "Why the action was taken.", "type": "string" }, "regarding": { "$ref": "#/definitions/io_k8s_api_core_v1_ObjectReference", "description": "The object this Event is about. In most cases it's an Object reporting controller implements. E.g. ReplicaSetController implements ReplicaSets and this event is emitted because it acts on some changes in a ReplicaSet object." }, "related": { "$ref": "#/definitions/io_k8s_api_core_v1_ObjectReference", "description": "Optional secondary object for more complex actions. E.g. when regarding object triggers a creation or deletion of related object." }, "reportingController": { "description": "Name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`.", "type": "string" }, "reportingInstance": { "description": "ID of the controller instance, e.g. `kubelet-xyzf`.", "type": "string" }, "series": { "$ref": "#/definitions/io_k8s_api_events_v1beta1_EventSeries", "description": "Data about the Event series this event represents or nil if it's a singleton Event." }, "type": { "description": "Type of this event (Normal, Warning), new types could be added in the future.", "type": "string" } }, "required": [ "eventTime" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "events.k8s.io", "kind": "Event", "version": "v1beta1" } ] }, "io_k8s_api_events_v1beta1_EventList": { "description": "EventList is a list of Event objects.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "Items is a list of schema objects.", "items": { "$ref": "#/definitions/io_k8s_api_events_v1beta1_Event" }, "type": "array" }, "kind": { "description": "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", "enum": [ "EventList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "events.k8s.io", "kind": "EventList", "version": "v1beta1" } ] }, "io_k8s_api_events_v1beta1_EventSeries": { "description": "EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time.", "properties": { "count": { "_format": "int32", "description": "Number of occurrences in this series up to the last heartbeat time", "type": "integer" }, "lastObservedTime": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_MicroTime", "description": "Time when last Event from the series was seen before last heartbeat." }, "state": { "description": "Information whether this series is ongoing or finished. Deprecated. Planned removal for 1.18", "type": "string" } }, "required": [ "count", "lastObservedTime", "state" ], "type": "object" }, "io_k8s_api_extensions_v1beta1_HTTPIngressPath": { "description": "HTTPIngressPath associates a path with a backend. Incoming urls matching the path are forwarded to the backend.", "properties": { "backend": { "$ref": "#/definitions/io_k8s_api_extensions_v1beta1_IngressBackend", "description": "Backend defines the referenced service endpoint to which the traffic will be forwarded to." }, "path": { "description": "Path is matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional \"path\" part of a URL as defined by RFC 3986. Paths must begin with a '/'. When unspecified, all paths from incoming requests are matched.", "type": "string" }, "pathType": { "description": "PathType determines the interpretation of the Path matching. PathType can be one of the following values: * Exact: Matches the URL path exactly. * Prefix: Matches based on a URL path prefix split by '/'. Matching is\n done on a path element by element basis. A path element refers is the\n list of labels in the path split by the '/' separator. A request is a\n match for path p if every p is an element-wise prefix of p of the\n request path. Note that if the last element of the path is a substring\n of the last element in request path, it is not a match (e.g. /foo/bar\n matches /foo/bar/baz, but does not match /foo/barbaz).\n* ImplementationSpecific: Interpretation of the Path matching is up to\n the IngressClass. Implementations can treat this as a separate PathType\n or treat it identically to Prefix or Exact path types.\nImplementations are required to support all path types. Defaults to ImplementationSpecific.", "type": "string" } }, "required": [ "backend" ], "type": "object" }, "io_k8s_api_extensions_v1beta1_HTTPIngressRuleValue": { "description": "HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http://<host>/<path>?<searchpart> -> backend where where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last '/' and before the first '?' or '#'.", "properties": { "paths": { "description": "A collection of paths that map requests to backends.", "items": { "$ref": "#/definitions/io_k8s_api_extensions_v1beta1_HTTPIngressPath" }, "type": "array" } }, "required": [ "paths" ], "type": "object" }, "io_k8s_api_extensions_v1beta1_Ingress": { "description": "Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc. DEPRECATED - This group version of Ingress is deprecated by networking.k8s.io/v1beta1 Ingress. See the release notes for more information.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "Ingress" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/io_k8s_api_extensions_v1beta1_IngressSpec", "description": "Spec is the desired state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" }, "status": { "$ref": "#/definitions/io_k8s_api_extensions_v1beta1_IngressStatus", "description": "Status is the current state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "extensions", "kind": "Ingress", "version": "v1beta1" } ] }, "io_k8s_api_extensions_v1beta1_IngressBackend": { "description": "IngressBackend describes all endpoints for a given service and port.", "properties": { "resource": { "$ref": "#/definitions/io_k8s_api_core_v1_TypedLocalObjectReference", "description": "Resource is an ObjectRef to another Kubernetes resource in the namespace of the Ingress object. If resource is specified, serviceName and servicePort must not be specified." }, "serviceName": { "description": "Specifies the name of the referenced service.", "type": "string" }, "servicePort": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_util_intstr_IntOrString", "description": "Specifies the port of the referenced service." } }, "type": "object" }, "io_k8s_api_extensions_v1beta1_IngressList": { "description": "IngressList is a collection of Ingress.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "Items is the list of Ingress.", "items": { "$ref": "#/definitions/io_k8s_api_extensions_v1beta1_Ingress" }, "type": "array" }, "kind": { "description": "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", "enum": [ "IngressList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "extensions", "kind": "IngressList", "version": "v1beta1" } ] }, "io_k8s_api_extensions_v1beta1_IngressRule": { "description": "IngressRule represents the rules mapping the paths under a specified host to the related backend services. Incoming requests are first evaluated for a host match, then routed to the backend associated with the matching IngressRuleValue.", "properties": { "host": { "description": "Host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the \"host\" part of the URI as defined in RFC 3986: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to\n the IP in the Spec of the parent Ingress.\n2. The `:` delimiter is not respected because ports are not allowed.\n\t Currently the port of an Ingress is implicitly :80 for http and\n\t :443 for https.\nBoth these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue.\n\nHost can be \"precise\" which is a domain name without the terminating dot of a network host (e.g. \"foo.bar.com\") or \"wildcard\", which is a domain name prefixed with a single wildcard label (e.g. \"*.foo.com\"). The wildcard character '*' must appear by itself as the first DNS label and matches only a single label. You cannot have a wildcard label by itself (e.g. Host == \"*\"). Requests will be matched against the Host field in the following way: 1. If Host is precise, the request matches this rule if the http host header is equal to Host. 2. If Host is a wildcard, then the request matches this rule if the http host header is to equal to the suffix (removing the first label) of the wildcard rule.", "type": "string" }, "http": { "$ref": "#/definitions/io_k8s_api_extensions_v1beta1_HTTPIngressRuleValue" } }, "type": "object" }, "io_k8s_api_extensions_v1beta1_IngressSpec": { "description": "IngressSpec describes the Ingress the user wishes to exist.", "properties": { "backend": { "$ref": "#/definitions/io_k8s_api_extensions_v1beta1_IngressBackend", "description": "A default backend capable of servicing requests that don't match any rule. At least one of 'backend' or 'rules' must be specified. This field is optional to allow the loadbalancer controller or defaulting logic to specify a global default." }, "ingressClassName": { "description": "IngressClassName is the name of the IngressClass cluster resource. The associated IngressClass defines which controller will implement the resource. This replaces the deprecated `kubernetes.io/ingress.class` annotation. For backwards compatibility, when that annotation is set, it must be given precedence over this field. The controller may emit a warning if the field and annotation have different values. Implementations of this API should ignore Ingresses without a class specified. An IngressClass resource may be marked as default, which can be used to set a default value for this field. For more information, refer to the IngressClass documentation.", "type": "string" }, "rules": { "description": "A list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend.", "items": { "$ref": "#/definitions/io_k8s_api_extensions_v1beta1_IngressRule" }, "type": "array" }, "tls": { "description": "TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.", "items": { "$ref": "#/definitions/io_k8s_api_extensions_v1beta1_IngressTLS" }, "type": "array" } }, "type": "object" }, "io_k8s_api_extensions_v1beta1_IngressStatus": { "description": "IngressStatus describe the current state of the Ingress.", "properties": { "loadBalancer": { "$ref": "#/definitions/io_k8s_api_core_v1_LoadBalancerStatus", "description": "LoadBalancer contains the current status of the load-balancer." } }, "type": "object" }, "io_k8s_api_extensions_v1beta1_IngressTLS": { "description": "IngressTLS describes the transport layer security associated with an Ingress.", "properties": { "hosts": { "description": "Hosts are a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified.", "items": { "type": "string" }, "type": "array" }, "secretName": { "description": "SecretName is the name of the secret used to terminate SSL traffic on 443. Field is left optional to allow SSL routing based on SNI hostname alone. If the SNI host in a listener conflicts with the \"Host\" header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing.", "type": "string" } }, "type": "object" }, "io_k8s_api_flowcontrol_v1alpha1_FlowDistinguisherMethod": { "description": "FlowDistinguisherMethod specifies the method of a flow distinguisher.", "properties": { "type": { "description": "`type` is the type of flow distinguisher method The supported types are \"ByUser\" and \"ByNamespace\". Required.", "type": "string" } }, "required": [ "type" ], "type": "object" }, "io_k8s_api_flowcontrol_v1alpha1_FlowSchema": { "description": "FlowSchema defines the schema of a group of flows. Note that a flow is made up of a set of inbound API requests with similar attributes and is identified by a pair of strings: the name of the FlowSchema and a \"flow distinguisher\".", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "FlowSchema" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "`metadata` is the standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_FlowSchemaSpec", "description": "`spec` is the specification of the desired behavior of a FlowSchema. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status" }, "status": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_FlowSchemaStatus", "description": "`status` is the current status of a FlowSchema. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "flowcontrol.apiserver.k8s.io", "kind": "FlowSchema", "version": "v1alpha1" } ] }, "io_k8s_api_flowcontrol_v1alpha1_FlowSchemaCondition": { "description": "FlowSchemaCondition describes conditions for a FlowSchema.", "properties": { "lastTransitionTime": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "`lastTransitionTime` is the last time the condition transitioned from one status to another." }, "message": { "description": "`message` is a human-readable message indicating details about last transition.", "type": "string" }, "reason": { "description": "`reason` is a unique, one-word, CamelCase reason for the condition's last transition.", "type": "string" }, "status": { "description": "`status` is the status of the condition. Can be True, False, Unknown. Required.", "type": "string" }, "type": { "description": "`type` is the type of the condition. Required.", "type": "string" } }, "type": "object" }, "io_k8s_api_flowcontrol_v1alpha1_FlowSchemaList": { "description": "FlowSchemaList is a list of FlowSchema objects.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "`items` is a list of FlowSchemas.", "items": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_FlowSchema" }, "type": "array" }, "kind": { "description": "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", "enum": [ "FlowSchemaList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "`metadata` is the standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "flowcontrol.apiserver.k8s.io", "kind": "FlowSchemaList", "version": "v1alpha1" } ] }, "io_k8s_api_flowcontrol_v1alpha1_FlowSchemaSpec": { "description": "FlowSchemaSpec describes how the FlowSchema's specification looks like.", "properties": { "distinguisherMethod": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_FlowDistinguisherMethod", "description": "`distinguisherMethod` defines how to compute the flow distinguisher for requests that match this schema. `nil` specifies that the distinguisher is disabled and thus will always be the empty string." }, "matchingPrecedence": { "_format": "int32", "description": "`matchingPrecedence` is used to choose among the FlowSchemas that match a given request. The chosen FlowSchema is among those with the numerically lowest (which we take to be logically highest) MatchingPrecedence. Each MatchingPrecedence value must be ranged in [1,10000]. Note that if the precedence is not specified, it will be set to 1000 as default.", "type": "integer" }, "priorityLevelConfiguration": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfigurationReference", "description": "`priorityLevelConfiguration` should reference a PriorityLevelConfiguration in the cluster. If the reference cannot be resolved, the FlowSchema will be ignored and marked as invalid in its status. Required." }, "rules": { "description": "`rules` describes which requests will match this flow schema. This FlowSchema matches a request if and only if at least one member of rules matches the request. if it is an empty slice, there will be no requests matching the FlowSchema.", "items": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_PolicyRulesWithSubjects" }, "type": "array", "x-kubernetes-list-type": "atomic" } }, "required": [ "priorityLevelConfiguration" ], "type": "object" }, "io_k8s_api_flowcontrol_v1alpha1_FlowSchemaStatus": { "description": "FlowSchemaStatus represents the current state of a FlowSchema.", "properties": { "conditions": { "description": "`conditions` is a list of the current states of FlowSchema.", "items": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_FlowSchemaCondition" }, "type": "array", "x-kubernetes-list-map-keys": [ "type" ], "x-kubernetes-list-type": "map" } }, "type": "object" }, "io_k8s_api_flowcontrol_v1alpha1_GroupSubject": { "description": "GroupSubject holds detailed information for group-kind subject.", "properties": { "name": { "description": "name is the user group that matches, or \"*\" to match all user groups. See https://github.com/kubernetes/apiserver/blob/master/pkg/authentication/user/user.go for some well-known group names. Required.", "type": "string" } }, "required": [ "name" ], "type": "object" }, "io_k8s_api_flowcontrol_v1alpha1_LimitResponse": { "description": "LimitResponse defines how to handle requests that can not be executed right now.", "properties": { "queuing": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_QueuingConfiguration", "description": "`queuing` holds the configuration parameters for queuing. This field may be non-empty only if `type` is `\"Queue\"`." }, "type": { "description": "`type` is \"Queue\" or \"Reject\". \"Queue\" means that requests that can not be executed upon arrival are held in a queue until they can be executed or a queuing limit is reached. \"Reject\" means that requests that can not be executed upon arrival are rejected. Required.", "type": "string" } }, "required": [ "type" ], "type": "object", "x-kubernetes-unions": [ { "discriminator": "type", "fields-to-discriminateBy": { "queuing": "Queuing" } } ] }, "io_k8s_api_flowcontrol_v1alpha1_LimitedPriorityLevelConfiguration": { "description": "LimitedPriorityLevelConfiguration specifies how to handle requests that are subject to limits. It addresses two issues:\n * How are requests for this priority level limited?\n * What should be done with requests that exceed the limit?", "properties": { "assuredConcurrencyShares": { "_format": "int32", "description": "`assuredConcurrencyShares` (ACS) configures the execution limit, which is a limit on the number of requests of this priority level that may be exeucting at a given time. ACS must be a positive number. The server's concurrency limit (SCL) is divided among the concurrency-controlled priority levels in proportion to their assured concurrency shares. This produces the assured concurrency value (ACV) --- the number of requests that may be executing at a time --- for each such priority level:\n\n ACV(l) = ceil( SCL * ACS(l) / ( sum[priority levels k] ACS(k) ) )\n\nbigger numbers of ACS mean more reserved concurrent requests (at the expense of every other PL). This field has a default value of 30.", "type": "integer" }, "limitResponse": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_LimitResponse", "description": "`limitResponse` indicates what to do with requests that can not be executed right now" } }, "type": "object" }, "io_k8s_api_flowcontrol_v1alpha1_NonResourcePolicyRule": { "description": "NonResourcePolicyRule is a predicate that matches non-resource requests according to their verb and the target non-resource URL. A NonResourcePolicyRule matches a request if and only if both (a) at least one member of verbs matches the request and (b) at least one member of nonResourceURLs matches the request.", "properties": { "nonResourceURLs": { "description": "`nonResourceURLs` is a set of url prefixes that a user should have access to and may not be empty. For example:\n - \"/healthz\" is legal\n - \"/hea*\" is illegal\n - \"/hea\" is legal but matches nothing\n - \"/hea/*\" also matches nothing\n - \"/healthz/*\" matches all per-component health checks.\n\"*\" matches all non-resource urls. if it is present, it must be the only entry. Required.", "items": { "type": "string" }, "type": "array", "x-kubernetes-list-type": "set" }, "verbs": { "description": "`verbs` is a list of matching verbs and may not be empty. \"*\" matches all verbs. If it is present, it must be the only entry. Required.", "items": { "type": "string" }, "type": "array", "x-kubernetes-list-type": "set" } }, "required": [ "verbs", "nonResourceURLs" ], "type": "object" }, "io_k8s_api_flowcontrol_v1alpha1_PolicyRulesWithSubjects": { "description": "PolicyRulesWithSubjects prescribes a test that applies to a request to an apiserver. The test considers the subject making the request, the verb being requested, and the resource to be acted upon. This PolicyRulesWithSubjects matches a request if and only if both (a) at least one member of subjects matches the request and (b) at least one member of resourceRules or nonResourceRules matches the request.", "properties": { "nonResourceRules": { "description": "`nonResourceRules` is a list of NonResourcePolicyRules that identify matching requests according to their verb and the target non-resource URL.", "items": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_NonResourcePolicyRule" }, "type": "array", "x-kubernetes-list-type": "atomic" }, "resourceRules": { "description": "`resourceRules` is a slice of ResourcePolicyRules that identify matching requests according to their verb and the target resource. At least one of `resourceRules` and `nonResourceRules` has to be non-empty.", "items": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_ResourcePolicyRule" }, "type": "array", "x-kubernetes-list-type": "atomic" }, "subjects": { "description": "subjects is the list of normal user, serviceaccount, or group that this rule cares about. There must be at least one member in this slice. A slice that includes both the system:authenticated and system:unauthenticated user groups matches every request. Required.", "items": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_Subject" }, "type": "array", "x-kubernetes-list-type": "atomic" } }, "required": [ "subjects" ], "type": "object" }, "io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfiguration": { "description": "PriorityLevelConfiguration represents the configuration of a priority level.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "PriorityLevelConfiguration" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "`metadata` is the standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfigurationSpec", "description": "`spec` is the specification of the desired behavior of a \"request-priority\". More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status" }, "status": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfigurationStatus", "description": "`status` is the current status of a \"request-priority\". More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "flowcontrol.apiserver.k8s.io", "kind": "PriorityLevelConfiguration", "version": "v1alpha1" } ] }, "io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfigurationCondition": { "description": "PriorityLevelConfigurationCondition defines the condition of priority level.", "properties": { "lastTransitionTime": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "`lastTransitionTime` is the last time the condition transitioned from one status to another." }, "message": { "description": "`message` is a human-readable message indicating details about last transition.", "type": "string" }, "reason": { "description": "`reason` is a unique, one-word, CamelCase reason for the condition's last transition.", "type": "string" }, "status": { "description": "`status` is the status of the condition. Can be True, False, Unknown. Required.", "type": "string" }, "type": { "description": "`type` is the type of the condition. Required.", "type": "string" } }, "type": "object" }, "io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfigurationList": { "description": "PriorityLevelConfigurationList is a list of PriorityLevelConfiguration objects.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "`items` is a list of request-priorities.", "items": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfiguration" }, "type": "array" }, "kind": { "description": "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", "enum": [ "PriorityLevelConfigurationList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "`metadata` is the standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "flowcontrol.apiserver.k8s.io", "kind": "PriorityLevelConfigurationList", "version": "v1alpha1" } ] }, "io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfigurationReference": { "description": "PriorityLevelConfigurationReference contains information that points to the \"request-priority\" being used.", "properties": { "name": { "description": "`name` is the name of the priority level configuration being referenced Required.", "type": "string" } }, "required": [ "name" ], "type": "object" }, "io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfigurationSpec": { "description": "PriorityLevelConfigurationSpec specifies the configuration of a priority level.", "properties": { "limited": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_LimitedPriorityLevelConfiguration", "description": "`limited` specifies how requests are handled for a Limited priority level. This field must be non-empty if and only if `type` is `\"Limited\"`." }, "type": { "description": "`type` indicates whether this priority level is subject to limitation on request execution. A value of `\"Exempt\"` means that requests of this priority level are not subject to a limit (and thus are never queued) and do not detract from the capacity made available to other priority levels. A value of `\"Limited\"` means that (a) requests of this priority level _are_ subject to limits and (b) some of the server's limited capacity is made available exclusively to this priority level. Required.", "type": "string" } }, "required": [ "type" ], "type": "object", "x-kubernetes-unions": [ { "discriminator": "type", "fields-to-discriminateBy": { "limited": "Limited" } } ] }, "io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfigurationStatus": { "description": "PriorityLevelConfigurationStatus represents the current state of a \"request-priority\".", "properties": { "conditions": { "description": "`conditions` is the current state of \"request-priority\".", "items": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfigurationCondition" }, "type": "array", "x-kubernetes-list-map-keys": [ "type" ], "x-kubernetes-list-type": "map" } }, "type": "object" }, "io_k8s_api_flowcontrol_v1alpha1_QueuingConfiguration": { "description": "QueuingConfiguration holds the configuration parameters for queuing", "properties": { "handSize": { "_format": "int32", "description": "`handSize` is a small positive number that configures the shuffle sharding of requests into queues. When enqueuing a request at this priority level the request's flow identifier (a string pair) is hashed and the hash value is used to shuffle the list of queues and deal a hand of the size specified here. The request is put into one of the shortest queues in that hand. `handSize` must be no larger than `queues`, and should be significantly smaller (so that a few heavy flows do not saturate most of the queues). See the user-facing documentation for more extensive guidance on setting this field. This field has a default value of 8.", "type": "integer" }, "queueLengthLimit": { "_format": "int32", "description": "`queueLengthLimit` is the maximum number of requests allowed to be waiting in a given queue of this priority level at a time; excess requests are rejected. This value must be positive. If not specified, it will be defaulted to 50.", "type": "integer" }, "queues": { "_format": "int32", "description": "`queues` is the number of queues for this priority level. The queues exist independently at each apiserver. The value must be positive. Setting it to 1 effectively precludes shufflesharding and thus makes the distinguisher method of associated flow schemas irrelevant. This field has a default value of 64.", "type": "integer" } }, "type": "object" }, "io_k8s_api_flowcontrol_v1alpha1_ResourcePolicyRule": { "description": "ResourcePolicyRule is a predicate that matches some resource requests, testing the request's verb and the target resource. A ResourcePolicyRule matches a resource request if and only if: (a) at least one member of verbs matches the request, (b) at least one member of apiGroups matches the request, (c) at least one member of resources matches the request, and (d) least one member of namespaces matches the request.", "properties": { "apiGroups": { "description": "`apiGroups` is a list of matching API groups and may not be empty. \"*\" matches all API groups and, if present, must be the only entry. Required.", "items": { "type": "string" }, "type": "array", "x-kubernetes-list-type": "set" }, "clusterScope": { "description": "`clusterScope` indicates whether to match requests that do not specify a namespace (which happens either because the resource is not namespaced or the request targets all namespaces). If this field is omitted or false then the `namespaces` field must contain a non-empty list.", "type": "boolean" }, "namespaces": { "description": "`namespaces` is a list of target namespaces that restricts matches. A request that specifies a target namespace matches only if either (a) this list contains that target namespace or (b) this list contains \"*\". Note that \"*\" matches any specified namespace but does not match a request that _does not specify_ a namespace (see the `clusterScope` field for that). This list may be empty, but only if `clusterScope` is true.", "items": { "type": "string" }, "type": "array", "x-kubernetes-list-type": "set" }, "resources": { "description": "`resources` is a list of matching resources (i.e., lowercase and plural) with, if desired, subresource. For example, [ \"services\", \"nodes/status\" ]. This list may not be empty. \"*\" matches all resources and, if present, must be the only entry. Required.", "items": { "type": "string" }, "type": "array", "x-kubernetes-list-type": "set" }, "verbs": { "description": "`verbs` is a list of matching verbs and may not be empty. \"*\" matches all verbs and, if present, must be the only entry. Required.", "items": { "type": "string" }, "type": "array", "x-kubernetes-list-type": "set" } }, "required": [ "verbs", "apiGroups", "resources" ], "type": "object" }, "io_k8s_api_flowcontrol_v1alpha1_ServiceAccountSubject": { "description": "ServiceAccountSubject holds detailed information for service-account-kind subject.", "properties": { "name": { "description": "`name` is the name of matching ServiceAccount objects, or \"*\" to match regardless of name. Required.", "type": "string" }, "namespace": { "description": "`namespace` is the namespace of matching ServiceAccount objects. Required.", "type": "string" } }, "required": [ "namespace", "name" ], "type": "object" }, "io_k8s_api_flowcontrol_v1alpha1_Subject": { "description": "Subject matches the originator of a request, as identified by the request authentication system. There are three ways of matching an originator; by user, group, or service account.", "properties": { "group": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_GroupSubject" }, "kind": { "description": "Required", "type": "string" }, "serviceAccount": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_ServiceAccountSubject" }, "user": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_UserSubject" } }, "required": [ "kind" ], "type": "object", "x-kubernetes-unions": [ { "discriminator": "kind", "fields-to-discriminateBy": { "group": "Group", "serviceAccount": "ServiceAccount", "user": "User" } } ] }, "io_k8s_api_flowcontrol_v1alpha1_UserSubject": { "description": "UserSubject holds detailed information for user-kind subject.", "properties": { "name": { "description": "`name` is the username that matches, or \"*\" to match all usernames. Required.", "type": "string" } }, "required": [ "name" ], "type": "object" }, "io_k8s_api_networking_v1_IPBlock": { "description": "IPBlock describes a particular CIDR (Ex. \"192.168.1.1/24\",\"2001:db9::/64\") that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The except entry describes CIDRs that should not be included within this rule.", "properties": { "cidr": { "description": "CIDR is a string representing the IP Block Valid examples are \"192.168.1.1/24\" or \"2001:db9::/64\"", "type": "string" }, "except": { "description": "Except is a slice of CIDRs that should not be included within an IP Block Valid examples are \"192.168.1.1/24\" or \"2001:db9::/64\" Except values will be rejected if they are outside the CIDR range", "items": { "type": "string" }, "type": "array" } }, "required": [ "cidr" ], "type": "object" }, "io_k8s_api_networking_v1_NetworkPolicy": { "description": "NetworkPolicy describes what network traffic is allowed for a set of Pods", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "NetworkPolicy" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/io_k8s_api_networking_v1_NetworkPolicySpec", "description": "Specification of the desired behavior for this NetworkPolicy." } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "networking.k8s.io", "kind": "NetworkPolicy", "version": "v1" } ] }, "io_k8s_api_networking_v1_NetworkPolicyEgressRule": { "description": "NetworkPolicyEgressRule describes a particular set of traffic that is allowed out of pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and to. This type is beta-level in 1.8", "properties": { "ports": { "description": "List of destination ports for outgoing traffic. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.", "items": { "$ref": "#/definitions/io_k8s_api_networking_v1_NetworkPolicyPort" }, "type": "array" }, "to": { "description": "List of destinations for outgoing traffic of pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all destinations (traffic not restricted by destination). If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the to list.", "items": { "$ref": "#/definitions/io_k8s_api_networking_v1_NetworkPolicyPeer" }, "type": "array" } }, "type": "object" }, "io_k8s_api_networking_v1_NetworkPolicyIngressRule": { "description": "NetworkPolicyIngressRule describes a particular set of traffic that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and from.", "properties": { "from": { "description": "List of sources which should be able to access the pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all sources (traffic not restricted by source). If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the from list.", "items": { "$ref": "#/definitions/io_k8s_api_networking_v1_NetworkPolicyPeer" }, "type": "array" }, "ports": { "description": "List of ports which should be made accessible on the pods selected for this rule. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.", "items": { "$ref": "#/definitions/io_k8s_api_networking_v1_NetworkPolicyPort" }, "type": "array" } }, "type": "object" }, "io_k8s_api_networking_v1_NetworkPolicyList": { "description": "NetworkPolicyList is a list of NetworkPolicy objects.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "Items is a list of schema objects.", "items": { "$ref": "#/definitions/io_k8s_api_networking_v1_NetworkPolicy" }, "type": "array" }, "kind": { "description": "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", "enum": [ "NetworkPolicyList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "networking.k8s.io", "kind": "NetworkPolicyList", "version": "v1" } ] }, "io_k8s_api_networking_v1_NetworkPolicyPeer": { "description": "NetworkPolicyPeer describes a peer to allow traffic to/from. Only certain combinations of fields are allowed", "properties": { "ipBlock": { "$ref": "#/definitions/io_k8s_api_networking_v1_IPBlock", "description": "IPBlock defines policy on a particular IPBlock. If this field is set then neither of the other fields can be." }, "namespaceSelector": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "Selects Namespaces using cluster-scoped labels. This field follows standard label selector semantics; if present but empty, it selects all namespaces.\n\nIf PodSelector is also set, then the NetworkPolicyPeer as a whole selects the Pods matching PodSelector in the Namespaces selected by NamespaceSelector. Otherwise it selects all Pods in the Namespaces selected by NamespaceSelector." }, "podSelector": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "This is a label selector which selects Pods. This field follows standard label selector semantics; if present but empty, it selects all pods.\n\nIf NamespaceSelector is also set, then the NetworkPolicyPeer as a whole selects the Pods matching PodSelector in the Namespaces selected by NamespaceSelector. Otherwise it selects the Pods matching PodSelector in the policy's own Namespace." } }, "type": "object" }, "io_k8s_api_networking_v1_NetworkPolicyPort": { "description": "NetworkPolicyPort describes a port to allow traffic on", "properties": { "port": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_util_intstr_IntOrString", "description": "The port on the given protocol. This can either be a numerical or named port on a pod. If this field is not provided, this matches all port names and numbers." }, "protocol": { "description": "The protocol (TCP, UDP, or SCTP) which traffic must match. If not specified, this field defaults to TCP.", "type": "string" } }, "type": "object" }, "io_k8s_api_networking_v1_NetworkPolicySpec": { "description": "NetworkPolicySpec provides the specification of a NetworkPolicy", "properties": { "egress": { "description": "List of egress rules to be applied to the selected pods. Outgoing traffic is allowed if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic matches at least one egress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy limits all outgoing traffic (and serves solely to ensure that the pods it selects are isolated by default). This field is beta-level in 1.8", "items": { "$ref": "#/definitions/io_k8s_api_networking_v1_NetworkPolicyEgressRule" }, "type": "array" }, "ingress": { "description": "List of ingress rules to be applied to the selected pods. Traffic is allowed to a pod if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic source is the pod's local node, OR if the traffic matches at least one ingress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy does not allow any traffic (and serves solely to ensure that the pods it selects are isolated by default)", "items": { "$ref": "#/definitions/io_k8s_api_networking_v1_NetworkPolicyIngressRule" }, "type": "array" }, "podSelector": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "Selects the pods to which this NetworkPolicy object applies. The array of ingress rules is applied to any pods selected by this field. Multiple network policies can select the same set of pods. In this case, the ingress rules for each are combined additively. This field is NOT optional and follows standard label selector semantics. An empty podSelector matches all pods in this namespace." }, "policyTypes": { "description": "List of rule types that the NetworkPolicy relates to. Valid options are \"Ingress\", \"Egress\", or \"Ingress,Egress\". If this field is not specified, it will default based on the existence of Ingress or Egress rules; policies that contain an Egress section are assumed to affect Egress, and all policies (whether or not they contain an Ingress section) are assumed to affect Ingress. If you want to write an egress-only policy, you must explicitly specify policyTypes [ \"Egress\" ]. Likewise, if you want to write a policy that specifies that no egress is allowed, you must specify a policyTypes value that include \"Egress\" (since such a policy would not include an Egress section and would otherwise default to just [ \"Ingress\" ]). This field is beta-level in 1.8", "items": { "type": "string" }, "type": "array" } }, "required": [ "podSelector" ], "type": "object" }, "io_k8s_api_networking_v1beta1_HTTPIngressPath": { "description": "HTTPIngressPath associates a path with a backend. Incoming urls matching the path are forwarded to the backend.", "properties": { "backend": { "$ref": "#/definitions/io_k8s_api_networking_v1beta1_IngressBackend", "description": "Backend defines the referenced service endpoint to which the traffic will be forwarded to." }, "path": { "description": "Path is matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional \"path\" part of a URL as defined by RFC 3986. Paths must begin with a '/'. When unspecified, all paths from incoming requests are matched.", "type": "string" }, "pathType": { "description": "PathType determines the interpretation of the Path matching. PathType can be one of the following values: * Exact: Matches the URL path exactly. * Prefix: Matches based on a URL path prefix split by '/'. Matching is\n done on a path element by element basis. A path element refers is the\n list of labels in the path split by the '/' separator. A request is a\n match for path p if every p is an element-wise prefix of p of the\n request path. Note that if the last element of the path is a substring\n of the last element in request path, it is not a match (e.g. /foo/bar\n matches /foo/bar/baz, but does not match /foo/barbaz).\n* ImplementationSpecific: Interpretation of the Path matching is up to\n the IngressClass. Implementations can treat this as a separate PathType\n or treat it identically to Prefix or Exact path types.\nImplementations are required to support all path types. Defaults to ImplementationSpecific.", "type": "string" } }, "required": [ "backend" ], "type": "object" }, "io_k8s_api_networking_v1beta1_HTTPIngressRuleValue": { "description": "HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http://<host>/<path>?<searchpart> -> backend where where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last '/' and before the first '?' or '#'.", "properties": { "paths": { "description": "A collection of paths that map requests to backends.", "items": { "$ref": "#/definitions/io_k8s_api_networking_v1beta1_HTTPIngressPath" }, "type": "array" } }, "required": [ "paths" ], "type": "object" }, "io_k8s_api_networking_v1beta1_Ingress": { "description": "Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "Ingress" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/io_k8s_api_networking_v1beta1_IngressSpec", "description": "Spec is the desired state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" }, "status": { "$ref": "#/definitions/io_k8s_api_networking_v1beta1_IngressStatus", "description": "Status is the current state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "networking.k8s.io", "kind": "Ingress", "version": "v1beta1" } ] }, "io_k8s_api_networking_v1beta1_IngressBackend": { "description": "IngressBackend describes all endpoints for a given service and port.", "properties": { "resource": { "$ref": "#/definitions/io_k8s_api_core_v1_TypedLocalObjectReference", "description": "Resource is an ObjectRef to another Kubernetes resource in the namespace of the Ingress object. If resource is specified, serviceName and servicePort must not be specified." }, "serviceName": { "description": "Specifies the name of the referenced service.", "type": "string" }, "servicePort": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_util_intstr_IntOrString", "description": "Specifies the port of the referenced service." } }, "type": "object" }, "io_k8s_api_networking_v1beta1_IngressClass": { "description": "IngressClass represents the class of the Ingress, referenced by the Ingress Spec. The `ingressclass.kubernetes.io/is-default-class` annotation can be used to indicate that an IngressClass should be considered default. When a single IngressClass resource has this annotation set to true, new Ingress resources without a class specified will be assigned this default class.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "IngressClass" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/io_k8s_api_networking_v1beta1_IngressClassSpec", "description": "Spec is the desired state of the IngressClass. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "networking.k8s.io", "kind": "IngressClass", "version": "v1beta1" } ] }, "io_k8s_api_networking_v1beta1_IngressClassList": { "description": "IngressClassList is a collection of IngressClasses.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "Items is the list of IngressClasses.", "items": { "$ref": "#/definitions/io_k8s_api_networking_v1beta1_IngressClass" }, "type": "array" }, "kind": { "description": "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", "enum": [ "IngressClassList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata." } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "networking.k8s.io", "kind": "IngressClassList", "version": "v1beta1" } ] }, "io_k8s_api_networking_v1beta1_IngressClassSpec": { "description": "IngressClassSpec provides information about the class of an Ingress.", "properties": { "controller": { "description": "Controller refers to the name of the controller that should handle this class. This allows for different \"flavors\" that are controlled by the same controller. For example, you may have different Parameters for the same implementing controller. This should be specified as a domain-prefixed path no more than 250 characters in length, e.g. \"acme.io/ingress-controller\". This field is immutable.", "type": "string" }, "parameters": { "$ref": "#/definitions/io_k8s_api_core_v1_TypedLocalObjectReference", "description": "Parameters is a link to a custom resource containing additional configuration for the controller. This is optional if the controller does not require extra parameters." } }, "type": "object" }, "io_k8s_api_networking_v1beta1_IngressList": { "description": "IngressList is a collection of Ingress.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "Items is the list of Ingress.", "items": { "$ref": "#/definitions/io_k8s_api_networking_v1beta1_Ingress" }, "type": "array" }, "kind": { "description": "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", "enum": [ "IngressList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "networking.k8s.io", "kind": "IngressList", "version": "v1beta1" } ] }, "io_k8s_api_networking_v1beta1_IngressRule": { "description": "IngressRule represents the rules mapping the paths under a specified host to the related backend services. Incoming requests are first evaluated for a host match, then routed to the backend associated with the matching IngressRuleValue.", "properties": { "host": { "description": "Host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the \"host\" part of the URI as defined in RFC 3986: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to\n the IP in the Spec of the parent Ingress.\n2. The `:` delimiter is not respected because ports are not allowed.\n\t Currently the port of an Ingress is implicitly :80 for http and\n\t :443 for https.\nBoth these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue.\n\nHost can be \"precise\" which is a domain name without the terminating dot of a network host (e.g. \"foo.bar.com\") or \"wildcard\", which is a domain name prefixed with a single wildcard label (e.g. \"*.foo.com\"). The wildcard character '*' must appear by itself as the first DNS label and matches only a single label. You cannot have a wildcard label by itself (e.g. Host == \"*\"). Requests will be matched against the Host field in the following way: 1. If Host is precise, the request matches this rule if the http host header is equal to Host. 2. If Host is a wildcard, then the request matches this rule if the http host header is to equal to the suffix (removing the first label) of the wildcard rule.", "type": "string" }, "http": { "$ref": "#/definitions/io_k8s_api_networking_v1beta1_HTTPIngressRuleValue" } }, "type": "object" }, "io_k8s_api_networking_v1beta1_IngressSpec": { "description": "IngressSpec describes the Ingress the user wishes to exist.", "properties": { "backend": { "$ref": "#/definitions/io_k8s_api_networking_v1beta1_IngressBackend", "description": "A default backend capable of servicing requests that don't match any rule. At least one of 'backend' or 'rules' must be specified. This field is optional to allow the loadbalancer controller or defaulting logic to specify a global default." }, "ingressClassName": { "description": "IngressClassName is the name of the IngressClass cluster resource. The associated IngressClass defines which controller will implement the resource. This replaces the deprecated `kubernetes.io/ingress.class` annotation. For backwards compatibility, when that annotation is set, it must be given precedence over this field. The controller may emit a warning if the field and annotation have different values. Implementations of this API should ignore Ingresses without a class specified. An IngressClass resource may be marked as default, which can be used to set a default value for this field. For more information, refer to the IngressClass documentation.", "type": "string" }, "rules": { "description": "A list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend.", "items": { "$ref": "#/definitions/io_k8s_api_networking_v1beta1_IngressRule" }, "type": "array" }, "tls": { "description": "TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.", "items": { "$ref": "#/definitions/io_k8s_api_networking_v1beta1_IngressTLS" }, "type": "array" } }, "type": "object" }, "io_k8s_api_networking_v1beta1_IngressStatus": { "description": "IngressStatus describe the current state of the Ingress.", "properties": { "loadBalancer": { "$ref": "#/definitions/io_k8s_api_core_v1_LoadBalancerStatus", "description": "LoadBalancer contains the current status of the load-balancer." } }, "type": "object" }, "io_k8s_api_networking_v1beta1_IngressTLS": { "description": "IngressTLS describes the transport layer security associated with an Ingress.", "properties": { "hosts": { "description": "Hosts are a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified.", "items": { "type": "string" }, "type": "array" }, "secretName": { "description": "SecretName is the name of the secret used to terminate TLS traffic on port 443. Field is left optional to allow TLS routing based on SNI hostname alone. If the SNI host in a listener conflicts with the \"Host\" header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing.", "type": "string" } }, "type": "object" }, "io_k8s_api_node_v1alpha1_Overhead": { "description": "Overhead structure represents the resource overhead associated with running a pod.", "properties": { "podFixed": { "additionalProperties": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "PodFixed represents the fixed resource overhead associated with running a pod.", "type": "object" } }, "type": "object" }, "io_k8s_api_node_v1alpha1_RuntimeClass": { "description": "RuntimeClass defines a class of container runtime supported in the cluster. The RuntimeClass is used to determine which container runtime is used to run all containers in a pod. RuntimeClasses are (currently) manually defined by a user or cluster provisioner, and referenced in the PodSpec. The Kubelet is responsible for resolving the RuntimeClassName reference before running the pod. For more details, see https://git.k8s.io/enhancements/keps/sig-node/runtime-class.md", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "RuntimeClass" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/io_k8s_api_node_v1alpha1_RuntimeClassSpec", "description": "Specification of the RuntimeClass More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" } }, "required": [ "spec" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "node.k8s.io", "kind": "RuntimeClass", "version": "v1alpha1" } ] }, "io_k8s_api_node_v1alpha1_RuntimeClassList": { "description": "RuntimeClassList is a list of RuntimeClass objects.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "Items is a list of schema objects.", "items": { "$ref": "#/definitions/io_k8s_api_node_v1alpha1_RuntimeClass" }, "type": "array" }, "kind": { "description": "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", "enum": [ "RuntimeClassList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "node.k8s.io", "kind": "RuntimeClassList", "version": "v1alpha1" } ] }, "io_k8s_api_node_v1alpha1_RuntimeClassSpec": { "description": "RuntimeClassSpec is a specification of a RuntimeClass. It contains parameters that are required to describe the RuntimeClass to the Container Runtime Interface (CRI) implementation, as well as any other components that need to understand how the pod will be run. The RuntimeClassSpec is immutable.", "properties": { "overhead": { "$ref": "#/definitions/io_k8s_api_node_v1alpha1_Overhead", "description": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. For more details, see https://git.k8s.io/enhancements/keps/sig-node/20190226-pod-overhead.md This field is alpha-level as of Kubernetes v1.15, and is only honored by servers that enable the PodOverhead feature." }, "runtimeHandler": { "description": "RuntimeHandler specifies the underlying runtime and configuration that the CRI implementation will use to handle pods of this class. The possible values are specific to the node & CRI configuration. It is assumed that all handlers are available on every node, and handlers of the same name are equivalent on every node. For example, a handler called \"runc\" might specify that the runc OCI runtime (using native Linux containers) will be used to run the containers in a pod. The RuntimeHandler must conform to the DNS Label (RFC 1123) requirements and is immutable.", "type": "string" }, "scheduling": { "$ref": "#/definitions/io_k8s_api_node_v1alpha1_Scheduling", "description": "Scheduling holds the scheduling constraints to ensure that pods running with this RuntimeClass are scheduled to nodes that support it. If scheduling is nil, this RuntimeClass is assumed to be supported by all nodes." } }, "required": [ "runtimeHandler" ], "type": "object" }, "io_k8s_api_node_v1alpha1_Scheduling": { "description": "Scheduling specifies the scheduling constraints for nodes supporting a RuntimeClass.", "properties": { "nodeSelector": { "additionalProperties": { "type": "string" }, "description": "nodeSelector lists labels that must be present on nodes that support this RuntimeClass. Pods using this RuntimeClass can only be scheduled to a node matched by this selector. The RuntimeClass nodeSelector is merged with a pod's existing nodeSelector. Any conflicts will cause the pod to be rejected in admission.", "type": "object" }, "tolerations": { "description": "tolerations are appended (excluding duplicates) to pods running with this RuntimeClass during admission, effectively unioning the set of nodes tolerated by the pod and the RuntimeClass.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_Toleration" }, "type": "array", "x-kubernetes-list-type": "atomic" } }, "type": "object" }, "io_k8s_api_node_v1beta1_Overhead": { "description": "Overhead structure represents the resource overhead associated with running a pod.", "properties": { "podFixed": { "additionalProperties": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_api_resource_Quantity" }, "description": "PodFixed represents the fixed resource overhead associated with running a pod.", "type": "object" } }, "type": "object" }, "io_k8s_api_node_v1beta1_RuntimeClass": { "description": "RuntimeClass defines a class of container runtime supported in the cluster. The RuntimeClass is used to determine which container runtime is used to run all containers in a pod. RuntimeClasses are (currently) manually defined by a user or cluster provisioner, and referenced in the PodSpec. The Kubelet is responsible for resolving the RuntimeClassName reference before running the pod. For more details, see https://git.k8s.io/enhancements/keps/sig-node/runtime-class.md", "properties": { "apiVersion": { "description": "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", "type": "string" }, "handler": { "description": "Handler specifies the underlying runtime and configuration that the CRI implementation will use to handle pods of this class. The possible values are specific to the node & CRI configuration. It is assumed that all handlers are available on every node, and handlers of the same name are equivalent on every node. For example, a handler called \"runc\" might specify that the runc OCI runtime (using native Linux containers) will be used to run the containers in a pod. The Handler must conform to the DNS Label (RFC 1123) requirements, and is immutable.", "type": "string" }, "kind": { "description": "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", "enum": [ "RuntimeClass" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "overhead": { "$ref": "#/definitions/io_k8s_api_node_v1beta1_Overhead", "description": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. For more details, see https://git.k8s.io/enhancements/keps/sig-node/20190226-pod-overhead.md This field is alpha-level as of Kubernetes v1.15, and is only honored by servers that enable the PodOverhead feature." }, "scheduling": { "$ref": "#/definitions/io_k8s_api_node_v1beta1_Scheduling", "description": "Scheduling holds the scheduling constraints to ensure that pods running with this RuntimeClass are scheduled to nodes that support it. If scheduling is nil, this RuntimeClass is assumed to be supported by all nodes." } }, "required": [ "handler" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "node.k8s.io", "kind": "RuntimeClass", "version": "v1beta1" } ] }, "io_k8s_api_node_v1beta1_RuntimeClassList": { "description": "RuntimeClassList is a list of RuntimeClass objects.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "Items is a list of schema objects.", "items": { "$ref": "#/definitions/io_k8s_api_node_v1beta1_RuntimeClass" }, "type": "array" }, "kind": { "description": "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", "enum": [ "RuntimeClassList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "node.k8s.io", "kind": "RuntimeClassList", "version": "v1beta1" } ] }, "io_k8s_api_node_v1beta1_Scheduling": { "description": "Scheduling specifies the scheduling constraints for nodes supporting a RuntimeClass.", "properties": { "nodeSelector": { "additionalProperties": { "type": "string" }, "description": "nodeSelector lists labels that must be present on nodes that support this RuntimeClass. Pods using this RuntimeClass can only be scheduled to a node matched by this selector. The RuntimeClass nodeSelector is merged with a pod's existing nodeSelector. Any conflicts will cause the pod to be rejected in admission.", "type": "object" }, "tolerations": { "description": "tolerations are appended (excluding duplicates) to pods running with this RuntimeClass during admission, effectively unioning the set of nodes tolerated by the pod and the RuntimeClass.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_Toleration" }, "type": "array", "x-kubernetes-list-type": "atomic" } }, "type": "object" }, "io_k8s_api_policy_v1beta1_AllowedCSIDriver": { "description": "AllowedCSIDriver represents a single inline CSI Driver that is allowed to be used.", "properties": { "name": { "description": "Name is the registered name of the CSI driver", "type": "string" } }, "required": [ "name" ], "type": "object" }, "io_k8s_api_policy_v1beta1_AllowedFlexVolume": { "description": "AllowedFlexVolume represents a single Flexvolume that is allowed to be used.", "properties": { "driver": { "description": "driver is the name of the Flexvolume driver.", "type": "string" } }, "required": [ "driver" ], "type": "object" }, "io_k8s_api_policy_v1beta1_AllowedHostPath": { "description": "AllowedHostPath defines the host volume conditions that will be enabled by a policy for pods to use. It requires the path prefix to be defined.", "properties": { "pathPrefix": { "description": "pathPrefix is the path prefix that the host volume must match. It does not support `*`. Trailing slashes are trimmed when validating the path prefix with a host path.\n\nExamples: `/foo` would allow `/foo`, `/foo/` and `/foo/bar` `/foo` would not allow `/food` or `/etc/foo`", "type": "string" }, "readOnly": { "description": "when set to true, will allow host volumes matching the pathPrefix only if all volume mounts are readOnly.", "type": "boolean" } }, "type": "object" }, "io_k8s_api_policy_v1beta1_Eviction": { "description": "Eviction evicts a pod from its node subject to certain policies and safety constraints. This is a subresource of Pod. A request to cause such an eviction is created by POSTing to .../pods/<pod name>/evictions.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "deleteOptions": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_DeleteOptions", "description": "DeleteOptions may be provided" }, "kind": { "description": "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", "enum": [ "Eviction" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "ObjectMeta describes the pod that is being evicted." } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "policy", "kind": "Eviction", "version": "v1beta1" } ] }, "io_k8s_api_policy_v1beta1_FSGroupStrategyOptions": { "description": "FSGroupStrategyOptions defines the strategy type and options used to create the strategy.", "properties": { "ranges": { "description": "ranges are the allowed ranges of fs groups. If you would like to force a single fs group then supply a single range with the same start and end. Required for MustRunAs.", "items": { "$ref": "#/definitions/io_k8s_api_policy_v1beta1_IDRange" }, "type": "array" }, "rule": { "description": "rule is the strategy that will dictate what FSGroup is used in the SecurityContext.", "type": "string" } }, "type": "object" }, "io_k8s_api_policy_v1beta1_HostPortRange": { "description": "HostPortRange defines a range of host ports that will be enabled by a policy for pods to use. It requires both the start and end to be defined.", "properties": { "max": { "_format": "int32", "description": "max is the end of the range, inclusive.", "type": "integer" }, "min": { "_format": "int32", "description": "min is the start of the range, inclusive.", "type": "integer" } }, "required": [ "min", "max" ], "type": "object" }, "io_k8s_api_policy_v1beta1_IDRange": { "description": "IDRange provides a min/max of an allowed range of IDs.", "properties": { "max": { "_format": "int64", "description": "max is the end of the range, inclusive.", "type": "integer" }, "min": { "_format": "int64", "description": "min is the start of the range, inclusive.", "type": "integer" } }, "required": [ "min", "max" ], "type": "object" }, "io_k8s_api_policy_v1beta1_PodDisruptionBudget": { "description": "PodDisruptionBudget is an object to define the max disruption that can be caused to a collection of pods", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "PodDisruptionBudget" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta" }, "spec": { "$ref": "#/definitions/io_k8s_api_policy_v1beta1_PodDisruptionBudgetSpec", "description": "Specification of the desired behavior of the PodDisruptionBudget." }, "status": { "$ref": "#/definitions/io_k8s_api_policy_v1beta1_PodDisruptionBudgetStatus", "description": "Most recently observed status of the PodDisruptionBudget." } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "policy", "kind": "PodDisruptionBudget", "version": "v1beta1" } ] }, "io_k8s_api_policy_v1beta1_PodDisruptionBudgetList": { "description": "PodDisruptionBudgetList is a collection of PodDisruptionBudgets.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "items": { "$ref": "#/definitions/io_k8s_api_policy_v1beta1_PodDisruptionBudget" }, "type": "array" }, "kind": { "description": "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", "enum": [ "PodDisruptionBudgetList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "policy", "kind": "PodDisruptionBudgetList", "version": "v1beta1" } ] }, "io_k8s_api_policy_v1beta1_PodDisruptionBudgetSpec": { "description": "PodDisruptionBudgetSpec is a description of a PodDisruptionBudget.", "properties": { "maxUnavailable": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_util_intstr_IntOrString", "description": "An eviction is allowed if at most \"maxUnavailable\" pods selected by \"selector\" are unavailable after the eviction, i.e. even in absence of the evicted pod. For example, one can prevent all voluntary evictions by specifying 0. This is a mutually exclusive setting with \"minAvailable\"." }, "minAvailable": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_util_intstr_IntOrString", "description": "An eviction is allowed if at least \"minAvailable\" pods selected by \"selector\" will still be available after the eviction, i.e. even in the absence of the evicted pod. So for example you can prevent all voluntary evictions by specifying \"100%\"." }, "selector": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "Label query over pods whose evictions are managed by the disruption budget." } }, "type": "object" }, "io_k8s_api_policy_v1beta1_PodDisruptionBudgetStatus": { "description": "PodDisruptionBudgetStatus represents information about the status of a PodDisruptionBudget. Status may trail the actual state of a system.", "properties": { "currentHealthy": { "_format": "int32", "description": "current number of healthy pods", "type": "integer" }, "desiredHealthy": { "_format": "int32", "description": "minimum desired number of healthy pods", "type": "integer" }, "disruptedPods": { "additionalProperties": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time" }, "description": "DisruptedPods contains information about pods whose eviction was processed by the API server eviction subresource handler but has not yet been observed by the PodDisruptionBudget controller. A pod will be in this map from the time when the API server processed the eviction request to the time when the pod is seen by PDB controller as having been marked for deletion (or after a timeout). The key in the map is the name of the pod and the value is the time when the API server processed the eviction request. If the deletion didn't occur and a pod is still there it will be removed from the list automatically by PodDisruptionBudget controller after some time. If everything goes smooth this map should be empty for the most of the time. Large number of entries in the map may indicate problems with pod deletions.", "type": "object" }, "disruptionsAllowed": { "_format": "int32", "description": "Number of pod disruptions that are currently allowed.", "type": "integer" }, "expectedPods": { "_format": "int32", "description": "total number of pods counted by this disruption budget", "type": "integer" }, "observedGeneration": { "_format": "int64", "description": "Most recent generation observed when updating this PDB status. DisruptionsAllowed and other status information is valid only if observedGeneration equals to PDB's object generation.", "type": "integer" } }, "required": [ "disruptionsAllowed", "currentHealthy", "desiredHealthy", "expectedPods" ], "type": "object" }, "io_k8s_api_policy_v1beta1_PodSecurityPolicy": { "description": "PodSecurityPolicy governs the ability to make requests that affect the Security Context that will be applied to a pod and container.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "PodSecurityPolicy" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/io_k8s_api_policy_v1beta1_PodSecurityPolicySpec", "description": "spec defines the policy enforced." } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "policy", "kind": "PodSecurityPolicy", "version": "v1beta1" } ] }, "io_k8s_api_policy_v1beta1_PodSecurityPolicyList": { "description": "PodSecurityPolicyList is a list of PodSecurityPolicy objects.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "items is a list of schema objects.", "items": { "$ref": "#/definitions/io_k8s_api_policy_v1beta1_PodSecurityPolicy" }, "type": "array" }, "kind": { "description": "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", "enum": [ "PodSecurityPolicyList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "policy", "kind": "PodSecurityPolicyList", "version": "v1beta1" } ] }, "io_k8s_api_policy_v1beta1_PodSecurityPolicySpec": { "description": "PodSecurityPolicySpec defines the policy enforced.", "properties": { "allowPrivilegeEscalation": { "description": "allowPrivilegeEscalation determines if a pod can request to allow privilege escalation. If unspecified, defaults to true.", "type": "boolean" }, "allowedCSIDrivers": { "description": "AllowedCSIDrivers is a whitelist of inline CSI drivers that must be explicitly set to be embedded within a pod spec. An empty value indicates that any CSI driver can be used for inline ephemeral volumes. This is an alpha field, and is only honored if the API server enables the CSIInlineVolume feature gate.", "items": { "$ref": "#/definitions/io_k8s_api_policy_v1beta1_AllowedCSIDriver" }, "type": "array" }, "allowedCapabilities": { "description": "allowedCapabilities is a list of capabilities that can be requested to add to the container. Capabilities in this field may be added at the pod author's discretion. You must not list a capability in both allowedCapabilities and requiredDropCapabilities.", "items": { "type": "string" }, "type": "array" }, "allowedFlexVolumes": { "description": "allowedFlexVolumes is a whitelist of allowed Flexvolumes. Empty or nil indicates that all Flexvolumes may be used. This parameter is effective only when the usage of the Flexvolumes is allowed in the \"volumes\" field.", "items": { "$ref": "#/definitions/io_k8s_api_policy_v1beta1_AllowedFlexVolume" }, "type": "array" }, "allowedHostPaths": { "description": "allowedHostPaths is a white list of allowed host paths. Empty indicates that all host paths may be used.", "items": { "$ref": "#/definitions/io_k8s_api_policy_v1beta1_AllowedHostPath" }, "type": "array" }, "allowedProcMountTypes": { "description": "AllowedProcMountTypes is a whitelist of allowed ProcMountTypes. Empty or nil indicates that only the DefaultProcMountType may be used. This requires the ProcMountType feature flag to be enabled.", "items": { "type": "string" }, "type": "array" }, "allowedUnsafeSysctls": { "description": "allowedUnsafeSysctls is a list of explicitly allowed unsafe sysctls, defaults to none. Each entry is either a plain sysctl name or ends in \"*\" in which case it is considered as a prefix of allowed sysctls. Single * means all unsafe sysctls are allowed. Kubelet has to whitelist all allowed unsafe sysctls explicitly to avoid rejection.\n\nExamples: e.g. \"foo/*\" allows \"foo/bar\", \"foo/baz\", etc. e.g. \"foo.*\" allows \"foo.bar\", \"foo.baz\", etc.", "items": { "type": "string" }, "type": "array" }, "defaultAddCapabilities": { "description": "defaultAddCapabilities is the default set of capabilities that will be added to the container unless the pod spec specifically drops the capability. You may not list a capability in both defaultAddCapabilities and requiredDropCapabilities. Capabilities added here are implicitly allowed, and need not be included in the allowedCapabilities list.", "items": { "type": "string" }, "type": "array" }, "defaultAllowPrivilegeEscalation": { "description": "defaultAllowPrivilegeEscalation controls the default setting for whether a process can gain more privileges than its parent process.", "type": "boolean" }, "forbiddenSysctls": { "description": "forbiddenSysctls is a list of explicitly forbidden sysctls, defaults to none. Each entry is either a plain sysctl name or ends in \"*\" in which case it is considered as a prefix of forbidden sysctls. Single * means all sysctls are forbidden.\n\nExamples: e.g. \"foo/*\" forbids \"foo/bar\", \"foo/baz\", etc. e.g. \"foo.*\" forbids \"foo.bar\", \"foo.baz\", etc.", "items": { "type": "string" }, "type": "array" }, "fsGroup": { "$ref": "#/definitions/io_k8s_api_policy_v1beta1_FSGroupStrategyOptions", "description": "fsGroup is the strategy that will dictate what fs group is used by the SecurityContext." }, "hostIPC": { "description": "hostIPC determines if the policy allows the use of HostIPC in the pod spec.", "type": "boolean" }, "hostNetwork": { "description": "hostNetwork determines if the policy allows the use of HostNetwork in the pod spec.", "type": "boolean" }, "hostPID": { "description": "hostPID determines if the policy allows the use of HostPID in the pod spec.", "type": "boolean" }, "hostPorts": { "description": "hostPorts determines which host port ranges are allowed to be exposed.", "items": { "$ref": "#/definitions/io_k8s_api_policy_v1beta1_HostPortRange" }, "type": "array" }, "privileged": { "description": "privileged determines if a pod can request to be run as privileged.", "type": "boolean" }, "readOnlyRootFilesystem": { "description": "readOnlyRootFilesystem when set to true will force containers to run with a read only root file system. If the container specifically requests to run with a non-read only root file system the PSP should deny the pod. If set to false the container may run with a read only root file system if it wishes but it will not be forced to.", "type": "boolean" }, "requiredDropCapabilities": { "description": "requiredDropCapabilities are the capabilities that will be dropped from the container. These are required to be dropped and cannot be added.", "items": { "type": "string" }, "type": "array" }, "runAsGroup": { "$ref": "#/definitions/io_k8s_api_policy_v1beta1_RunAsGroupStrategyOptions", "description": "RunAsGroup is the strategy that will dictate the allowable RunAsGroup values that may be set. If this field is omitted, the pod's RunAsGroup can take any value. This field requires the RunAsGroup feature gate to be enabled." }, "runAsUser": { "$ref": "#/definitions/io_k8s_api_policy_v1beta1_RunAsUserStrategyOptions", "description": "runAsUser is the strategy that will dictate the allowable RunAsUser values that may be set." }, "runtimeClass": { "$ref": "#/definitions/io_k8s_api_policy_v1beta1_RuntimeClassStrategyOptions", "description": "runtimeClass is the strategy that will dictate the allowable RuntimeClasses for a pod. If this field is omitted, the pod's runtimeClassName field is unrestricted. Enforcement of this field depends on the RuntimeClass feature gate being enabled." }, "seLinux": { "$ref": "#/definitions/io_k8s_api_policy_v1beta1_SELinuxStrategyOptions", "description": "seLinux is the strategy that will dictate the allowable labels that may be set." }, "supplementalGroups": { "$ref": "#/definitions/io_k8s_api_policy_v1beta1_SupplementalGroupsStrategyOptions", "description": "supplementalGroups is the strategy that will dictate what supplemental groups are used by the SecurityContext." }, "volumes": { "description": "volumes is a white list of allowed volume plugins. Empty indicates that no volumes may be used. To allow all volumes you may use '*'.", "items": { "type": "string" }, "type": "array" } }, "required": [ "seLinux", "runAsUser", "supplementalGroups", "fsGroup" ], "type": "object" }, "io_k8s_api_policy_v1beta1_RunAsGroupStrategyOptions": { "description": "RunAsGroupStrategyOptions defines the strategy type and any options used to create the strategy.", "properties": { "ranges": { "description": "ranges are the allowed ranges of gids that may be used. If you would like to force a single gid then supply a single range with the same start and end. Required for MustRunAs.", "items": { "$ref": "#/definitions/io_k8s_api_policy_v1beta1_IDRange" }, "type": "array" }, "rule": { "description": "rule is the strategy that will dictate the allowable RunAsGroup values that may be set.", "type": "string" } }, "required": [ "rule" ], "type": "object" }, "io_k8s_api_policy_v1beta1_RunAsUserStrategyOptions": { "description": "RunAsUserStrategyOptions defines the strategy type and any options used to create the strategy.", "properties": { "ranges": { "description": "ranges are the allowed ranges of uids that may be used. If you would like to force a single uid then supply a single range with the same start and end. Required for MustRunAs.", "items": { "$ref": "#/definitions/io_k8s_api_policy_v1beta1_IDRange" }, "type": "array" }, "rule": { "description": "rule is the strategy that will dictate the allowable RunAsUser values that may be set.", "type": "string" } }, "required": [ "rule" ], "type": "object" }, "io_k8s_api_policy_v1beta1_RuntimeClassStrategyOptions": { "description": "RuntimeClassStrategyOptions define the strategy that will dictate the allowable RuntimeClasses for a pod.", "properties": { "allowedRuntimeClassNames": { "description": "allowedRuntimeClassNames is a whitelist of RuntimeClass names that may be specified on a pod. A value of \"*\" means that any RuntimeClass name is allowed, and must be the only item in the list. An empty list requires the RuntimeClassName field to be unset.", "items": { "type": "string" }, "type": "array" }, "defaultRuntimeClassName": { "description": "defaultRuntimeClassName is the default RuntimeClassName to set on the pod. The default MUST be allowed by the allowedRuntimeClassNames list. A value of nil does not mutate the Pod.", "type": "string" } }, "required": [ "allowedRuntimeClassNames" ], "type": "object" }, "io_k8s_api_policy_v1beta1_SELinuxStrategyOptions": { "description": "SELinuxStrategyOptions defines the strategy type and any options used to create the strategy.", "properties": { "rule": { "description": "rule is the strategy that will dictate the allowable labels that may be set.", "type": "string" }, "seLinuxOptions": { "$ref": "#/definitions/io_k8s_api_core_v1_SELinuxOptions", "description": "seLinuxOptions required to run as; required for MustRunAs More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/" } }, "required": [ "rule" ], "type": "object" }, "io_k8s_api_policy_v1beta1_SupplementalGroupsStrategyOptions": { "description": "SupplementalGroupsStrategyOptions defines the strategy type and options used to create the strategy.", "properties": { "ranges": { "description": "ranges are the allowed ranges of supplemental groups. If you would like to force a single supplemental group then supply a single range with the same start and end. Required for MustRunAs.", "items": { "$ref": "#/definitions/io_k8s_api_policy_v1beta1_IDRange" }, "type": "array" }, "rule": { "description": "rule is the strategy that will dictate what supplemental groups is used in the SecurityContext.", "type": "string" } }, "type": "object" }, "io_k8s_api_rbac_v1_AggregationRule": { "description": "AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole", "properties": { "clusterRoleSelectors": { "description": "ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules. If any of the selectors match, then the ClusterRole's permissions will be added", "items": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector" }, "type": "array" } }, "type": "object" }, "io_k8s_api_rbac_v1_ClusterRole": { "description": "ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.", "properties": { "aggregationRule": { "$ref": "#/definitions/io_k8s_api_rbac_v1_AggregationRule", "description": "AggregationRule is an optional field that describes how to build the Rules for this ClusterRole. If AggregationRule is set, then the Rules are controller managed and direct changes to Rules will be stomped by the controller." }, "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "ClusterRole" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata." }, "rules": { "description": "Rules holds all the PolicyRules for this ClusterRole", "items": { "$ref": "#/definitions/io_k8s_api_rbac_v1_PolicyRule" }, "type": "array" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "rbac.authorization.k8s.io", "kind": "ClusterRole", "version": "v1" } ] }, "io_k8s_api_rbac_v1_ClusterRoleBinding": { "description": "ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "ClusterRoleBinding" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata." }, "roleRef": { "$ref": "#/definitions/io_k8s_api_rbac_v1_RoleRef", "description": "RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error." }, "subjects": { "description": "Subjects holds references to the objects the role applies to.", "items": { "$ref": "#/definitions/io_k8s_api_rbac_v1_Subject" }, "type": "array" } }, "required": [ "roleRef" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "rbac.authorization.k8s.io", "kind": "ClusterRoleBinding", "version": "v1" } ] }, "io_k8s_api_rbac_v1_ClusterRoleBindingList": { "description": "ClusterRoleBindingList is a collection of ClusterRoleBindings", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "Items is a list of ClusterRoleBindings", "items": { "$ref": "#/definitions/io_k8s_api_rbac_v1_ClusterRoleBinding" }, "type": "array" }, "kind": { "description": "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", "enum": [ "ClusterRoleBindingList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard object's metadata." } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "rbac.authorization.k8s.io", "kind": "ClusterRoleBindingList", "version": "v1" } ] }, "io_k8s_api_rbac_v1_ClusterRoleList": { "description": "ClusterRoleList is a collection of ClusterRoles", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "Items is a list of ClusterRoles", "items": { "$ref": "#/definitions/io_k8s_api_rbac_v1_ClusterRole" }, "type": "array" }, "kind": { "description": "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", "enum": [ "ClusterRoleList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard object's metadata." } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "rbac.authorization.k8s.io", "kind": "ClusterRoleList", "version": "v1" } ] }, "io_k8s_api_rbac_v1_PolicyRule": { "description": "PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.", "properties": { "apiGroups": { "description": "APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed.", "items": { "type": "string" }, "type": "array" }, "nonResourceURLs": { "description": "NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as \"pods\" or \"secrets\") or non-resource URL paths (such as \"/api\"), but not both.", "items": { "type": "string" }, "type": "array" }, "resourceNames": { "description": "ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed.", "items": { "type": "string" }, "type": "array" }, "resources": { "description": "Resources is a list of resources this rule applies to. ResourceAll represents all resources.", "items": { "type": "string" }, "type": "array" }, "verbs": { "description": "Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule. VerbAll represents all kinds.", "items": { "type": "string" }, "type": "array" } }, "required": [ "verbs" ], "type": "object" }, "io_k8s_api_rbac_v1_Role": { "description": "Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "Role" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata." }, "rules": { "description": "Rules holds all the PolicyRules for this Role", "items": { "$ref": "#/definitions/io_k8s_api_rbac_v1_PolicyRule" }, "type": "array" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "rbac.authorization.k8s.io", "kind": "Role", "version": "v1" } ] }, "io_k8s_api_rbac_v1_RoleBinding": { "description": "RoleBinding references a role, but does not contain it. It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in. RoleBindings in a given namespace only have effect in that namespace.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "RoleBinding" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata." }, "roleRef": { "$ref": "#/definitions/io_k8s_api_rbac_v1_RoleRef", "description": "RoleRef can reference a Role in the current namespace or a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error." }, "subjects": { "description": "Subjects holds references to the objects the role applies to.", "items": { "$ref": "#/definitions/io_k8s_api_rbac_v1_Subject" }, "type": "array" } }, "required": [ "roleRef" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "rbac.authorization.k8s.io", "kind": "RoleBinding", "version": "v1" } ] }, "io_k8s_api_rbac_v1_RoleBindingList": { "description": "RoleBindingList is a collection of RoleBindings", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "Items is a list of RoleBindings", "items": { "$ref": "#/definitions/io_k8s_api_rbac_v1_RoleBinding" }, "type": "array" }, "kind": { "description": "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", "enum": [ "RoleBindingList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard object's metadata." } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "rbac.authorization.k8s.io", "kind": "RoleBindingList", "version": "v1" } ] }, "io_k8s_api_rbac_v1_RoleList": { "description": "RoleList is a collection of Roles", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "Items is a list of Roles", "items": { "$ref": "#/definitions/io_k8s_api_rbac_v1_Role" }, "type": "array" }, "kind": { "description": "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", "enum": [ "RoleList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard object's metadata." } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "rbac.authorization.k8s.io", "kind": "RoleList", "version": "v1" } ] }, "io_k8s_api_rbac_v1_RoleRef": { "description": "RoleRef contains information that points to the role being used", "properties": { "apiGroup": { "description": "APIGroup is the group for the resource being referenced", "type": "string" }, "kind": { "description": "Kind is the type of resource being referenced", "type": "string" }, "name": { "description": "Name is the name of resource being referenced", "type": "string" } }, "required": [ "apiGroup", "kind", "name" ], "type": "object" }, "io_k8s_api_rbac_v1_Subject": { "description": "Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names.", "properties": { "apiGroup": { "description": "APIGroup holds the API group of the referenced subject. Defaults to \"\" for ServiceAccount subjects. Defaults to \"rbac.authorization.k8s.io\" for User and Group subjects.", "type": "string" }, "kind": { "description": "Kind of object being referenced. Values defined by this API group are \"User\", \"Group\", and \"ServiceAccount\". If the Authorizer does not recognized the kind value, the Authorizer should report an error.", "type": "string" }, "name": { "description": "Name of the object being referenced.", "type": "string" }, "namespace": { "description": "Namespace of the referenced object. If the object kind is non-namespace, such as \"User\" or \"Group\", and this value is not empty the Authorizer should report an error.", "type": "string" } }, "required": [ "kind", "name" ], "type": "object" }, "io_k8s_api_rbac_v1alpha1_AggregationRule": { "description": "AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole", "properties": { "clusterRoleSelectors": { "description": "ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules. If any of the selectors match, then the ClusterRole's permissions will be added", "items": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector" }, "type": "array" } }, "type": "object" }, "io_k8s_api_rbac_v1alpha1_ClusterRole": { "description": "ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRole, and will no longer be served in v1.20.", "properties": { "aggregationRule": { "$ref": "#/definitions/io_k8s_api_rbac_v1alpha1_AggregationRule", "description": "AggregationRule is an optional field that describes how to build the Rules for this ClusterRole. If AggregationRule is set, then the Rules are controller managed and direct changes to Rules will be stomped by the controller." }, "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "ClusterRole" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata." }, "rules": { "description": "Rules holds all the PolicyRules for this ClusterRole", "items": { "$ref": "#/definitions/io_k8s_api_rbac_v1alpha1_PolicyRule" }, "type": "array" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "rbac.authorization.k8s.io", "kind": "ClusterRole", "version": "v1alpha1" } ] }, "io_k8s_api_rbac_v1alpha1_ClusterRoleBinding": { "description": "ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoleBinding, and will no longer be served in v1.20.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "ClusterRoleBinding" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata." }, "roleRef": { "$ref": "#/definitions/io_k8s_api_rbac_v1alpha1_RoleRef", "description": "RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error." }, "subjects": { "description": "Subjects holds references to the objects the role applies to.", "items": { "$ref": "#/definitions/io_k8s_api_rbac_v1alpha1_Subject" }, "type": "array" } }, "required": [ "roleRef" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "rbac.authorization.k8s.io", "kind": "ClusterRoleBinding", "version": "v1alpha1" } ] }, "io_k8s_api_rbac_v1alpha1_ClusterRoleBindingList": { "description": "ClusterRoleBindingList is a collection of ClusterRoleBindings. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoleBindings, and will no longer be served in v1.20.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "Items is a list of ClusterRoleBindings", "items": { "$ref": "#/definitions/io_k8s_api_rbac_v1alpha1_ClusterRoleBinding" }, "type": "array" }, "kind": { "description": "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", "enum": [ "ClusterRoleBindingList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard object's metadata." } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "rbac.authorization.k8s.io", "kind": "ClusterRoleBindingList", "version": "v1alpha1" } ] }, "io_k8s_api_rbac_v1alpha1_ClusterRoleList": { "description": "ClusterRoleList is a collection of ClusterRoles. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoles, and will no longer be served in v1.20.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "Items is a list of ClusterRoles", "items": { "$ref": "#/definitions/io_k8s_api_rbac_v1alpha1_ClusterRole" }, "type": "array" }, "kind": { "description": "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", "enum": [ "ClusterRoleList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard object's metadata." } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "rbac.authorization.k8s.io", "kind": "ClusterRoleList", "version": "v1alpha1" } ] }, "io_k8s_api_rbac_v1alpha1_PolicyRule": { "description": "PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.", "properties": { "apiGroups": { "description": "APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed.", "items": { "type": "string" }, "type": "array" }, "nonResourceURLs": { "description": "NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as \"pods\" or \"secrets\") or non-resource URL paths (such as \"/api\"), but not both.", "items": { "type": "string" }, "type": "array" }, "resourceNames": { "description": "ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed.", "items": { "type": "string" }, "type": "array" }, "resources": { "description": "Resources is a list of resources this rule applies to. ResourceAll represents all resources.", "items": { "type": "string" }, "type": "array" }, "verbs": { "description": "Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule. VerbAll represents all kinds.", "items": { "type": "string" }, "type": "array" } }, "required": [ "verbs" ], "type": "object" }, "io_k8s_api_rbac_v1alpha1_Role": { "description": "Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 Role, and will no longer be served in v1.20.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "Role" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata." }, "rules": { "description": "Rules holds all the PolicyRules for this Role", "items": { "$ref": "#/definitions/io_k8s_api_rbac_v1alpha1_PolicyRule" }, "type": "array" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "rbac.authorization.k8s.io", "kind": "Role", "version": "v1alpha1" } ] }, "io_k8s_api_rbac_v1alpha1_RoleBinding": { "description": "RoleBinding references a role, but does not contain it. It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in. RoleBindings in a given namespace only have effect in that namespace. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleBinding, and will no longer be served in v1.20.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "RoleBinding" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata." }, "roleRef": { "$ref": "#/definitions/io_k8s_api_rbac_v1alpha1_RoleRef", "description": "RoleRef can reference a Role in the current namespace or a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error." }, "subjects": { "description": "Subjects holds references to the objects the role applies to.", "items": { "$ref": "#/definitions/io_k8s_api_rbac_v1alpha1_Subject" }, "type": "array" } }, "required": [ "roleRef" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "rbac.authorization.k8s.io", "kind": "RoleBinding", "version": "v1alpha1" } ] }, "io_k8s_api_rbac_v1alpha1_RoleBindingList": { "description": "RoleBindingList is a collection of RoleBindings Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleBindingList, and will no longer be served in v1.20.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "Items is a list of RoleBindings", "items": { "$ref": "#/definitions/io_k8s_api_rbac_v1alpha1_RoleBinding" }, "type": "array" }, "kind": { "description": "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", "enum": [ "RoleBindingList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard object's metadata." } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "rbac.authorization.k8s.io", "kind": "RoleBindingList", "version": "v1alpha1" } ] }, "io_k8s_api_rbac_v1alpha1_RoleList": { "description": "RoleList is a collection of Roles. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleList, and will no longer be served in v1.20.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "Items is a list of Roles", "items": { "$ref": "#/definitions/io_k8s_api_rbac_v1alpha1_Role" }, "type": "array" }, "kind": { "description": "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", "enum": [ "RoleList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard object's metadata." } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "rbac.authorization.k8s.io", "kind": "RoleList", "version": "v1alpha1" } ] }, "io_k8s_api_rbac_v1alpha1_RoleRef": { "description": "RoleRef contains information that points to the role being used", "properties": { "apiGroup": { "description": "APIGroup is the group for the resource being referenced", "type": "string" }, "kind": { "description": "Kind is the type of resource being referenced", "type": "string" }, "name": { "description": "Name is the name of resource being referenced", "type": "string" } }, "required": [ "apiGroup", "kind", "name" ], "type": "object" }, "io_k8s_api_rbac_v1alpha1_Subject": { "description": "Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names.", "properties": { "apiVersion": { "description": "APIVersion holds the API group and version of the referenced subject. Defaults to \"v1\" for ServiceAccount subjects. Defaults to \"rbac.authorization.k8s.io/v1alpha1\" for User and Group subjects.", "type": "string" }, "kind": { "description": "Kind of object being referenced. Values defined by this API group are \"User\", \"Group\", and \"ServiceAccount\". If the Authorizer does not recognized the kind value, the Authorizer should report an error.", "type": "string" }, "name": { "description": "Name of the object being referenced.", "type": "string" }, "namespace": { "description": "Namespace of the referenced object. If the object kind is non-namespace, such as \"User\" or \"Group\", and this value is not empty the Authorizer should report an error.", "type": "string" } }, "required": [ "kind", "name" ], "type": "object" }, "io_k8s_api_rbac_v1beta1_AggregationRule": { "description": "AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole", "properties": { "clusterRoleSelectors": { "description": "ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules. If any of the selectors match, then the ClusterRole's permissions will be added", "items": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector" }, "type": "array" } }, "type": "object" }, "io_k8s_api_rbac_v1beta1_ClusterRole": { "description": "ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRole, and will no longer be served in v1.20.", "properties": { "aggregationRule": { "$ref": "#/definitions/io_k8s_api_rbac_v1beta1_AggregationRule", "description": "AggregationRule is an optional field that describes how to build the Rules for this ClusterRole. If AggregationRule is set, then the Rules are controller managed and direct changes to Rules will be stomped by the controller." }, "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "ClusterRole" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata." }, "rules": { "description": "Rules holds all the PolicyRules for this ClusterRole", "items": { "$ref": "#/definitions/io_k8s_api_rbac_v1beta1_PolicyRule" }, "type": "array" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "rbac.authorization.k8s.io", "kind": "ClusterRole", "version": "v1beta1" } ] }, "io_k8s_api_rbac_v1beta1_ClusterRoleBinding": { "description": "ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoleBinding, and will no longer be served in v1.20.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "ClusterRoleBinding" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata." }, "roleRef": { "$ref": "#/definitions/io_k8s_api_rbac_v1beta1_RoleRef", "description": "RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error." }, "subjects": { "description": "Subjects holds references to the objects the role applies to.", "items": { "$ref": "#/definitions/io_k8s_api_rbac_v1beta1_Subject" }, "type": "array" } }, "required": [ "roleRef" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "rbac.authorization.k8s.io", "kind": "ClusterRoleBinding", "version": "v1beta1" } ] }, "io_k8s_api_rbac_v1beta1_ClusterRoleBindingList": { "description": "ClusterRoleBindingList is a collection of ClusterRoleBindings. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoleBindingList, and will no longer be served in v1.20.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "Items is a list of ClusterRoleBindings", "items": { "$ref": "#/definitions/io_k8s_api_rbac_v1beta1_ClusterRoleBinding" }, "type": "array" }, "kind": { "description": "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", "enum": [ "ClusterRoleBindingList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard object's metadata." } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "rbac.authorization.k8s.io", "kind": "ClusterRoleBindingList", "version": "v1beta1" } ] }, "io_k8s_api_rbac_v1beta1_ClusterRoleList": { "description": "ClusterRoleList is a collection of ClusterRoles. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoles, and will no longer be served in v1.20.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "Items is a list of ClusterRoles", "items": { "$ref": "#/definitions/io_k8s_api_rbac_v1beta1_ClusterRole" }, "type": "array" }, "kind": { "description": "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", "enum": [ "ClusterRoleList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard object's metadata." } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "rbac.authorization.k8s.io", "kind": "ClusterRoleList", "version": "v1beta1" } ] }, "io_k8s_api_rbac_v1beta1_PolicyRule": { "description": "PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.", "properties": { "apiGroups": { "description": "APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed.", "items": { "type": "string" }, "type": "array" }, "nonResourceURLs": { "description": "NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as \"pods\" or \"secrets\") or non-resource URL paths (such as \"/api\"), but not both.", "items": { "type": "string" }, "type": "array" }, "resourceNames": { "description": "ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed.", "items": { "type": "string" }, "type": "array" }, "resources": { "description": "Resources is a list of resources this rule applies to. '*' represents all resources in the specified apiGroups. '*/foo' represents the subresource 'foo' for all resources in the specified apiGroups.", "items": { "type": "string" }, "type": "array" }, "verbs": { "description": "Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule. VerbAll represents all kinds.", "items": { "type": "string" }, "type": "array" } }, "required": [ "verbs" ], "type": "object" }, "io_k8s_api_rbac_v1beta1_Role": { "description": "Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 Role, and will no longer be served in v1.20.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "Role" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata." }, "rules": { "description": "Rules holds all the PolicyRules for this Role", "items": { "$ref": "#/definitions/io_k8s_api_rbac_v1beta1_PolicyRule" }, "type": "array" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "rbac.authorization.k8s.io", "kind": "Role", "version": "v1beta1" } ] }, "io_k8s_api_rbac_v1beta1_RoleBinding": { "description": "RoleBinding references a role, but does not contain it. It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in. RoleBindings in a given namespace only have effect in that namespace. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleBinding, and will no longer be served in v1.20.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "RoleBinding" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata." }, "roleRef": { "$ref": "#/definitions/io_k8s_api_rbac_v1beta1_RoleRef", "description": "RoleRef can reference a Role in the current namespace or a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error." }, "subjects": { "description": "Subjects holds references to the objects the role applies to.", "items": { "$ref": "#/definitions/io_k8s_api_rbac_v1beta1_Subject" }, "type": "array" } }, "required": [ "roleRef" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "rbac.authorization.k8s.io", "kind": "RoleBinding", "version": "v1beta1" } ] }, "io_k8s_api_rbac_v1beta1_RoleBindingList": { "description": "RoleBindingList is a collection of RoleBindings Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleBindingList, and will no longer be served in v1.20.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "Items is a list of RoleBindings", "items": { "$ref": "#/definitions/io_k8s_api_rbac_v1beta1_RoleBinding" }, "type": "array" }, "kind": { "description": "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", "enum": [ "RoleBindingList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard object's metadata." } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "rbac.authorization.k8s.io", "kind": "RoleBindingList", "version": "v1beta1" } ] }, "io_k8s_api_rbac_v1beta1_RoleList": { "description": "RoleList is a collection of Roles Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleList, and will no longer be served in v1.20.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "Items is a list of Roles", "items": { "$ref": "#/definitions/io_k8s_api_rbac_v1beta1_Role" }, "type": "array" }, "kind": { "description": "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", "enum": [ "RoleList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard object's metadata." } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "rbac.authorization.k8s.io", "kind": "RoleList", "version": "v1beta1" } ] }, "io_k8s_api_rbac_v1beta1_RoleRef": { "description": "RoleRef contains information that points to the role being used", "properties": { "apiGroup": { "description": "APIGroup is the group for the resource being referenced", "type": "string" }, "kind": { "description": "Kind is the type of resource being referenced", "type": "string" }, "name": { "description": "Name is the name of resource being referenced", "type": "string" } }, "required": [ "apiGroup", "kind", "name" ], "type": "object" }, "io_k8s_api_rbac_v1beta1_Subject": { "description": "Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names.", "properties": { "apiGroup": { "description": "APIGroup holds the API group of the referenced subject. Defaults to \"\" for ServiceAccount subjects. Defaults to \"rbac.authorization.k8s.io\" for User and Group subjects.", "type": "string" }, "kind": { "description": "Kind of object being referenced. Values defined by this API group are \"User\", \"Group\", and \"ServiceAccount\". If the Authorizer does not recognized the kind value, the Authorizer should report an error.", "type": "string" }, "name": { "description": "Name of the object being referenced.", "type": "string" }, "namespace": { "description": "Namespace of the referenced object. If the object kind is non-namespace, such as \"User\" or \"Group\", and this value is not empty the Authorizer should report an error.", "type": "string" } }, "required": [ "kind", "name" ], "type": "object" }, "io_k8s_api_scheduling_v1_PriorityClass": { "description": "PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "description": { "description": "description is an arbitrary string that usually provides guidelines on when this priority class should be used.", "type": "string" }, "globalDefault": { "description": "globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class. Only one PriorityClass can be marked as `globalDefault`. However, if more than one PriorityClasses exists with their `globalDefault` field set to true, the smallest value of such global default PriorityClasses will be used as the default priority.", "type": "boolean" }, "kind": { "description": "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", "enum": [ "PriorityClass" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "preemptionPolicy": { "description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is alpha-level and is only honored by servers that enable the NonPreemptingPriority feature.", "type": "string" }, "value": { "_format": "int32", "description": "The value of this priority class. This is the actual priority that pods receive when they have the name of this class in their pod spec.", "type": "integer" } }, "required": [ "value" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "scheduling.k8s.io", "kind": "PriorityClass", "version": "v1" } ] }, "io_k8s_api_scheduling_v1_PriorityClassList": { "description": "PriorityClassList is a collection of priority classes.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "items is the list of PriorityClasses", "items": { "$ref": "#/definitions/io_k8s_api_scheduling_v1_PriorityClass" }, "type": "array" }, "kind": { "description": "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", "enum": [ "PriorityClassList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "scheduling.k8s.io", "kind": "PriorityClassList", "version": "v1" } ] }, "io_k8s_api_scheduling_v1alpha1_PriorityClass": { "description": "DEPRECATED - This group version of PriorityClass is deprecated by scheduling.k8s.io/v1/PriorityClass. PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "description": { "description": "description is an arbitrary string that usually provides guidelines on when this priority class should be used.", "type": "string" }, "globalDefault": { "description": "globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class. Only one PriorityClass can be marked as `globalDefault`. However, if more than one PriorityClasses exists with their `globalDefault` field set to true, the smallest value of such global default PriorityClasses will be used as the default priority.", "type": "boolean" }, "kind": { "description": "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", "enum": [ "PriorityClass" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "preemptionPolicy": { "description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is alpha-level and is only honored by servers that enable the NonPreemptingPriority feature.", "type": "string" }, "value": { "_format": "int32", "description": "The value of this priority class. This is the actual priority that pods receive when they have the name of this class in their pod spec.", "type": "integer" } }, "required": [ "value" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "scheduling.k8s.io", "kind": "PriorityClass", "version": "v1alpha1" } ] }, "io_k8s_api_scheduling_v1alpha1_PriorityClassList": { "description": "PriorityClassList is a collection of priority classes.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "items is the list of PriorityClasses", "items": { "$ref": "#/definitions/io_k8s_api_scheduling_v1alpha1_PriorityClass" }, "type": "array" }, "kind": { "description": "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", "enum": [ "PriorityClassList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "scheduling.k8s.io", "kind": "PriorityClassList", "version": "v1alpha1" } ] }, "io_k8s_api_scheduling_v1beta1_PriorityClass": { "description": "DEPRECATED - This group version of PriorityClass is deprecated by scheduling.k8s.io/v1/PriorityClass. PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "description": { "description": "description is an arbitrary string that usually provides guidelines on when this priority class should be used.", "type": "string" }, "globalDefault": { "description": "globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class. Only one PriorityClass can be marked as `globalDefault`. However, if more than one PriorityClasses exists with their `globalDefault` field set to true, the smallest value of such global default PriorityClasses will be used as the default priority.", "type": "boolean" }, "kind": { "description": "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", "enum": [ "PriorityClass" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "preemptionPolicy": { "description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset. This field is alpha-level and is only honored by servers that enable the NonPreemptingPriority feature.", "type": "string" }, "value": { "_format": "int32", "description": "The value of this priority class. This is the actual priority that pods receive when they have the name of this class in their pod spec.", "type": "integer" } }, "required": [ "value" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "scheduling.k8s.io", "kind": "PriorityClass", "version": "v1beta1" } ] }, "io_k8s_api_scheduling_v1beta1_PriorityClassList": { "description": "PriorityClassList is a collection of priority classes.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "items is the list of PriorityClasses", "items": { "$ref": "#/definitions/io_k8s_api_scheduling_v1beta1_PriorityClass" }, "type": "array" }, "kind": { "description": "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", "enum": [ "PriorityClassList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "scheduling.k8s.io", "kind": "PriorityClassList", "version": "v1beta1" } ] }, "io_k8s_api_settings_v1alpha1_PodPreset": { "description": "PodPreset is a policy resource that defines additional runtime requirements for a Pod.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "PodPreset" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta" }, "spec": { "$ref": "#/definitions/io_k8s_api_settings_v1alpha1_PodPresetSpec" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "settings.k8s.io", "kind": "PodPreset", "version": "v1alpha1" } ] }, "io_k8s_api_settings_v1alpha1_PodPresetList": { "description": "PodPresetList is a list of PodPreset objects.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "Items is a list of schema objects.", "items": { "$ref": "#/definitions/io_k8s_api_settings_v1alpha1_PodPreset" }, "type": "array" }, "kind": { "description": "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", "enum": [ "PodPresetList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "settings.k8s.io", "kind": "PodPresetList", "version": "v1alpha1" } ] }, "io_k8s_api_settings_v1alpha1_PodPresetSpec": { "description": "PodPresetSpec is a description of a pod preset.", "properties": { "env": { "description": "Env defines the collection of EnvVar to inject into containers.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_EnvVar" }, "type": "array" }, "envFrom": { "description": "EnvFrom defines the collection of EnvFromSource to inject into containers.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_EnvFromSource" }, "type": "array" }, "selector": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "description": "Selector is a label query over a set of resources, in this case pods. Required." }, "volumeMounts": { "description": "VolumeMounts defines the collection of VolumeMount to inject into containers.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_VolumeMount" }, "type": "array" }, "volumes": { "description": "Volumes defines the collection of Volume to inject into the pod.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_Volume" }, "type": "array" } }, "type": "object" }, "io_k8s_api_storage_v1_CSIDriver": { "description": "CSIDriver captures information about a Container Storage Interface (CSI) volume driver deployed on the cluster. Kubernetes attach detach controller uses this object to determine whether attach is required. Kubelet uses this object to determine whether pod information needs to be passed on mount. CSIDriver objects are non-namespaced.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "CSIDriver" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object metadata. metadata.Name indicates the name of the CSI driver that this object refers to; it MUST be the same name returned by the CSI GetPluginName() call for that driver. The driver name must be 63 characters or less, beginning and ending with an alphanumeric character ([a-z0-9A-Z]) with dashes (-), dots (.), and alphanumerics between. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/io_k8s_api_storage_v1_CSIDriverSpec", "description": "Specification of the CSI Driver." } }, "required": [ "spec" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "storage.k8s.io", "kind": "CSIDriver", "version": "v1" } ] }, "io_k8s_api_storage_v1_CSIDriverList": { "description": "CSIDriverList is a collection of CSIDriver objects.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "items is the list of CSIDriver", "items": { "$ref": "#/definitions/io_k8s_api_storage_v1_CSIDriver" }, "type": "array" }, "kind": { "description": "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", "enum": [ "CSIDriverList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "storage.k8s.io", "kind": "CSIDriverList", "version": "v1" } ] }, "io_k8s_api_storage_v1_CSIDriverSpec": { "description": "CSIDriverSpec is the specification of a CSIDriver.", "properties": { "attachRequired": { "description": "attachRequired indicates this CSI volume driver requires an attach operation (because it implements the CSI ControllerPublishVolume() method), and that the Kubernetes attach detach controller should call the attach volume interface which checks the volumeattachment status and waits until the volume is attached before proceeding to mounting. The CSI external-attacher coordinates with CSI volume driver and updates the volumeattachment status when the attach operation is complete. If the CSIDriverRegistry feature gate is enabled and the value is specified to false, the attach operation will be skipped. Otherwise the attach operation will be called.", "type": "boolean" }, "podInfoOnMount": { "description": "If set to true, podInfoOnMount indicates this CSI volume driver requires additional pod information (like podName, podUID, etc.) during mount operations. If set to false, pod information will not be passed on mount. Default is false. The CSI driver specifies podInfoOnMount as part of driver deployment. If true, Kubelet will pass pod information as VolumeContext in the CSI NodePublishVolume() calls. The CSI driver is responsible for parsing and validating the information passed in as VolumeContext. The following VolumeConext will be passed if podInfoOnMount is set to true. This list might grow, but the prefix will be used. \"csi.storage.k8s.io/pod.name\": pod.Name \"csi.storage.k8s.io/pod.namespace\": pod.Namespace \"csi.storage.k8s.io/pod.uid\": string(pod.UID) \"csi.storage.k8s.io/ephemeral\": \"true\" iff the volume is an ephemeral inline volume\n defined by a CSIVolumeSource, otherwise \"false\"\n\n\"csi.storage.k8s.io/ephemeral\" is a new feature in Kubernetes 1.16. It is only required for drivers which support both the \"Persistent\" and \"Ephemeral\" VolumeLifecycleMode. Other drivers can leave pod info disabled and/or ignore this field. As Kubernetes 1.15 doesn't support this field, drivers can only support one mode when deployed on such a cluster and the deployment determines which mode that is, for example via a command line parameter of the driver.", "type": "boolean" }, "volumeLifecycleModes": { "description": "volumeLifecycleModes defines what kind of volumes this CSI volume driver supports. The default if the list is empty is \"Persistent\", which is the usage defined by the CSI specification and implemented in Kubernetes via the usual PV/PVC mechanism. The other mode is \"Ephemeral\". In this mode, volumes are defined inline inside the pod spec with CSIVolumeSource and their lifecycle is tied to the lifecycle of that pod. A driver has to be aware of this because it is only going to get a NodePublishVolume call for such a volume. For more information about implementing this mode, see https://kubernetes-csi.github.io/docs/ephemeral-local-volumes.html A driver can support one or more of these modes and more modes may be added in the future. This field is beta.", "items": { "type": "string" }, "type": "array", "x-kubernetes-list-type": "set" } }, "type": "object" }, "io_k8s_api_storage_v1_CSINode": { "description": "CSINode holds information about all CSI drivers installed on a node. CSI drivers do not need to create the CSINode object directly. As long as they use the node-driver-registrar sidecar container, the kubelet will automatically populate the CSINode object for the CSI driver as part of kubelet plugin registration. CSINode has the same name as a node. If the object is missing, it means either there are no CSI Drivers available on the node, or the Kubelet version is low enough that it doesn't create this object. CSINode has an OwnerReference that points to the corresponding node object.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "CSINode" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "metadata.name must be the Kubernetes node name." }, "spec": { "$ref": "#/definitions/io_k8s_api_storage_v1_CSINodeSpec", "description": "spec is the specification of CSINode" } }, "required": [ "spec" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "storage.k8s.io", "kind": "CSINode", "version": "v1" } ] }, "io_k8s_api_storage_v1_CSINodeDriver": { "description": "CSINodeDriver holds information about the specification of one CSI driver installed on a node", "properties": { "allocatable": { "$ref": "#/definitions/io_k8s_api_storage_v1_VolumeNodeResources", "description": "allocatable represents the volume resources of a node that are available for scheduling. This field is beta." }, "name": { "description": "This is the name of the CSI driver that this object refers to. This MUST be the same name returned by the CSI GetPluginName() call for that driver.", "type": "string" }, "nodeID": { "description": "nodeID of the node from the driver point of view. This field enables Kubernetes to communicate with storage systems that do not share the same nomenclature for nodes. For example, Kubernetes may refer to a given node as \"node1\", but the storage system may refer to the same node as \"nodeA\". When Kubernetes issues a command to the storage system to attach a volume to a specific node, it can use this field to refer to the node name using the ID that the storage system will understand, e.g. \"nodeA\" instead of \"node1\". This field is required.", "type": "string" }, "topologyKeys": { "description": "topologyKeys is the list of keys supported by the driver. When a driver is initialized on a cluster, it provides a set of topology keys that it understands (e.g. \"company.com/zone\", \"company.com/region\"). When a driver is initialized on a node, it provides the same topology keys along with values. Kubelet will expose these topology keys as labels on its own node object. When Kubernetes does topology aware provisioning, it can use this list to determine which labels it should retrieve from the node object and pass back to the driver. It is possible for different nodes to use different topology keys. This can be empty if driver does not support topology.", "items": { "type": "string" }, "type": "array" } }, "required": [ "name", "nodeID" ], "type": "object" }, "io_k8s_api_storage_v1_CSINodeList": { "description": "CSINodeList is a collection of CSINode objects.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "items is the list of CSINode", "items": { "$ref": "#/definitions/io_k8s_api_storage_v1_CSINode" }, "type": "array" }, "kind": { "description": "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", "enum": [ "CSINodeList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "storage.k8s.io", "kind": "CSINodeList", "version": "v1" } ] }, "io_k8s_api_storage_v1_CSINodeSpec": { "description": "CSINodeSpec holds information about the specification of all CSI drivers installed on a node", "properties": { "drivers": { "description": "drivers is a list of information of all CSI Drivers existing on a node. If all drivers in the list are uninstalled, this can become empty.", "items": { "$ref": "#/definitions/io_k8s_api_storage_v1_CSINodeDriver" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" } }, "required": [ "drivers" ], "type": "object" }, "io_k8s_api_storage_v1_StorageClass": { "description": "StorageClass describes the parameters for a class of storage for which PersistentVolumes can be dynamically provisioned.\n\nStorageClasses are non-namespaced; the name of the storage class according to etcd is in ObjectMeta.Name.", "properties": { "allowVolumeExpansion": { "description": "AllowVolumeExpansion shows whether the storage class allow volume expand", "type": "boolean" }, "allowedTopologies": { "description": "Restrict the node topologies where volumes can be dynamically provisioned. Each volume plugin defines its own supported topology specifications. An empty TopologySelectorTerm list means there is no topology restriction. This field is only honored by servers that enable the VolumeScheduling feature.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_TopologySelectorTerm" }, "type": "array" }, "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "StorageClass" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "mountOptions": { "description": "Dynamically provisioned PersistentVolumes of this storage class are created with these mountOptions, e.g. [\"ro\", \"soft\"]. Not validated - mount of the PVs will simply fail if one is invalid.", "items": { "type": "string" }, "type": "array" }, "parameters": { "additionalProperties": { "type": "string" }, "description": "Parameters holds the parameters for the provisioner that should create volumes of this storage class.", "type": "object" }, "provisioner": { "description": "Provisioner indicates the type of the provisioner.", "type": "string" }, "reclaimPolicy": { "description": "Dynamically provisioned PersistentVolumes of this storage class are created with this reclaimPolicy. Defaults to Delete.", "type": "string" }, "volumeBindingMode": { "description": "VolumeBindingMode indicates how PersistentVolumeClaims should be provisioned and bound. When unset, VolumeBindingImmediate is used. This field is only honored by servers that enable the VolumeScheduling feature.", "type": "string" } }, "required": [ "provisioner" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "storage.k8s.io", "kind": "StorageClass", "version": "v1" } ] }, "io_k8s_api_storage_v1_StorageClassList": { "description": "StorageClassList is a collection of storage classes.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "Items is the list of StorageClasses", "items": { "$ref": "#/definitions/io_k8s_api_storage_v1_StorageClass" }, "type": "array" }, "kind": { "description": "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", "enum": [ "StorageClassList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "storage.k8s.io", "kind": "StorageClassList", "version": "v1" } ] }, "io_k8s_api_storage_v1_VolumeAttachment": { "description": "VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node.\n\nVolumeAttachment objects are non-namespaced.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "VolumeAttachment" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/io_k8s_api_storage_v1_VolumeAttachmentSpec", "description": "Specification of the desired attach/detach volume behavior. Populated by the Kubernetes system." }, "status": { "$ref": "#/definitions/io_k8s_api_storage_v1_VolumeAttachmentStatus", "description": "Status of the VolumeAttachment request. Populated by the entity completing the attach or detach operation, i.e. the external-attacher." } }, "required": [ "spec" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "storage.k8s.io", "kind": "VolumeAttachment", "version": "v1" } ] }, "io_k8s_api_storage_v1_VolumeAttachmentList": { "description": "VolumeAttachmentList is a collection of VolumeAttachment objects.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "Items is the list of VolumeAttachments", "items": { "$ref": "#/definitions/io_k8s_api_storage_v1_VolumeAttachment" }, "type": "array" }, "kind": { "description": "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", "enum": [ "VolumeAttachmentList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "storage.k8s.io", "kind": "VolumeAttachmentList", "version": "v1" } ] }, "io_k8s_api_storage_v1_VolumeAttachmentSource": { "description": "VolumeAttachmentSource represents a volume that should be attached. Right now only PersistenVolumes can be attached via external attacher, in future we may allow also inline volumes in pods. Exactly one member can be set.", "properties": { "inlineVolumeSpec": { "$ref": "#/definitions/io_k8s_api_core_v1_PersistentVolumeSpec", "description": "inlineVolumeSpec contains all the information necessary to attach a persistent volume defined by a pod's inline VolumeSource. This field is populated only for the CSIMigration feature. It contains translated fields from a pod's inline VolumeSource to a PersistentVolumeSpec. This field is alpha-level and is only honored by servers that enabled the CSIMigration feature." }, "persistentVolumeName": { "description": "Name of the persistent volume to attach.", "type": "string" } }, "type": "object" }, "io_k8s_api_storage_v1_VolumeAttachmentSpec": { "description": "VolumeAttachmentSpec is the specification of a VolumeAttachment request.", "properties": { "attacher": { "description": "Attacher indicates the name of the volume driver that MUST handle this request. This is the name returned by GetPluginName().", "type": "string" }, "nodeName": { "description": "The node that the volume should be attached to.", "type": "string" }, "source": { "$ref": "#/definitions/io_k8s_api_storage_v1_VolumeAttachmentSource", "description": "Source represents the volume that should be attached." } }, "required": [ "attacher", "source", "nodeName" ], "type": "object" }, "io_k8s_api_storage_v1_VolumeAttachmentStatus": { "description": "VolumeAttachmentStatus is the status of a VolumeAttachment request.", "properties": { "attachError": { "$ref": "#/definitions/io_k8s_api_storage_v1_VolumeError", "description": "The last error encountered during attach operation, if any. This field must only be set by the entity completing the attach operation, i.e. the external-attacher." }, "attached": { "description": "Indicates the volume is successfully attached. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.", "type": "boolean" }, "attachmentMetadata": { "additionalProperties": { "type": "string" }, "description": "Upon successful attach, this field is populated with any information returned by the attach operation that must be passed into subsequent WaitForAttach or Mount calls. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.", "type": "object" }, "detachError": { "$ref": "#/definitions/io_k8s_api_storage_v1_VolumeError", "description": "The last error encountered during detach operation, if any. This field must only be set by the entity completing the detach operation, i.e. the external-attacher." } }, "required": [ "attached" ], "type": "object" }, "io_k8s_api_storage_v1_VolumeError": { "description": "VolumeError captures an error encountered during a volume operation.", "properties": { "message": { "description": "String detailing the error encountered during Attach or Detach operation. This string may be logged, so it should not contain sensitive information.", "type": "string" }, "time": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time the error was encountered." } }, "type": "object" }, "io_k8s_api_storage_v1_VolumeNodeResources": { "description": "VolumeNodeResources is a set of resource limits for scheduling of volumes.", "properties": { "count": { "_format": "int32", "description": "Maximum number of unique volumes managed by the CSI driver that can be used on a node. A volume that is both attached and mounted on a node is considered to be used once, not twice. The same rule applies for a unique volume that is shared among multiple pods on the same node. If this field is not specified, then the supported number of volumes on this node is unbounded.", "type": "integer" } }, "type": "object" }, "io_k8s_api_storage_v1alpha1_VolumeAttachment": { "description": "VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node.\n\nVolumeAttachment objects are non-namespaced.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "VolumeAttachment" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/io_k8s_api_storage_v1alpha1_VolumeAttachmentSpec", "description": "Specification of the desired attach/detach volume behavior. Populated by the Kubernetes system." }, "status": { "$ref": "#/definitions/io_k8s_api_storage_v1alpha1_VolumeAttachmentStatus", "description": "Status of the VolumeAttachment request. Populated by the entity completing the attach or detach operation, i.e. the external-attacher." } }, "required": [ "spec" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "storage.k8s.io", "kind": "VolumeAttachment", "version": "v1alpha1" } ] }, "io_k8s_api_storage_v1alpha1_VolumeAttachmentList": { "description": "VolumeAttachmentList is a collection of VolumeAttachment objects.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "Items is the list of VolumeAttachments", "items": { "$ref": "#/definitions/io_k8s_api_storage_v1alpha1_VolumeAttachment" }, "type": "array" }, "kind": { "description": "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", "enum": [ "VolumeAttachmentList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "storage.k8s.io", "kind": "VolumeAttachmentList", "version": "v1alpha1" } ] }, "io_k8s_api_storage_v1alpha1_VolumeAttachmentSource": { "description": "VolumeAttachmentSource represents a volume that should be attached. Right now only PersistenVolumes can be attached via external attacher, in future we may allow also inline volumes in pods. Exactly one member can be set.", "properties": { "inlineVolumeSpec": { "$ref": "#/definitions/io_k8s_api_core_v1_PersistentVolumeSpec", "description": "inlineVolumeSpec contains all the information necessary to attach a persistent volume defined by a pod's inline VolumeSource. This field is populated only for the CSIMigration feature. It contains translated fields from a pod's inline VolumeSource to a PersistentVolumeSpec. This field is alpha-level and is only honored by servers that enabled the CSIMigration feature." }, "persistentVolumeName": { "description": "Name of the persistent volume to attach.", "type": "string" } }, "type": "object" }, "io_k8s_api_storage_v1alpha1_VolumeAttachmentSpec": { "description": "VolumeAttachmentSpec is the specification of a VolumeAttachment request.", "properties": { "attacher": { "description": "Attacher indicates the name of the volume driver that MUST handle this request. This is the name returned by GetPluginName().", "type": "string" }, "nodeName": { "description": "The node that the volume should be attached to.", "type": "string" }, "source": { "$ref": "#/definitions/io_k8s_api_storage_v1alpha1_VolumeAttachmentSource", "description": "Source represents the volume that should be attached." } }, "required": [ "attacher", "source", "nodeName" ], "type": "object" }, "io_k8s_api_storage_v1alpha1_VolumeAttachmentStatus": { "description": "VolumeAttachmentStatus is the status of a VolumeAttachment request.", "properties": { "attachError": { "$ref": "#/definitions/io_k8s_api_storage_v1alpha1_VolumeError", "description": "The last error encountered during attach operation, if any. This field must only be set by the entity completing the attach operation, i.e. the external-attacher." }, "attached": { "description": "Indicates the volume is successfully attached. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.", "type": "boolean" }, "attachmentMetadata": { "additionalProperties": { "type": "string" }, "description": "Upon successful attach, this field is populated with any information returned by the attach operation that must be passed into subsequent WaitForAttach or Mount calls. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.", "type": "object" }, "detachError": { "$ref": "#/definitions/io_k8s_api_storage_v1alpha1_VolumeError", "description": "The last error encountered during detach operation, if any. This field must only be set by the entity completing the detach operation, i.e. the external-attacher." } }, "required": [ "attached" ], "type": "object" }, "io_k8s_api_storage_v1alpha1_VolumeError": { "description": "VolumeError captures an error encountered during a volume operation.", "properties": { "message": { "description": "String detailing the error encountered during Attach or Detach operation. This string maybe logged, so it should not contain sensitive information.", "type": "string" }, "time": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time the error was encountered." } }, "type": "object" }, "io_k8s_api_storage_v1beta1_CSIDriver": { "description": "CSIDriver captures information about a Container Storage Interface (CSI) volume driver deployed on the cluster. CSI drivers do not need to create the CSIDriver object directly. Instead they may use the cluster-driver-registrar sidecar container. When deployed with a CSI driver it automatically creates a CSIDriver object representing the driver. Kubernetes attach detach controller uses this object to determine whether attach is required. Kubelet uses this object to determine whether pod information needs to be passed on mount. CSIDriver objects are non-namespaced.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "CSIDriver" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object metadata. metadata.Name indicates the name of the CSI driver that this object refers to; it MUST be the same name returned by the CSI GetPluginName() call for that driver. The driver name must be 63 characters or less, beginning and ending with an alphanumeric character ([a-z0-9A-Z]) with dashes (-), dots (.), and alphanumerics between. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/io_k8s_api_storage_v1beta1_CSIDriverSpec", "description": "Specification of the CSI Driver." } }, "required": [ "spec" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "storage.k8s.io", "kind": "CSIDriver", "version": "v1beta1" } ] }, "io_k8s_api_storage_v1beta1_CSIDriverList": { "description": "CSIDriverList is a collection of CSIDriver objects.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "items is the list of CSIDriver", "items": { "$ref": "#/definitions/io_k8s_api_storage_v1beta1_CSIDriver" }, "type": "array" }, "kind": { "description": "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", "enum": [ "CSIDriverList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "storage.k8s.io", "kind": "CSIDriverList", "version": "v1beta1" } ] }, "io_k8s_api_storage_v1beta1_CSIDriverSpec": { "description": "CSIDriverSpec is the specification of a CSIDriver.", "properties": { "attachRequired": { "description": "attachRequired indicates this CSI volume driver requires an attach operation (because it implements the CSI ControllerPublishVolume() method), and that the Kubernetes attach detach controller should call the attach volume interface which checks the volumeattachment status and waits until the volume is attached before proceeding to mounting. The CSI external-attacher coordinates with CSI volume driver and updates the volumeattachment status when the attach operation is complete. If the CSIDriverRegistry feature gate is enabled and the value is specified to false, the attach operation will be skipped. Otherwise the attach operation will be called.", "type": "boolean" }, "podInfoOnMount": { "description": "If set to true, podInfoOnMount indicates this CSI volume driver requires additional pod information (like podName, podUID, etc.) during mount operations. If set to false, pod information will not be passed on mount. Default is false. The CSI driver specifies podInfoOnMount as part of driver deployment. If true, Kubelet will pass pod information as VolumeContext in the CSI NodePublishVolume() calls. The CSI driver is responsible for parsing and validating the information passed in as VolumeContext. The following VolumeConext will be passed if podInfoOnMount is set to true. This list might grow, but the prefix will be used. \"csi.storage.k8s.io/pod.name\": pod.Name \"csi.storage.k8s.io/pod.namespace\": pod.Namespace \"csi.storage.k8s.io/pod.uid\": string(pod.UID) \"csi.storage.k8s.io/ephemeral\": \"true\" iff the volume is an ephemeral inline volume\n defined by a CSIVolumeSource, otherwise \"false\"\n\n\"csi.storage.k8s.io/ephemeral\" is a new feature in Kubernetes 1.16. It is only required for drivers which support both the \"Persistent\" and \"Ephemeral\" VolumeLifecycleMode. Other drivers can leave pod info disabled and/or ignore this field. As Kubernetes 1.15 doesn't support this field, drivers can only support one mode when deployed on such a cluster and the deployment determines which mode that is, for example via a command line parameter of the driver.", "type": "boolean" }, "volumeLifecycleModes": { "description": "VolumeLifecycleModes defines what kind of volumes this CSI volume driver supports. The default if the list is empty is \"Persistent\", which is the usage defined by the CSI specification and implemented in Kubernetes via the usual PV/PVC mechanism. The other mode is \"Ephemeral\". In this mode, volumes are defined inline inside the pod spec with CSIVolumeSource and their lifecycle is tied to the lifecycle of that pod. A driver has to be aware of this because it is only going to get a NodePublishVolume call for such a volume. For more information about implementing this mode, see https://kubernetes-csi.github.io/docs/ephemeral-local-volumes.html A driver can support one or more of these modes and more modes may be added in the future.", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "io_k8s_api_storage_v1beta1_CSINode": { "description": "DEPRECATED - This group version of CSINode is deprecated by storage/v1/CSINode. See the release notes for more information. CSINode holds information about all CSI drivers installed on a node. CSI drivers do not need to create the CSINode object directly. As long as they use the node-driver-registrar sidecar container, the kubelet will automatically populate the CSINode object for the CSI driver as part of kubelet plugin registration. CSINode has the same name as a node. If the object is missing, it means either there are no CSI Drivers available on the node, or the Kubelet version is low enough that it doesn't create this object. CSINode has an OwnerReference that points to the corresponding node object.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "CSINode" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "metadata.name must be the Kubernetes node name." }, "spec": { "$ref": "#/definitions/io_k8s_api_storage_v1beta1_CSINodeSpec", "description": "spec is the specification of CSINode" } }, "required": [ "spec" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "storage.k8s.io", "kind": "CSINode", "version": "v1beta1" } ] }, "io_k8s_api_storage_v1beta1_CSINodeDriver": { "description": "CSINodeDriver holds information about the specification of one CSI driver installed on a node", "properties": { "allocatable": { "$ref": "#/definitions/io_k8s_api_storage_v1beta1_VolumeNodeResources", "description": "allocatable represents the volume resources of a node that are available for scheduling." }, "name": { "description": "This is the name of the CSI driver that this object refers to. This MUST be the same name returned by the CSI GetPluginName() call for that driver.", "type": "string" }, "nodeID": { "description": "nodeID of the node from the driver point of view. This field enables Kubernetes to communicate with storage systems that do not share the same nomenclature for nodes. For example, Kubernetes may refer to a given node as \"node1\", but the storage system may refer to the same node as \"nodeA\". When Kubernetes issues a command to the storage system to attach a volume to a specific node, it can use this field to refer to the node name using the ID that the storage system will understand, e.g. \"nodeA\" instead of \"node1\". This field is required.", "type": "string" }, "topologyKeys": { "description": "topologyKeys is the list of keys supported by the driver. When a driver is initialized on a cluster, it provides a set of topology keys that it understands (e.g. \"company.com/zone\", \"company.com/region\"). When a driver is initialized on a node, it provides the same topology keys along with values. Kubelet will expose these topology keys as labels on its own node object. When Kubernetes does topology aware provisioning, it can use this list to determine which labels it should retrieve from the node object and pass back to the driver. It is possible for different nodes to use different topology keys. This can be empty if driver does not support topology.", "items": { "type": "string" }, "type": "array" } }, "required": [ "name", "nodeID" ], "type": "object" }, "io_k8s_api_storage_v1beta1_CSINodeList": { "description": "CSINodeList is a collection of CSINode objects.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "items is the list of CSINode", "items": { "$ref": "#/definitions/io_k8s_api_storage_v1beta1_CSINode" }, "type": "array" }, "kind": { "description": "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", "enum": [ "CSINodeList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "storage.k8s.io", "kind": "CSINodeList", "version": "v1beta1" } ] }, "io_k8s_api_storage_v1beta1_CSINodeSpec": { "description": "CSINodeSpec holds information about the specification of all CSI drivers installed on a node", "properties": { "drivers": { "description": "drivers is a list of information of all CSI Drivers existing on a node. If all drivers in the list are uninstalled, this can become empty.", "items": { "$ref": "#/definitions/io_k8s_api_storage_v1beta1_CSINodeDriver" }, "type": "array", "x-kubernetes-patch-merge-key": "name", "x-kubernetes-patch-strategy": "merge" } }, "required": [ "drivers" ], "type": "object" }, "io_k8s_api_storage_v1beta1_StorageClass": { "description": "StorageClass describes the parameters for a class of storage for which PersistentVolumes can be dynamically provisioned.\n\nStorageClasses are non-namespaced; the name of the storage class according to etcd is in ObjectMeta.Name.", "properties": { "allowVolumeExpansion": { "description": "AllowVolumeExpansion shows whether the storage class allow volume expand", "type": "boolean" }, "allowedTopologies": { "description": "Restrict the node topologies where volumes can be dynamically provisioned. Each volume plugin defines its own supported topology specifications. An empty TopologySelectorTerm list means there is no topology restriction. This field is only honored by servers that enable the VolumeScheduling feature.", "items": { "$ref": "#/definitions/io_k8s_api_core_v1_TopologySelectorTerm" }, "type": "array" }, "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "StorageClass" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "mountOptions": { "description": "Dynamically provisioned PersistentVolumes of this storage class are created with these mountOptions, e.g. [\"ro\", \"soft\"]. Not validated - mount of the PVs will simply fail if one is invalid.", "items": { "type": "string" }, "type": "array" }, "parameters": { "additionalProperties": { "type": "string" }, "description": "Parameters holds the parameters for the provisioner that should create volumes of this storage class.", "type": "object" }, "provisioner": { "description": "Provisioner indicates the type of the provisioner.", "type": "string" }, "reclaimPolicy": { "description": "Dynamically provisioned PersistentVolumes of this storage class are created with this reclaimPolicy. Defaults to Delete.", "type": "string" }, "volumeBindingMode": { "description": "VolumeBindingMode indicates how PersistentVolumeClaims should be provisioned and bound. When unset, VolumeBindingImmediate is used. This field is only honored by servers that enable the VolumeScheduling feature.", "type": "string" } }, "required": [ "provisioner" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "storage.k8s.io", "kind": "StorageClass", "version": "v1beta1" } ] }, "io_k8s_api_storage_v1beta1_StorageClassList": { "description": "StorageClassList is a collection of storage classes.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "Items is the list of StorageClasses", "items": { "$ref": "#/definitions/io_k8s_api_storage_v1beta1_StorageClass" }, "type": "array" }, "kind": { "description": "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", "enum": [ "StorageClassList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "storage.k8s.io", "kind": "StorageClassList", "version": "v1beta1" } ] }, "io_k8s_api_storage_v1beta1_VolumeAttachment": { "description": "VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node.\n\nVolumeAttachment objects are non-namespaced.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "VolumeAttachment" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "description": "Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "spec": { "$ref": "#/definitions/io_k8s_api_storage_v1beta1_VolumeAttachmentSpec", "description": "Specification of the desired attach/detach volume behavior. Populated by the Kubernetes system." }, "status": { "$ref": "#/definitions/io_k8s_api_storage_v1beta1_VolumeAttachmentStatus", "description": "Status of the VolumeAttachment request. Populated by the entity completing the attach or detach operation, i.e. the external-attacher." } }, "required": [ "spec" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "storage.k8s.io", "kind": "VolumeAttachment", "version": "v1beta1" } ] }, "io_k8s_api_storage_v1beta1_VolumeAttachmentList": { "description": "VolumeAttachmentList is a collection of VolumeAttachment objects.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "Items is the list of VolumeAttachments", "items": { "$ref": "#/definitions/io_k8s_api_storage_v1beta1_VolumeAttachment" }, "type": "array" }, "kind": { "description": "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", "enum": [ "VolumeAttachmentList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "storage.k8s.io", "kind": "VolumeAttachmentList", "version": "v1beta1" } ] }, "io_k8s_api_storage_v1beta1_VolumeAttachmentSource": { "description": "VolumeAttachmentSource represents a volume that should be attached. Right now only PersistenVolumes can be attached via external attacher, in future we may allow also inline volumes in pods. Exactly one member can be set.", "properties": { "inlineVolumeSpec": { "$ref": "#/definitions/io_k8s_api_core_v1_PersistentVolumeSpec", "description": "inlineVolumeSpec contains all the information necessary to attach a persistent volume defined by a pod's inline VolumeSource. This field is populated only for the CSIMigration feature. It contains translated fields from a pod's inline VolumeSource to a PersistentVolumeSpec. This field is alpha-level and is only honored by servers that enabled the CSIMigration feature." }, "persistentVolumeName": { "description": "Name of the persistent volume to attach.", "type": "string" } }, "type": "object" }, "io_k8s_api_storage_v1beta1_VolumeAttachmentSpec": { "description": "VolumeAttachmentSpec is the specification of a VolumeAttachment request.", "properties": { "attacher": { "description": "Attacher indicates the name of the volume driver that MUST handle this request. This is the name returned by GetPluginName().", "type": "string" }, "nodeName": { "description": "The node that the volume should be attached to.", "type": "string" }, "source": { "$ref": "#/definitions/io_k8s_api_storage_v1beta1_VolumeAttachmentSource", "description": "Source represents the volume that should be attached." } }, "required": [ "attacher", "source", "nodeName" ], "type": "object" }, "io_k8s_api_storage_v1beta1_VolumeAttachmentStatus": { "description": "VolumeAttachmentStatus is the status of a VolumeAttachment request.", "properties": { "attachError": { "$ref": "#/definitions/io_k8s_api_storage_v1beta1_VolumeError", "description": "The last error encountered during attach operation, if any. This field must only be set by the entity completing the attach operation, i.e. the external-attacher." }, "attached": { "description": "Indicates the volume is successfully attached. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.", "type": "boolean" }, "attachmentMetadata": { "additionalProperties": { "type": "string" }, "description": "Upon successful attach, this field is populated with any information returned by the attach operation that must be passed into subsequent WaitForAttach or Mount calls. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.", "type": "object" }, "detachError": { "$ref": "#/definitions/io_k8s_api_storage_v1beta1_VolumeError", "description": "The last error encountered during detach operation, if any. This field must only be set by the entity completing the detach operation, i.e. the external-attacher." } }, "required": [ "attached" ], "type": "object" }, "io_k8s_api_storage_v1beta1_VolumeError": { "description": "VolumeError captures an error encountered during a volume operation.", "properties": { "message": { "description": "String detailing the error encountered during Attach or Detach operation. This string may be logged, so it should not contain sensitive information.", "type": "string" }, "time": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time the error was encountered." } }, "type": "object" }, "io_k8s_api_storage_v1beta1_VolumeNodeResources": { "description": "VolumeNodeResources is a set of resource limits for scheduling of volumes.", "properties": { "count": { "_format": "int32", "description": "Maximum number of unique volumes managed by the CSI driver that can be used on a node. A volume that is both attached and mounted on a node is considered to be used once, not twice. The same rule applies for a unique volume that is shared among multiple pods on the same node. If this field is nil, then the supported number of volumes on this node is unbounded.", "type": "integer" } }, "type": "object" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceColumnDefinition": { "description": "CustomResourceColumnDefinition specifies a column for server side printing.", "properties": { "description": { "description": "description is a human readable description of this column.", "type": "string" }, "format": { "description": "format is an optional OpenAPI type definition for this column. The 'name' format is applied to the primary identifier column to assist in clients identifying column is the resource name. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.", "type": "string" }, "jsonPath": { "description": "jsonPath is a simple JSON path (i.e. with array notation) which is evaluated against each custom resource to produce the value for this column.", "type": "string" }, "name": { "description": "name is a human readable name for the column.", "type": "string" }, "priority": { "_format": "int32", "description": "priority is an integer defining the relative importance of this column compared to others. Lower numbers are considered higher priority. Columns that may be omitted in limited space scenarios should be given a priority greater than 0.", "type": "integer" }, "type": { "description": "type is an OpenAPI type definition for this column. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.", "type": "string" } }, "required": [ "name", "type", "jsonPath" ], "type": "object" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceConversion": { "description": "CustomResourceConversion describes how to convert different versions of a CR.", "properties": { "strategy": { "description": "strategy specifies how custom resources are converted between versions. Allowed values are: - `None`: The converter only change the apiVersion and would not touch any other field in the custom resource. - `Webhook`: API Server will call to an external webhook to do the conversion. Additional information\n is needed for this option. This requires spec.preserveUnknownFields to be false, and spec.conversion.webhook to be set.", "type": "string" }, "webhook": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_WebhookConversion", "description": "webhook describes how to call the conversion webhook. Required when `strategy` is set to `Webhook`." } }, "required": [ "strategy" ], "type": "object" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition": { "description": "CustomResourceDefinition represents a resource that should be exposed on the API server. Its name MUST be in the format <.spec.name>.<.spec.group>.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "CustomResourceDefinition" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta" }, "spec": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec", "description": "spec describes how the user wants the resources to appear" }, "status": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionStatus", "description": "status indicates the actual state of the CustomResourceDefinition" } }, "required": [ "spec" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "apiextensions.k8s.io", "kind": "CustomResourceDefinition", "version": "v1" } ] }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionCondition": { "description": "CustomResourceDefinitionCondition contains details for the current condition of this pod.", "properties": { "lastTransitionTime": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "lastTransitionTime last time the condition transitioned from one status to another." }, "message": { "description": "message is a human-readable message indicating details about last transition.", "type": "string" }, "reason": { "description": "reason is a unique, one-word, CamelCase reason for the condition's last transition.", "type": "string" }, "status": { "description": "status is the status of the condition. Can be True, False, Unknown.", "type": "string" }, "type": { "description": "type is the type of the condition. Types include Established, NamesAccepted and Terminating.", "type": "string" } }, "required": [ "type", "status" ], "type": "object" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList": { "description": "CustomResourceDefinitionList is a list of CustomResourceDefinition objects.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "items list individual CustomResourceDefinition objects", "items": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition" }, "type": "array" }, "kind": { "description": "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", "enum": [ "CustomResourceDefinitionList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "apiextensions.k8s.io", "kind": "CustomResourceDefinitionList", "version": "v1" } ] }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionNames": { "description": "CustomResourceDefinitionNames indicates the names to serve this CustomResourceDefinition", "properties": { "categories": { "description": "categories is a list of grouped resources this custom resource belongs to (e.g. 'all'). This is published in API discovery documents, and used by clients to support invocations like `kubectl get all`.", "items": { "type": "string" }, "type": "array" }, "kind": { "description": "kind is the serialized kind of the resource. It is normally CamelCase and singular. Custom resource instances will use this value as the `kind` attribute in API calls.", "type": "string" }, "listKind": { "description": "listKind is the serialized kind of the list for this resource. Defaults to \"`kind`List\".", "type": "string" }, "plural": { "description": "plural is the plural name of the resource to serve. The custom resources are served under `/apis/<group>/<version>/.../<plural>`. Must match the name of the CustomResourceDefinition (in the form `<names.plural>.<group>`). Must be all lowercase.", "type": "string" }, "shortNames": { "description": "shortNames are short names for the resource, exposed in API discovery documents, and used by clients to support invocations like `kubectl get <shortname>`. It must be all lowercase.", "items": { "type": "string" }, "type": "array" }, "singular": { "description": "singular is the singular name of the resource. It must be all lowercase. Defaults to lowercased `kind`.", "type": "string" } }, "required": [ "plural", "kind" ], "type": "object" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec": { "description": "CustomResourceDefinitionSpec describes how a user wants their resource to appear", "properties": { "conversion": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceConversion", "description": "conversion defines conversion settings for the CRD." }, "group": { "description": "group is the API group of the defined custom resource. The custom resources are served under `/apis/<group>/...`. Must match the name of the CustomResourceDefinition (in the form `<names.plural>.<group>`).", "type": "string" }, "names": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionNames", "description": "names specify the resource and kind names for the custom resource." }, "preserveUnknownFields": { "description": "preserveUnknownFields indicates that object fields which are not specified in the OpenAPI schema should be preserved when persisting to storage. apiVersion, kind, metadata and known fields inside metadata are always preserved. This field is deprecated in favor of setting `x-preserve-unknown-fields` to true in `spec.versions[*].schema.openAPIV3Schema`. See https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions/#pruning-versus-preserving-unknown-fields for details.", "type": "boolean" }, "scope": { "description": "scope indicates whether the defined custom resource is cluster- or namespace-scoped. Allowed values are `Cluster` and `Namespaced`.", "type": "string" }, "versions": { "description": "versions is the list of all API versions of the defined custom resource. Version names are used to compute the order in which served versions are listed in API discovery. If the version string is \"kube-like\", it will sort above non \"kube-like\" version strings, which are ordered lexicographically. \"Kube-like\" versions start with a \"v\", then are followed by a number (the major version), then optionally the string \"alpha\" or \"beta\" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.", "items": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion" }, "type": "array" } }, "required": [ "group", "names", "scope", "versions" ], "type": "object" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionStatus": { "description": "CustomResourceDefinitionStatus indicates the state of the CustomResourceDefinition", "properties": { "acceptedNames": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionNames", "description": "acceptedNames are the names that are actually being used to serve discovery. They may be different than the names in spec." }, "conditions": { "description": "conditions indicate state for particular aspects of a CustomResourceDefinition", "items": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionCondition" }, "type": "array" }, "storedVersions": { "description": "storedVersions lists all versions of CustomResources that were ever persisted. Tracking these versions allows a migration path for stored versions in etcd. The field is mutable so a migration controller can finish a migration to another version (ensuring no old objects are left in storage), and then remove the rest of the versions from this list. Versions may not be removed from `spec.versions` while they exist in this list.", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion": { "description": "CustomResourceDefinitionVersion describes a version for CRD.", "properties": { "additionalPrinterColumns": { "description": "additionalPrinterColumns specifies additional columns returned in Table output. See https://kubernetes.io/docs/reference/using-api/api-concepts/#receiving-resources-as-tables for details. If no columns are specified, a single column displaying the age of the custom resource is used.", "items": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceColumnDefinition" }, "type": "array" }, "name": { "description": "name is the version name, e.g. “v1”, “v2beta1”, etc. The custom resources are served under this version at `/apis/<group>/<version>/...` if `served` is true.", "type": "string" }, "schema": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation", "description": "schema describes the schema used for validation, pruning, and defaulting of this version of the custom resource." }, "served": { "description": "served is a flag enabling/disabling this version from being served via REST APIs", "type": "boolean" }, "storage": { "description": "storage indicates this version should be used when persisting custom resources to storage. There must be exactly one version with storage=true.", "type": "boolean" }, "subresources": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceSubresources", "description": "subresources specify what subresources this version of the defined custom resource have." } }, "required": [ "name", "served", "storage" ], "type": "object" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceSubresourceScale": { "description": "CustomResourceSubresourceScale defines how to serve the scale subresource for CustomResources.", "properties": { "labelSelectorPath": { "description": "labelSelectorPath defines the JSON path inside of a custom resource that corresponds to Scale `status.selector`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.status` or `.spec`. Must be set to work with HorizontalPodAutoscaler. The field pointed by this JSON path must be a string field (not a complex selector struct) which contains a serialized label selector in string form. More info: https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions#scale-subresource If there is no value under the given path in the custom resource, the `status.selector` value in the `/scale` subresource will default to the empty string.", "type": "string" }, "specReplicasPath": { "description": "specReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale `spec.replicas`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.spec`. If there is no value under the given path in the custom resource, the `/scale` subresource will return an error on GET.", "type": "string" }, "statusReplicasPath": { "description": "statusReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale `status.replicas`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.status`. If there is no value under the given path in the custom resource, the `status.replicas` value in the `/scale` subresource will default to 0.", "type": "string" } }, "required": [ "specReplicasPath", "statusReplicasPath" ], "type": "object" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceSubresourceStatus": { "description": "CustomResourceSubresourceStatus defines how to serve the status subresource for CustomResources. Status is represented by the `.status` JSON path inside of a CustomResource. When set, * exposes a /status subresource for the custom resource * PUT requests to the /status subresource take a custom resource object, and ignore changes to anything except the status stanza * PUT/POST/PATCH requests to the custom resource ignore changes to the status stanza", "type": "object" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceSubresources": { "description": "CustomResourceSubresources defines the status and scale subresources for CustomResources.", "properties": { "scale": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceSubresourceScale", "description": "scale indicates the custom resource should serve a `/scale` subresource that returns an `autoscaling/v1` Scale object." }, "status": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceSubresourceStatus", "description": "status indicates the custom resource should serve a `/status` subresource. When enabled: 1. requests to the custom resource primary endpoint ignore changes to the `status` stanza of the object. 2. requests to the custom resource `/status` subresource ignore changes to anything other than the `status` stanza of the object." } }, "type": "object" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation": { "description": "CustomResourceValidation is a list of validation methods for CustomResources.", "properties": { "openAPIV3Schema": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps", "description": "openAPIV3Schema is the OpenAPI v3 schema to use for validation and pruning." } }, "type": "object" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_ExternalDocumentation": { "description": "ExternalDocumentation allows referencing an external resource for extended documentation.", "properties": { "description": { "type": "string" }, "url": { "type": "string" } }, "type": "object" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_JSON": { "description": "JSON represents any valid JSON value. These types are supported: bool, int64, float64, string, []interface{}, map[string]interface{} and nil." }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps": { "description": "JSONSchemaProps is a JSON-Schema following Specification Draft 4 (http://json-schema.org/).", "properties": { "$ref": { "type": "string" }, "$schema": { "type": "string" }, "additionalItems": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_JSONSchemaPropsOrBool" }, "additionalProperties": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_JSONSchemaPropsOrBool" }, "allOf": { "items": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps" }, "type": "array" }, "anyOf": { "items": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps" }, "type": "array" }, "default": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_JSON", "description": "default is a default value for undefined object fields. Defaulting is a beta feature under the CustomResourceDefaulting feature gate. Defaulting requires spec.preserveUnknownFields to be false." }, "definitions": { "additionalProperties": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps" }, "type": "object" }, "dependencies": { "additionalProperties": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_JSONSchemaPropsOrStringArray" }, "type": "object" }, "description": { "type": "string" }, "enum": { "items": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_JSON" }, "type": "array" }, "example": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_JSON" }, "exclusiveMaximum": { "type": "boolean" }, "exclusiveMinimum": { "type": "boolean" }, "externalDocs": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_ExternalDocumentation" }, "format": { "description": "format is an OpenAPI v3 format string. Unknown formats are ignored. The following formats are validated:\n\n- bsonobjectid: a bson object ID, i.e. a 24 characters hex string - uri: an URI as parsed by Golang net/url.ParseRequestURI - email: an email address as parsed by Golang net/mail.ParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 3.1 [RFC1034]. - ipv4: an IPv4 IP as parsed by Golang net.ParseIP - ipv6: an IPv6 IP as parsed by Golang net.ParseIP - cidr: a CIDR as parsed by Golang net.ParseCIDR - mac: a MAC address as parsed by Golang net.ParseMAC - uuid: an UUID that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid3: an UUID3 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?3[0-9a-f]{3}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid4: an UUID4 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?4[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - uuid5: an UUID5 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?5[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - isbn: an ISBN10 or ISBN13 number string like \"0321751043\" or \"978-0321751041\" - isbn10: an ISBN10 number string like \"0321751043\" - isbn13: an ISBN13 number string like \"978-0321751041\" - creditcard: a credit card number defined by the regex ^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\\d{3})\\d{11})$ with any non digit characters mixed in - ssn: a U.S. social security number following the regex ^\\d{3}[- ]?\\d{2}[- ]?\\d{4}$ - hexcolor: an hexadecimal color code like \"#FFFFFF: following the regex ^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$ - rgbcolor: an RGB color code like rgb like \"rgb(255,255,2559\" - byte: base64 encoded binary data - password: any kind of string - date: a date string like \"2006-01-02\" as defined by full-date in RFC3339 - duration: a duration string like \"22 ns\" as parsed by Golang time.ParseDuration or compatible with Scala duration format - datetime: a date time string like \"2014-12-15T19:30:20.000Z\" as defined by date-time in RFC3339.", "type": "string" }, "id": { "type": "string" }, "items": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_JSONSchemaPropsOrArray" }, "maxItems": { "_format": "int64", "type": "integer" }, "maxLength": { "_format": "int64", "type": "integer" }, "maxProperties": { "_format": "int64", "type": "integer" }, "maximum": { "format": "double", "type": "number" }, "minItems": { "_format": "int64", "type": "integer" }, "minLength": { "_format": "int64", "type": "integer" }, "minProperties": { "_format": "int64", "type": "integer" }, "minimum": { "format": "double", "type": "number" }, "multipleOf": { "format": "double", "type": "number" }, "not": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps" }, "nullable": { "type": "boolean" }, "oneOf": { "items": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps" }, "type": "array" }, "pattern": { "type": "string" }, "patternProperties": { "additionalProperties": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps" }, "type": "object" }, "properties": { "additionalProperties": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps" }, "type": "object" }, "required": { "items": { "type": "string" }, "type": "array" }, "title": { "type": "string" }, "type": { "type": "string" }, "uniqueItems": { "type": "boolean" }, "x-kubernetes-embedded-resource": { "description": "x-kubernetes-embedded-resource defines that the value is an embedded Kubernetes runtime.Object, with TypeMeta and ObjectMeta. The type must be object. It is allowed to further restrict the embedded object. kind, apiVersion and metadata are validated automatically. x-kubernetes-preserve-unknown-fields is allowed to be true, but does not have to be if the object is fully specified (up to kind, apiVersion, metadata).", "type": "boolean" }, "x-kubernetes-int-or-string": { "description": "x-kubernetes-int-or-string specifies that this value is either an integer or a string. If this is true, an empty type is allowed and type as child of anyOf is permitted if following one of the following patterns:\n\n1) anyOf:\n - type: integer\n - type: string\n2) allOf:\n - anyOf:\n - type: integer\n - type: string\n - ... zero or more", "type": "boolean" }, "x-kubernetes-list-map-keys": { "description": "x-kubernetes-list-map-keys annotates an array with the x-kubernetes-list-type `map` by specifying the keys used as the index of the map.\n\nThis tag MUST only be used on lists that have the \"x-kubernetes-list-type\" extension set to \"map\". Also, the values specified for this attribute must be a scalar typed field of the child structure (no nesting is supported).\n\nThe properties specified must either be required or have a default value, to ensure those properties are present for all list items.", "items": { "type": "string" }, "type": "array" }, "x-kubernetes-list-type": { "description": "x-kubernetes-list-type annotates an array to further describe its topology. This extension must only be used on lists and may have 3 possible values:\n\n1) `atomic`: the list is treated as a single entity, like a scalar.\n Atomic lists will be entirely replaced when updated. This extension\n may be used on any type of list (struct, scalar, ...).\n2) `set`:\n Sets are lists that must not have multiple items with the same value. Each\n value must be a scalar, an object with x-kubernetes-map-type `atomic` or an\n array with x-kubernetes-list-type `atomic`.\n3) `map`:\n These lists are like maps in that their elements have a non-index key\n used to identify them. Order is preserved upon merge. The map tag\n must only be used on a list with elements of type object.\nDefaults to atomic for arrays.", "type": "string" }, "x-kubernetes-map-type": { "description": "x-kubernetes-map-type annotates an object to further describe its topology. This extension must only be used when type is object and may have 2 possible values:\n\n1) `granular`:\n These maps are actual maps (key-value pairs) and each fields are independent\n from each other (they can each be manipulated by separate actors). This is\n the default behaviour for all maps.\n2) `atomic`: the list is treated as a single entity, like a scalar.\n Atomic maps will be entirely replaced when updated.", "type": "string" }, "x-kubernetes-preserve-unknown-fields": { "description": "x-kubernetes-preserve-unknown-fields stops the API server decoding step from pruning fields which are not specified in the validation schema. This affects fields recursively, but switches back to normal pruning behaviour if nested properties or additionalProperties are specified in the schema. This can either be true or undefined. False is forbidden.", "type": "boolean" } }, "type": "object" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_JSONSchemaPropsOrArray": { "description": "JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps or an array of JSONSchemaProps. Mainly here for serialization purposes." }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_JSONSchemaPropsOrBool": { "description": "JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value. Defaults to true for the boolean property." }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_JSONSchemaPropsOrStringArray": { "description": "JSONSchemaPropsOrStringArray represents a JSONSchemaProps or a string array." }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_ServiceReference": { "description": "ServiceReference holds a reference to Service.legacy.k8s.io", "properties": { "name": { "description": "name is the name of the service. Required", "type": "string" }, "namespace": { "description": "namespace is the namespace of the service. Required", "type": "string" }, "path": { "description": "path is an optional URL path at which the webhook will be contacted.", "type": "string" }, "port": { "_format": "int32", "description": "port is an optional service port at which the webhook will be contacted. `port` should be a valid port number (1-65535, inclusive). Defaults to 443 for backward compatibility.", "type": "integer" } }, "required": [ "namespace", "name" ], "type": "object" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_WebhookClientConfig": { "description": "WebhookClientConfig contains the information to make a TLS connection with the webhook.", "properties": { "caBundle": { "_format": "byte", "description": "caBundle is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used.", "type": "string" }, "service": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_ServiceReference", "description": "service is a reference to the service for this webhook. Either service or url must be specified.\n\nIf the webhook is running within the cluster, then you should use `service`." }, "url": { "description": "url gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified.\n\nThe `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address.\n\nPlease note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.\n\nThe scheme must be \"https\"; the URL must begin with \"https://\".\n\nA path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier.\n\nAttempting to use a user or basic auth e.g. \"user:password@\" is not allowed. Fragments (\"#...\") and query parameters (\"?...\") are not allowed, either.", "type": "string" } }, "type": "object" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_WebhookConversion": { "description": "WebhookConversion describes how to call a conversion webhook", "properties": { "clientConfig": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_WebhookClientConfig", "description": "clientConfig is the instructions for how to call the webhook if strategy is `Webhook`." }, "conversionReviewVersions": { "description": "conversionReviewVersions is an ordered list of preferred `ConversionReview` versions the Webhook expects. The API server will use the first version in the list which it supports. If none of the versions specified in this list are supported by API server, conversion will fail for the custom resource. If a persisted Webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail.", "items": { "type": "string" }, "type": "array" } }, "required": [ "conversionReviewVersions" ], "type": "object" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceColumnDefinition": { "description": "CustomResourceColumnDefinition specifies a column for server side printing.", "properties": { "JSONPath": { "description": "JSONPath is a simple JSON path (i.e. with array notation) which is evaluated against each custom resource to produce the value for this column.", "type": "string" }, "description": { "description": "description is a human readable description of this column.", "type": "string" }, "format": { "description": "format is an optional OpenAPI type definition for this column. The 'name' format is applied to the primary identifier column to assist in clients identifying column is the resource name. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.", "type": "string" }, "name": { "description": "name is a human readable name for the column.", "type": "string" }, "priority": { "_format": "int32", "description": "priority is an integer defining the relative importance of this column compared to others. Lower numbers are considered higher priority. Columns that may be omitted in limited space scenarios should be given a priority greater than 0.", "type": "integer" }, "type": { "description": "type is an OpenAPI type definition for this column. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.", "type": "string" } }, "required": [ "name", "type", "JSONPath" ], "type": "object" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceConversion": { "description": "CustomResourceConversion describes how to convert different versions of a CR.", "properties": { "conversionReviewVersions": { "description": "conversionReviewVersions is an ordered list of preferred `ConversionReview` versions the Webhook expects. The API server will use the first version in the list which it supports. If none of the versions specified in this list are supported by API server, conversion will fail for the custom resource. If a persisted Webhook configuration specifies allowed versions and does not include any versions known to the API Server, calls to the webhook will fail. Defaults to `[\"v1beta1\"]`.", "items": { "type": "string" }, "type": "array" }, "strategy": { "description": "strategy specifies how custom resources are converted between versions. Allowed values are: - `None`: The converter only change the apiVersion and would not touch any other field in the custom resource. - `Webhook`: API Server will call to an external webhook to do the conversion. Additional information\n is needed for this option. This requires spec.preserveUnknownFields to be false, and spec.conversion.webhookClientConfig to be set.", "type": "string" }, "webhookClientConfig": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_WebhookClientConfig", "description": "webhookClientConfig is the instructions for how to call the webhook if strategy is `Webhook`. Required when `strategy` is set to `Webhook`." } }, "required": [ "strategy" ], "type": "object" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinition": { "description": "CustomResourceDefinition represents a resource that should be exposed on the API server. Its name MUST be in the format <.spec.name>.<.spec.group>. Deprecated in v1.16, planned for removal in v1.19. Use apiextensions.k8s.io/v1 CustomResourceDefinition instead.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "CustomResourceDefinition" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta" }, "spec": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinitionSpec", "description": "spec describes how the user wants the resources to appear" }, "status": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinitionStatus", "description": "status indicates the actual state of the CustomResourceDefinition" } }, "required": [ "spec" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "apiextensions.k8s.io", "kind": "CustomResourceDefinition", "version": "v1beta1" } ] }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinitionCondition": { "description": "CustomResourceDefinitionCondition contains details for the current condition of this pod.", "properties": { "lastTransitionTime": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "lastTransitionTime last time the condition transitioned from one status to another." }, "message": { "description": "message is a human-readable message indicating details about last transition.", "type": "string" }, "reason": { "description": "reason is a unique, one-word, CamelCase reason for the condition's last transition.", "type": "string" }, "status": { "description": "status is the status of the condition. Can be True, False, Unknown.", "type": "string" }, "type": { "description": "type is the type of the condition. Types include Established, NamesAccepted and Terminating.", "type": "string" } }, "required": [ "type", "status" ], "type": "object" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinitionList": { "description": "CustomResourceDefinitionList is a list of CustomResourceDefinition objects.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "description": "items list individual CustomResourceDefinition objects", "items": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinition" }, "type": "array" }, "kind": { "description": "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", "enum": [ "CustomResourceDefinitionList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "apiextensions.k8s.io", "kind": "CustomResourceDefinitionList", "version": "v1beta1" } ] }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinitionNames": { "description": "CustomResourceDefinitionNames indicates the names to serve this CustomResourceDefinition", "properties": { "categories": { "description": "categories is a list of grouped resources this custom resource belongs to (e.g. 'all'). This is published in API discovery documents, and used by clients to support invocations like `kubectl get all`.", "items": { "type": "string" }, "type": "array" }, "kind": { "description": "kind is the serialized kind of the resource. It is normally CamelCase and singular. Custom resource instances will use this value as the `kind` attribute in API calls.", "type": "string" }, "listKind": { "description": "listKind is the serialized kind of the list for this resource. Defaults to \"`kind`List\".", "type": "string" }, "plural": { "description": "plural is the plural name of the resource to serve. The custom resources are served under `/apis/<group>/<version>/.../<plural>`. Must match the name of the CustomResourceDefinition (in the form `<names.plural>.<group>`). Must be all lowercase.", "type": "string" }, "shortNames": { "description": "shortNames are short names for the resource, exposed in API discovery documents, and used by clients to support invocations like `kubectl get <shortname>`. It must be all lowercase.", "items": { "type": "string" }, "type": "array" }, "singular": { "description": "singular is the singular name of the resource. It must be all lowercase. Defaults to lowercased `kind`.", "type": "string" } }, "required": [ "plural", "kind" ], "type": "object" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinitionSpec": { "description": "CustomResourceDefinitionSpec describes how a user wants their resource to appear", "properties": { "additionalPrinterColumns": { "description": "additionalPrinterColumns specifies additional columns returned in Table output. See https://kubernetes.io/docs/reference/using-api/api-concepts/#receiving-resources-as-tables for details. If present, this field configures columns for all versions. Top-level and per-version columns are mutually exclusive. If no top-level or per-version columns are specified, a single column displaying the age of the custom resource is used.", "items": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceColumnDefinition" }, "type": "array" }, "conversion": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceConversion", "description": "conversion defines conversion settings for the CRD." }, "group": { "description": "group is the API group of the defined custom resource. The custom resources are served under `/apis/<group>/...`. Must match the name of the CustomResourceDefinition (in the form `<names.plural>.<group>`).", "type": "string" }, "names": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinitionNames", "description": "names specify the resource and kind names for the custom resource." }, "preserveUnknownFields": { "description": "preserveUnknownFields indicates that object fields which are not specified in the OpenAPI schema should be preserved when persisting to storage. apiVersion, kind, metadata and known fields inside metadata are always preserved. If false, schemas must be defined for all versions. Defaults to true in v1beta for backwards compatibility. Deprecated: will be required to be false in v1. Preservation of unknown fields can be specified in the validation schema using the `x-kubernetes-preserve-unknown-fields: true` extension. See https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions/#pruning-versus-preserving-unknown-fields for details.", "type": "boolean" }, "scope": { "description": "scope indicates whether the defined custom resource is cluster- or namespace-scoped. Allowed values are `Cluster` and `Namespaced`. Default is `Namespaced`.", "type": "string" }, "subresources": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceSubresources", "description": "subresources specify what subresources the defined custom resource has. If present, this field configures subresources for all versions. Top-level and per-version subresources are mutually exclusive." }, "validation": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceValidation", "description": "validation describes the schema used for validation and pruning of the custom resource. If present, this validation schema is used to validate all versions. Top-level and per-version schemas are mutually exclusive." }, "version": { "description": "version is the API version of the defined custom resource. The custom resources are served under `/apis/<group>/<version>/...`. Must match the name of the first item in the `versions` list if `version` and `versions` are both specified. Optional if `versions` is specified. Deprecated: use `versions` instead.", "type": "string" }, "versions": { "description": "versions is the list of all API versions of the defined custom resource. Optional if `version` is specified. The name of the first item in the `versions` list must match the `version` field if `version` and `versions` are both specified. Version names are used to compute the order in which served versions are listed in API discovery. If the version string is \"kube-like\", it will sort above non \"kube-like\" version strings, which are ordered lexicographically. \"Kube-like\" versions start with a \"v\", then are followed by a number (the major version), then optionally the string \"alpha\" or \"beta\" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.", "items": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinitionVersion" }, "type": "array" } }, "required": [ "group", "names", "scope" ], "type": "object" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinitionStatus": { "description": "CustomResourceDefinitionStatus indicates the state of the CustomResourceDefinition", "properties": { "acceptedNames": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinitionNames", "description": "acceptedNames are the names that are actually being used to serve discovery. They may be different than the names in spec." }, "conditions": { "description": "conditions indicate state for particular aspects of a CustomResourceDefinition", "items": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinitionCondition" }, "type": "array" }, "storedVersions": { "description": "storedVersions lists all versions of CustomResources that were ever persisted. Tracking these versions allows a migration path for stored versions in etcd. The field is mutable so a migration controller can finish a migration to another version (ensuring no old objects are left in storage), and then remove the rest of the versions from this list. Versions may not be removed from `spec.versions` while they exist in this list.", "items": { "type": "string" }, "type": "array" } }, "type": "object" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinitionVersion": { "description": "CustomResourceDefinitionVersion describes a version for CRD.", "properties": { "additionalPrinterColumns": { "description": "additionalPrinterColumns specifies additional columns returned in Table output. See https://kubernetes.io/docs/reference/using-api/api-concepts/#receiving-resources-as-tables for details. Top-level and per-version columns are mutually exclusive. Per-version columns must not all be set to identical values (top-level columns should be used instead). If no top-level or per-version columns are specified, a single column displaying the age of the custom resource is used.", "items": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceColumnDefinition" }, "type": "array" }, "name": { "description": "name is the version name, e.g. “v1”, “v2beta1”, etc. The custom resources are served under this version at `/apis/<group>/<version>/...` if `served` is true.", "type": "string" }, "schema": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceValidation", "description": "schema describes the schema used for validation and pruning of this version of the custom resource. Top-level and per-version schemas are mutually exclusive. Per-version schemas must not all be set to identical values (top-level validation schema should be used instead)." }, "served": { "description": "served is a flag enabling/disabling this version from being served via REST APIs", "type": "boolean" }, "storage": { "description": "storage indicates this version should be used when persisting custom resources to storage. There must be exactly one version with storage=true.", "type": "boolean" }, "subresources": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceSubresources", "description": "subresources specify what subresources this version of the defined custom resource have. Top-level and per-version subresources are mutually exclusive. Per-version subresources must not all be set to identical values (top-level subresources should be used instead)." } }, "required": [ "name", "served", "storage" ], "type": "object" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceSubresourceScale": { "description": "CustomResourceSubresourceScale defines how to serve the scale subresource for CustomResources.", "properties": { "labelSelectorPath": { "description": "labelSelectorPath defines the JSON path inside of a custom resource that corresponds to Scale `status.selector`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.status` or `.spec`. Must be set to work with HorizontalPodAutoscaler. The field pointed by this JSON path must be a string field (not a complex selector struct) which contains a serialized label selector in string form. More info: https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions#scale-subresource If there is no value under the given path in the custom resource, the `status.selector` value in the `/scale` subresource will default to the empty string.", "type": "string" }, "specReplicasPath": { "description": "specReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale `spec.replicas`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.spec`. If there is no value under the given path in the custom resource, the `/scale` subresource will return an error on GET.", "type": "string" }, "statusReplicasPath": { "description": "statusReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale `status.replicas`. Only JSON paths without the array notation are allowed. Must be a JSON Path under `.status`. If there is no value under the given path in the custom resource, the `status.replicas` value in the `/scale` subresource will default to 0.", "type": "string" } }, "required": [ "specReplicasPath", "statusReplicasPath" ], "type": "object" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceSubresourceStatus": { "description": "CustomResourceSubresourceStatus defines how to serve the status subresource for CustomResources. Status is represented by the `.status` JSON path inside of a CustomResource. When set, * exposes a /status subresource for the custom resource * PUT requests to the /status subresource take a custom resource object, and ignore changes to anything except the status stanza * PUT/POST/PATCH requests to the custom resource ignore changes to the status stanza", "type": "object" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceSubresources": { "description": "CustomResourceSubresources defines the status and scale subresources for CustomResources.", "properties": { "scale": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceSubresourceScale", "description": "scale indicates the custom resource should serve a `/scale` subresource that returns an `autoscaling/v1` Scale object." }, "status": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceSubresourceStatus", "description": "status indicates the custom resource should serve a `/status` subresource. When enabled: 1. requests to the custom resource primary endpoint ignore changes to the `status` stanza of the object. 2. requests to the custom resource `/status` subresource ignore changes to anything other than the `status` stanza of the object." } }, "type": "object" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceValidation": { "description": "CustomResourceValidation is a list of validation methods for CustomResources.", "properties": { "openAPIV3Schema": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps", "description": "openAPIV3Schema is the OpenAPI v3 schema to use for validation and pruning." } }, "type": "object" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_ExternalDocumentation": { "description": "ExternalDocumentation allows referencing an external resource for extended documentation.", "properties": { "description": { "type": "string" }, "url": { "type": "string" } }, "type": "object" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSON": { "description": "JSON represents any valid JSON value. These types are supported: bool, int64, float64, string, []interface{}, map[string]interface{} and nil." }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps": { "description": "JSONSchemaProps is a JSON-Schema following Specification Draft 4 (http://json-schema.org/).", "properties": { "$ref": { "type": "string" }, "$schema": { "type": "string" }, "additionalItems": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaPropsOrBool" }, "additionalProperties": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaPropsOrBool" }, "allOf": { "items": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps" }, "type": "array" }, "anyOf": { "items": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps" }, "type": "array" }, "default": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSON", "description": "default is a default value for undefined object fields. Defaulting is a beta feature under the CustomResourceDefaulting feature gate. CustomResourceDefinitions with defaults must be created using the v1 (or newer) CustomResourceDefinition API." }, "definitions": { "additionalProperties": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps" }, "type": "object" }, "dependencies": { "additionalProperties": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaPropsOrStringArray" }, "type": "object" }, "description": { "type": "string" }, "enum": { "items": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSON" }, "type": "array" }, "example": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSON" }, "exclusiveMaximum": { "type": "boolean" }, "exclusiveMinimum": { "type": "boolean" }, "externalDocs": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_ExternalDocumentation" }, "format": { "description": "format is an OpenAPI v3 format string. Unknown formats are ignored. The following formats are validated:\n\n- bsonobjectid: a bson object ID, i.e. a 24 characters hex string - uri: an URI as parsed by Golang net/url.ParseRequestURI - email: an email address as parsed by Golang net/mail.ParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 3.1 [RFC1034]. - ipv4: an IPv4 IP as parsed by Golang net.ParseIP - ipv6: an IPv6 IP as parsed by Golang net.ParseIP - cidr: a CIDR as parsed by Golang net.ParseCIDR - mac: a MAC address as parsed by Golang net.ParseMAC - uuid: an UUID that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid3: an UUID3 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?3[0-9a-f]{3}-?[0-9a-f]{4}-?[0-9a-f]{12}$ - uuid4: an UUID4 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?4[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - uuid5: an UUID5 that allows uppercase defined by the regex (?i)^[0-9a-f]{8}-?[0-9a-f]{4}-?5[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12}$ - isbn: an ISBN10 or ISBN13 number string like \"0321751043\" or \"978-0321751041\" - isbn10: an ISBN10 number string like \"0321751043\" - isbn13: an ISBN13 number string like \"978-0321751041\" - creditcard: a credit card number defined by the regex ^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\\d{3})\\d{11})$ with any non digit characters mixed in - ssn: a U.S. social security number following the regex ^\\d{3}[- ]?\\d{2}[- ]?\\d{4}$ - hexcolor: an hexadecimal color code like \"#FFFFFF: following the regex ^#?([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$ - rgbcolor: an RGB color code like rgb like \"rgb(255,255,2559\" - byte: base64 encoded binary data - password: any kind of string - date: a date string like \"2006-01-02\" as defined by full-date in RFC3339 - duration: a duration string like \"22 ns\" as parsed by Golang time.ParseDuration or compatible with Scala duration format - datetime: a date time string like \"2014-12-15T19:30:20.000Z\" as defined by date-time in RFC3339.", "type": "string" }, "id": { "type": "string" }, "items": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaPropsOrArray" }, "maxItems": { "_format": "int64", "type": "integer" }, "maxLength": { "_format": "int64", "type": "integer" }, "maxProperties": { "_format": "int64", "type": "integer" }, "maximum": { "format": "double", "type": "number" }, "minItems": { "_format": "int64", "type": "integer" }, "minLength": { "_format": "int64", "type": "integer" }, "minProperties": { "_format": "int64", "type": "integer" }, "minimum": { "format": "double", "type": "number" }, "multipleOf": { "format": "double", "type": "number" }, "not": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps" }, "nullable": { "type": "boolean" }, "oneOf": { "items": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps" }, "type": "array" }, "pattern": { "type": "string" }, "patternProperties": { "additionalProperties": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps" }, "type": "object" }, "properties": { "additionalProperties": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps" }, "type": "object" }, "required": { "items": { "type": "string" }, "type": "array" }, "title": { "type": "string" }, "type": { "type": "string" }, "uniqueItems": { "type": "boolean" }, "x-kubernetes-embedded-resource": { "description": "x-kubernetes-embedded-resource defines that the value is an embedded Kubernetes runtime.Object, with TypeMeta and ObjectMeta. The type must be object. It is allowed to further restrict the embedded object. kind, apiVersion and metadata are validated automatically. x-kubernetes-preserve-unknown-fields is allowed to be true, but does not have to be if the object is fully specified (up to kind, apiVersion, metadata).", "type": "boolean" }, "x-kubernetes-int-or-string": { "description": "x-kubernetes-int-or-string specifies that this value is either an integer or a string. If this is true, an empty type is allowed and type as child of anyOf is permitted if following one of the following patterns:\n\n1) anyOf:\n - type: integer\n - type: string\n2) allOf:\n - anyOf:\n - type: integer\n - type: string\n - ... zero or more", "type": "boolean" }, "x-kubernetes-list-map-keys": { "description": "x-kubernetes-list-map-keys annotates an array with the x-kubernetes-list-type `map` by specifying the keys used as the index of the map.\n\nThis tag MUST only be used on lists that have the \"x-kubernetes-list-type\" extension set to \"map\". Also, the values specified for this attribute must be a scalar typed field of the child structure (no nesting is supported).\n\nThe properties specified must either be required or have a default value, to ensure those properties are present for all list items.", "items": { "type": "string" }, "type": "array" }, "x-kubernetes-list-type": { "description": "x-kubernetes-list-type annotates an array to further describe its topology. This extension must only be used on lists and may have 3 possible values:\n\n1) `atomic`: the list is treated as a single entity, like a scalar.\n Atomic lists will be entirely replaced when updated. This extension\n may be used on any type of list (struct, scalar, ...).\n2) `set`:\n Sets are lists that must not have multiple items with the same value. Each\n value must be a scalar, an object with x-kubernetes-map-type `atomic` or an\n array with x-kubernetes-list-type `atomic`.\n3) `map`:\n These lists are like maps in that their elements have a non-index key\n used to identify them. Order is preserved upon merge. The map tag\n must only be used on a list with elements of type object.\nDefaults to atomic for arrays.", "type": "string" }, "x-kubernetes-map-type": { "description": "x-kubernetes-map-type annotates an object to further describe its topology. This extension must only be used when type is object and may have 2 possible values:\n\n1) `granular`:\n These maps are actual maps (key-value pairs) and each fields are independent\n from each other (they can each be manipulated by separate actors). This is\n the default behaviour for all maps.\n2) `atomic`: the list is treated as a single entity, like a scalar.\n Atomic maps will be entirely replaced when updated.", "type": "string" }, "x-kubernetes-preserve-unknown-fields": { "description": "x-kubernetes-preserve-unknown-fields stops the API server decoding step from pruning fields which are not specified in the validation schema. This affects fields recursively, but switches back to normal pruning behaviour if nested properties or additionalProperties are specified in the schema. This can either be true or undefined. False is forbidden.", "type": "boolean" } }, "type": "object" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaPropsOrArray": { "description": "JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps or an array of JSONSchemaProps. Mainly here for serialization purposes." }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaPropsOrBool": { "description": "JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value. Defaults to true for the boolean property." }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaPropsOrStringArray": { "description": "JSONSchemaPropsOrStringArray represents a JSONSchemaProps or a string array." }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_ServiceReference": { "description": "ServiceReference holds a reference to Service.legacy.k8s.io", "properties": { "name": { "description": "name is the name of the service. Required", "type": "string" }, "namespace": { "description": "namespace is the namespace of the service. Required", "type": "string" }, "path": { "description": "path is an optional URL path at which the webhook will be contacted.", "type": "string" }, "port": { "_format": "int32", "description": "port is an optional service port at which the webhook will be contacted. `port` should be a valid port number (1-65535, inclusive). Defaults to 443 for backward compatibility.", "type": "integer" } }, "required": [ "namespace", "name" ], "type": "object" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_WebhookClientConfig": { "description": "WebhookClientConfig contains the information to make a TLS connection with the webhook.", "properties": { "caBundle": { "_format": "byte", "description": "caBundle is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used.", "type": "string" }, "service": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_ServiceReference", "description": "service is a reference to the service for this webhook. Either service or url must be specified.\n\nIf the webhook is running within the cluster, then you should use `service`." }, "url": { "description": "url gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified.\n\nThe `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address.\n\nPlease note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster.\n\nThe scheme must be \"https\"; the URL must begin with \"https://\".\n\nA path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier.\n\nAttempting to use a user or basic auth e.g. \"user:password@\" is not allowed. Fragments (\"#...\") and query parameters (\"?...\") are not allowed, either.", "type": "string" } }, "type": "object" }, "io_k8s_apimachinery_pkg_api_resource_Quantity": { "oneOf": [ { "type": "string" }, { "type": "number" } ] }, "io_k8s_apimachinery_pkg_apis_meta_v1_APIGroup": { "description": "APIGroup contains the name, the supported versions, and the preferred version of a group.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "APIGroup" ], "type": "string" }, "name": { "description": "name is the name of the group.", "type": "string" }, "preferredVersion": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_GroupVersionForDiscovery", "description": "preferredVersion is the version preferred by the API server, which probably is the storage version." }, "serverAddressByClientCIDRs": { "description": "a map of client CIDR to server address that is serving this group. This is to help clients reach servers in the most network-efficient way possible. Clients can use the appropriate server address as per the CIDR that they match. In case of multiple matches, clients should use the longest matching CIDR. The server returns only those CIDRs that it thinks that the client can match. For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP. Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.", "items": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ServerAddressByClientCIDR" }, "type": "array" }, "versions": { "description": "versions are the versions supported in this group.", "items": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_GroupVersionForDiscovery" }, "type": "array" } }, "required": [ "name", "versions" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "APIGroup", "version": "v1" } ] }, "io_k8s_apimachinery_pkg_apis_meta_v1_APIGroupList": { "description": "APIGroupList is a list of APIGroup, to allow clients to discover the API at /apis.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "groups": { "description": "groups is a list of APIGroup.", "items": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_APIGroup" }, "type": "array" }, "kind": { "description": "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", "enum": [ "APIGroupList" ], "type": "string" } }, "required": [ "groups" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "APIGroupList", "version": "v1" } ] }, "io_k8s_apimachinery_pkg_apis_meta_v1_APIResource": { "description": "APIResource specifies the name of a resource and whether it is namespaced.", "properties": { "categories": { "description": "categories is a list of the grouped resources this resource belongs to (e.g. 'all')", "items": { "type": "string" }, "type": "array" }, "group": { "description": "group is the preferred group of the resource. Empty implies the group of the containing resource list. For subresources, this may have a different value, for example: Scale\".", "type": "string" }, "kind": { "description": "kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')", "type": "string" }, "name": { "description": "name is the plural name of the resource.", "type": "string" }, "namespaced": { "description": "namespaced indicates if a resource is namespaced or not.", "type": "boolean" }, "shortNames": { "description": "shortNames is a list of suggested short names of the resource.", "items": { "type": "string" }, "type": "array" }, "singularName": { "description": "singularName is the singular name of the resource. This allows clients to handle plural and singular opaquely. The singularName is more correct for reporting status on a single item and both singular and plural are allowed from the kubectl CLI interface.", "type": "string" }, "storageVersionHash": { "description": "The hash value of the storage version, the version this resource is converted to when written to the data store. Value must be treated as opaque by clients. Only equality comparison on the value is valid. This is an alpha feature and may change or be removed in the future. The field is populated by the apiserver only if the StorageVersionHash feature gate is enabled. This field will remain optional even if it graduates.", "type": "string" }, "verbs": { "description": "verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy)", "items": { "type": "string" }, "type": "array" }, "version": { "description": "version is the preferred version of the resource. Empty implies the version of the containing resource list For subresources, this may have a different value, for example: v1 (while inside a v1beta1 version of the core resource's group)\".", "type": "string" } }, "required": [ "name", "singularName", "namespaced", "kind", "verbs" ], "type": "object" }, "io_k8s_apimachinery_pkg_apis_meta_v1_APIResourceList": { "description": "APIResourceList is a list of APIResource, it is used to expose the name of the resources supported in a specific group and version, and if the resource is namespaced.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "groupVersion": { "description": "groupVersion is the group and version this APIResourceList is for.", "type": "string" }, "kind": { "description": "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", "enum": [ "APIResourceList" ], "type": "string" }, "resources": { "description": "resources contains the name of the resources and if they are namespaced.", "items": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_APIResource" }, "type": "array" } }, "required": [ "groupVersion", "resources" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "APIResourceList", "version": "v1" } ] }, "io_k8s_apimachinery_pkg_apis_meta_v1_APIVersions": { "description": "APIVersions lists the versions that are available, to allow clients to discover the API at /api, which is the root path of the legacy v1 API.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "APIVersions" ], "type": "string" }, "serverAddressByClientCIDRs": { "description": "a map of client CIDR to server address that is serving this group. This is to help clients reach servers in the most network-efficient way possible. Clients can use the appropriate server address as per the CIDR that they match. In case of multiple matches, clients should use the longest matching CIDR. The server returns only those CIDRs that it thinks that the client can match. For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP. Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.", "items": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ServerAddressByClientCIDR" }, "type": "array" }, "versions": { "description": "versions are the api versions that are available.", "items": { "type": "string" }, "type": "array" } }, "required": [ "versions", "serverAddressByClientCIDRs" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "APIVersions", "version": "v1" } ] }, "io_k8s_apimachinery_pkg_apis_meta_v1_DeleteOptions": { "description": "DeleteOptions may be provided when deleting an API object.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "dryRun": { "description": "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", "items": { "type": "string" }, "type": "array" }, "gracePeriodSeconds": { "_format": "int64", "description": "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.", "type": "integer" }, "kind": { "description": "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", "enum": [ "DeleteOptions" ], "type": "string" }, "orphanDependents": { "description": "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.", "type": "boolean" }, "preconditions": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Preconditions", "description": "Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned." }, "propagationPolicy": { "description": "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.", "type": "string" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "DeleteOptions", "version": "v1" }, { "group": "admission.k8s.io", "kind": "DeleteOptions", "version": "v1" }, { "group": "admission.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "admissionregistration.k8s.io", "kind": "DeleteOptions", "version": "v1" }, { "group": "admissionregistration.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "apiextensions.k8s.io", "kind": "DeleteOptions", "version": "v1" }, { "group": "apiextensions.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "apiregistration.k8s.io", "kind": "DeleteOptions", "version": "v1" }, { "group": "apiregistration.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "apps", "kind": "DeleteOptions", "version": "v1" }, { "group": "apps", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "apps", "kind": "DeleteOptions", "version": "v1beta2" }, { "group": "auditregistration.k8s.io", "kind": "DeleteOptions", "version": "v1alpha1" }, { "group": "authentication.k8s.io", "kind": "DeleteOptions", "version": "v1" }, { "group": "authentication.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "authorization.k8s.io", "kind": "DeleteOptions", "version": "v1" }, { "group": "authorization.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "autoscaling", "kind": "DeleteOptions", "version": "v1" }, { "group": "autoscaling", "kind": "DeleteOptions", "version": "v2beta1" }, { "group": "autoscaling", "kind": "DeleteOptions", "version": "v2beta2" }, { "group": "batch", "kind": "DeleteOptions", "version": "v1" }, { "group": "batch", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "batch", "kind": "DeleteOptions", "version": "v2alpha1" }, { "group": "certificates.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "coordination.k8s.io", "kind": "DeleteOptions", "version": "v1" }, { "group": "coordination.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "discovery.k8s.io", "kind": "DeleteOptions", "version": "v1alpha1" }, { "group": "discovery.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "events.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "extensions", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "flowcontrol.apiserver.k8s.io", "kind": "DeleteOptions", "version": "v1alpha1" }, { "group": "imagepolicy.k8s.io", "kind": "DeleteOptions", "version": "v1alpha1" }, { "group": "networking.k8s.io", "kind": "DeleteOptions", "version": "v1" }, { "group": "networking.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "node.k8s.io", "kind": "DeleteOptions", "version": "v1alpha1" }, { "group": "node.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "policy", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "rbac.authorization.k8s.io", "kind": "DeleteOptions", "version": "v1" }, { "group": "rbac.authorization.k8s.io", "kind": "DeleteOptions", "version": "v1alpha1" }, { "group": "rbac.authorization.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "scheduling.k8s.io", "kind": "DeleteOptions", "version": "v1" }, { "group": "scheduling.k8s.io", "kind": "DeleteOptions", "version": "v1alpha1" }, { "group": "scheduling.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" }, { "group": "settings.k8s.io", "kind": "DeleteOptions", "version": "v1alpha1" }, { "group": "storage.k8s.io", "kind": "DeleteOptions", "version": "v1" }, { "group": "storage.k8s.io", "kind": "DeleteOptions", "version": "v1alpha1" }, { "group": "storage.k8s.io", "kind": "DeleteOptions", "version": "v1beta1" } ] }, "io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1": { "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff", "type": "object" }, "io_k8s_apimachinery_pkg_apis_meta_v1_GroupVersionForDiscovery": { "description": "GroupVersion contains the \"group/version\" and \"version\" string of a version. It is made a struct to keep extensibility.", "properties": { "groupVersion": { "description": "groupVersion specifies the API group and version in the form \"group/version\"", "type": "string" }, "version": { "description": "version specifies the version in the form of \"version\". This is to save the clients the trouble of splitting the GroupVersion.", "type": "string" } }, "required": [ "groupVersion", "version" ], "type": "object" }, "io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector": { "description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.", "properties": { "matchExpressions": { "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.", "items": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement" }, "type": "array" }, "matchLabels": { "additionalProperties": { "type": "string" }, "description": "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.", "type": "object" } }, "type": "object" }, "io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement": { "description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", "properties": { "key": { "description": "key is the label key that the selector applies to.", "type": "string", "x-kubernetes-patch-merge-key": "key", "x-kubernetes-patch-strategy": "merge" }, "operator": { "description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.", "type": "string" }, "values": { "description": "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.", "items": { "type": "string" }, "type": "array" } }, "required": [ "key", "operator" ], "type": "object" }, "io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta": { "description": "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.", "properties": { "continue": { "description": "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.", "type": "string" }, "remainingItemCount": { "_format": "int64", "description": "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.", "type": "integer" }, "resourceVersion": { "description": "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", "type": "string" }, "selfLink": { "description": "selfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" } }, "type": "object" }, "io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": { "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.", "properties": { "apiVersion": { "description": "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.", "type": "string" }, "fieldsType": { "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"", "type": "string" }, "fieldsV1": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1", "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type." }, "manager": { "description": "Manager is an identifier of the workflow managing these fields.", "type": "string" }, "operation": { "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.", "type": "string" }, "time": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'" } }, "type": "object" }, "io_k8s_apimachinery_pkg_apis_meta_v1_MicroTime": { "_format": "date-time", "description": "MicroTime is version of Time with microsecond level precision.", "type": "string" }, "io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": { "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.", "properties": { "annotations": { "additionalProperties": { "type": "string" }, "description": "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: http://kubernetes.io/docs/user-guide/annotations", "type": "object" }, "clusterName": { "description": "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.", "type": "string" }, "creationTimestamp": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "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.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" }, "deletionGracePeriodSeconds": { "_format": "int64", "description": "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.", "type": "integer" }, "deletionTimestamp": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "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.\n\nPopulated 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" }, "finalizers": { "description": "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.", "items": { "type": "string" }, "type": "array", "x-kubernetes-patch-strategy": "merge" }, "generateName": { "description": "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.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency", "type": "string" }, "generation": { "_format": "int64", "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.", "type": "integer" }, "labels": { "additionalProperties": { "type": "string" }, "description": "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: http://kubernetes.io/docs/user-guide/labels", "type": "object" }, "managedFields": { "description": "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.", "items": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry" }, "type": "array" }, "name": { "description": "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: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "namespace": { "description": "Namespace defines the space within 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.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces", "type": "string" }, "ownerReferences": { "description": "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.", "items": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference" }, "type": "array", "x-kubernetes-patch-merge-key": "uid", "x-kubernetes-patch-strategy": "merge" }, "resourceVersion": { "description": "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.\n\nPopulated 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", "type": "string" }, "selfLink": { "description": "SelfLink is a URL representing this object. Populated by the system. Read-only.\n\nDEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.", "type": "string" }, "uid": { "description": "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.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "type": "object" }, "io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": { "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.", "properties": { "apiVersion": { "description": "API version of the referent.", "type": "string" }, "blockOwnerDeletion": { "description": "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. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.", "type": "boolean" }, "controller": { "description": "If true, this reference points to the managing controller.", "type": "boolean" }, "kind": { "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", "type": "string" }, "name": { "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names", "type": "string" }, "uid": { "description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "required": [ "apiVersion", "kind", "name", "uid" ], "type": "object" }, "io_k8s_apimachinery_pkg_apis_meta_v1_Patch": { "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", "type": "object" }, "io_k8s_apimachinery_pkg_apis_meta_v1_Preconditions": { "description": "Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.", "properties": { "resourceVersion": { "description": "Specifies the target ResourceVersion", "type": "string" }, "uid": { "description": "Specifies the target UID.", "type": "string" } }, "type": "object" }, "io_k8s_apimachinery_pkg_apis_meta_v1_ServerAddressByClientCIDR": { "description": "ServerAddressByClientCIDR helps the client to determine the server address that they should use, depending on the clientCIDR that they match.", "properties": { "clientCIDR": { "description": "The CIDR with which clients can match their IP to figure out the server address that they should use.", "type": "string" }, "serverAddress": { "description": "Address of this server, suitable for a client that matches the above CIDR. This can be a hostname, hostname:port, IP or IP:port.", "type": "string" } }, "required": [ "clientCIDR", "serverAddress" ], "type": "object" }, "io_k8s_apimachinery_pkg_apis_meta_v1_Status": { "description": "Status is a return value for calls that don't return other objects.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "code": { "_format": "int32", "description": "Suggested HTTP return code for this status, 0 if not set.", "type": "integer" }, "details": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_StatusDetails", "description": "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." }, "kind": { "description": "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", "enum": [ "Status" ], "type": "string" }, "message": { "description": "A human-readable description of the status of this operation.", "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds" }, "reason": { "description": "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.", "type": "string" }, "status": { "description": "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", "type": "string" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "Status", "version": "v1" } ] }, "io_k8s_apimachinery_pkg_apis_meta_v1_StatusCause": { "description": "StatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered.", "properties": { "field": { "description": "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.\n\nExamples:\n \"name\" - the field \"name\" on the current resource\n \"items[0].name\" - the field \"name\" on the first array entry in \"items\"", "type": "string" }, "message": { "description": "A human-readable description of the cause of the error. This field may be presented as-is to a reader.", "type": "string" }, "reason": { "description": "A machine-readable description of the cause of the error. If this value is empty there is no information available.", "type": "string" } }, "type": "object" }, "io_k8s_apimachinery_pkg_apis_meta_v1_StatusDetails": { "description": "StatusDetails is a set of additional properties that MAY be set by the server to provide additional information about a response. The Reason field of a Status object defines what attributes will be set. Clients must ignore fields that do not match the defined type of each attribute, and should assume that any attribute may be empty, invalid, or under defined.", "properties": { "causes": { "description": "The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes.", "items": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_StatusCause" }, "type": "array" }, "group": { "description": "The group attribute of the resource associated with the status StatusReason.", "type": "string" }, "kind": { "description": "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", "type": "string" }, "name": { "description": "The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described).", "type": "string" }, "retryAfterSeconds": { "_format": "int32", "description": "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.", "type": "integer" }, "uid": { "description": "UID of the resource. (when there is a single resource which can be described). More info: http://kubernetes.io/docs/user-guide/identifiers#uids", "type": "string" } }, "type": "object" }, "io_k8s_apimachinery_pkg_apis_meta_v1_Time": { "_format": "date-time", "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", "type": "string" }, "io_k8s_apimachinery_pkg_apis_meta_v1_WatchEvent": { "description": "Event represents a single event to a watched resource.", "properties": { "object": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_runtime_RawExtension", "description": "Object is:\n * If Type is Added or Modified: the new state of the object.\n * If Type is Deleted: the state of the object immediately before deletion.\n * If Type is Error: *Status is recommended; other types may make sense\n depending on context." }, "type": { "type": "string" } }, "required": [ "type", "object" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "", "kind": "WatchEvent", "version": "v1" }, { "group": "admission.k8s.io", "kind": "WatchEvent", "version": "v1" }, { "group": "admission.k8s.io", "kind": "WatchEvent", "version": "v1beta1" }, { "group": "admissionregistration.k8s.io", "kind": "WatchEvent", "version": "v1" }, { "group": "admissionregistration.k8s.io", "kind": "WatchEvent", "version": "v1beta1" }, { "group": "apiextensions.k8s.io", "kind": "WatchEvent", "version": "v1" }, { "group": "apiextensions.k8s.io", "kind": "WatchEvent", "version": "v1beta1" }, { "group": "apiregistration.k8s.io", "kind": "WatchEvent", "version": "v1" }, { "group": "apiregistration.k8s.io", "kind": "WatchEvent", "version": "v1beta1" }, { "group": "apps", "kind": "WatchEvent", "version": "v1" }, { "group": "apps", "kind": "WatchEvent", "version": "v1beta1" }, { "group": "apps", "kind": "WatchEvent", "version": "v1beta2" }, { "group": "auditregistration.k8s.io", "kind": "WatchEvent", "version": "v1alpha1" }, { "group": "authentication.k8s.io", "kind": "WatchEvent", "version": "v1" }, { "group": "authentication.k8s.io", "kind": "WatchEvent", "version": "v1beta1" }, { "group": "authorization.k8s.io", "kind": "WatchEvent", "version": "v1" }, { "group": "authorization.k8s.io", "kind": "WatchEvent", "version": "v1beta1" }, { "group": "autoscaling", "kind": "WatchEvent", "version": "v1" }, { "group": "autoscaling", "kind": "WatchEvent", "version": "v2beta1" }, { "group": "autoscaling", "kind": "WatchEvent", "version": "v2beta2" }, { "group": "batch", "kind": "WatchEvent", "version": "v1" }, { "group": "batch", "kind": "WatchEvent", "version": "v1beta1" }, { "group": "batch", "kind": "WatchEvent", "version": "v2alpha1" }, { "group": "certificates.k8s.io", "kind": "WatchEvent", "version": "v1beta1" }, { "group": "coordination.k8s.io", "kind": "WatchEvent", "version": "v1" }, { "group": "coordination.k8s.io", "kind": "WatchEvent", "version": "v1beta1" }, { "group": "discovery.k8s.io", "kind": "WatchEvent", "version": "v1alpha1" }, { "group": "discovery.k8s.io", "kind": "WatchEvent", "version": "v1beta1" }, { "group": "events.k8s.io", "kind": "WatchEvent", "version": "v1beta1" }, { "group": "extensions", "kind": "WatchEvent", "version": "v1beta1" }, { "group": "flowcontrol.apiserver.k8s.io", "kind": "WatchEvent", "version": "v1alpha1" }, { "group": "imagepolicy.k8s.io", "kind": "WatchEvent", "version": "v1alpha1" }, { "group": "networking.k8s.io", "kind": "WatchEvent", "version": "v1" }, { "group": "networking.k8s.io", "kind": "WatchEvent", "version": "v1beta1" }, { "group": "node.k8s.io", "kind": "WatchEvent", "version": "v1alpha1" }, { "group": "node.k8s.io", "kind": "WatchEvent", "version": "v1beta1" }, { "group": "policy", "kind": "WatchEvent", "version": "v1beta1" }, { "group": "rbac.authorization.k8s.io", "kind": "WatchEvent", "version": "v1" }, { "group": "rbac.authorization.k8s.io", "kind": "WatchEvent", "version": "v1alpha1" }, { "group": "rbac.authorization.k8s.io", "kind": "WatchEvent", "version": "v1beta1" }, { "group": "scheduling.k8s.io", "kind": "WatchEvent", "version": "v1" }, { "group": "scheduling.k8s.io", "kind": "WatchEvent", "version": "v1alpha1" }, { "group": "scheduling.k8s.io", "kind": "WatchEvent", "version": "v1beta1" }, { "group": "settings.k8s.io", "kind": "WatchEvent", "version": "v1alpha1" }, { "group": "storage.k8s.io", "kind": "WatchEvent", "version": "v1" }, { "group": "storage.k8s.io", "kind": "WatchEvent", "version": "v1alpha1" }, { "group": "storage.k8s.io", "kind": "WatchEvent", "version": "v1beta1" } ] }, "io_k8s_apimachinery_pkg_runtime_RawExtension": { "description": "RawExtension is used to hold extensions in external versions.\n\nTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct. You also need to register your various plugin types.\n\n// Internal package: type MyAPIObject struct {\n\truntime.TypeMeta `json:\",inline\"`\n\tMyPlugin runtime.Object `json:\"myPlugin\"`\n} type PluginA struct {\n\tAOption string `json:\"aOption\"`\n}\n\n// External package: type MyAPIObject struct {\n\truntime.TypeMeta `json:\",inline\"`\n\tMyPlugin runtime.RawExtension `json:\"myPlugin\"`\n} type PluginA struct {\n\tAOption string `json:\"aOption\"`\n}\n\n// On the wire, the JSON will look something like this: {\n\t\"kind\":\"MyAPIObject\",\n\t\"apiVersion\":\"v1\",\n\t\"myPlugin\": {\n\t\t\"kind\":\"PluginA\",\n\t\t\"aOption\":\"foo\",\n\t},\n}\n\nSo what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject. That causes the raw JSON to be stored, but not unpacked. The next step is to copy (using pkg/conversion) into the internal struct. The runtime package's DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object. (TODO: In the case where the object is of an unknown type, a runtime.Unknown object will be created and stored.)", "type": "object" }, "io_k8s_apimachinery_pkg_util_intstr_IntOrString": { "oneOf": [ { "type": "string" }, { "type": "integer" } ] }, "io_k8s_apimachinery_pkg_version_Info": { "description": "Info contains versioning information. how we'll want to distribute that information.", "properties": { "buildDate": { "type": "string" }, "compiler": { "type": "string" }, "gitCommit": { "type": "string" }, "gitTreeState": { "type": "string" }, "gitVersion": { "type": "string" }, "goVersion": { "type": "string" }, "major": { "type": "string" }, "minor": { "type": "string" }, "platform": { "type": "string" } }, "required": [ "major", "minor", "gitVersion", "gitCommit", "gitTreeState", "buildDate", "goVersion", "compiler", "platform" ], "type": "object" }, "io_k8s_kube-aggregator_pkg_apis_apiregistration_v1_APIService": { "description": "APIService represents a server for a particular GroupVersion. Name must be \"version.group\".", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "APIService" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta" }, "spec": { "$ref": "#/definitions/io_k8s_kube-aggregator_pkg_apis_apiregistration_v1_APIServiceSpec", "description": "Spec contains information for locating and communicating with a server" }, "status": { "$ref": "#/definitions/io_k8s_kube-aggregator_pkg_apis_apiregistration_v1_APIServiceStatus", "description": "Status contains derived information about an API server" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "apiregistration.k8s.io", "kind": "APIService", "version": "v1" } ] }, "io_k8s_kube-aggregator_pkg_apis_apiregistration_v1_APIServiceCondition": { "description": "APIServiceCondition describes the state of an APIService at a particular point", "properties": { "lastTransitionTime": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Last time the condition transitioned from one status to another." }, "message": { "description": "Human-readable message indicating details about last transition.", "type": "string" }, "reason": { "description": "Unique, one-word, CamelCase reason for the condition's last transition.", "type": "string" }, "status": { "description": "Status is the status of the condition. Can be True, False, Unknown.", "type": "string" }, "type": { "description": "Type is the type of the condition.", "type": "string" } }, "required": [ "type", "status" ], "type": "object" }, "io_k8s_kube-aggregator_pkg_apis_apiregistration_v1_APIServiceList": { "description": "APIServiceList is a list of APIService objects.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "items": { "$ref": "#/definitions/io_k8s_kube-aggregator_pkg_apis_apiregistration_v1_APIService" }, "type": "array" }, "kind": { "description": "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", "enum": [ "APIServiceList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "apiregistration.k8s.io", "kind": "APIServiceList", "version": "v1" } ] }, "io_k8s_kube-aggregator_pkg_apis_apiregistration_v1_APIServiceSpec": { "description": "APIServiceSpec contains information for locating and communicating with a server. Only https is supported, though you are able to disable certificate verification.", "properties": { "caBundle": { "_format": "byte", "description": "CABundle is a PEM encoded CA bundle which will be used to validate an API server's serving certificate. If unspecified, system trust roots on the apiserver are used.", "type": "string" }, "group": { "description": "Group is the API group name this server hosts", "type": "string" }, "groupPriorityMinimum": { "_format": "int32", "description": "GroupPriorityMininum is the priority this group should have at least. Higher priority means that the group is preferred by clients over lower priority ones. Note that other versions of this group might specify even higher GroupPriorityMininum values such that the whole group gets a higher priority. The primary sort is based on GroupPriorityMinimum, ordered highest number to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) We'd recommend something like: *.k8s.io (except extensions) at 18000 and PaaSes (OpenShift, Deis) are recommended to be in the 2000s", "type": "integer" }, "insecureSkipTLSVerify": { "description": "InsecureSkipTLSVerify disables TLS certificate verification when communicating with this server. This is strongly discouraged. You should use the CABundle instead.", "type": "boolean" }, "service": { "$ref": "#/definitions/io_k8s_kube-aggregator_pkg_apis_apiregistration_v1_ServiceReference", "description": "Service is a reference to the service for this API server. It must communicate on port 443. If the Service is nil, that means the handling for the API groupversion is handled locally on this server. The call will simply delegate to the normal handler chain to be fulfilled." }, "version": { "description": "Version is the API version this server hosts. For example, \"v1\"", "type": "string" }, "versionPriority": { "_format": "int32", "description": "VersionPriority controls the ordering of this API version inside of its group. Must be greater than zero. The primary sort is based on VersionPriority, ordered highest to lowest (20 before 10). Since it's inside of a group, the number can be small, probably in the 10s. In case of equal version priorities, the version string will be used to compute the order inside a group. If the version string is \"kube-like\", it will sort above non \"kube-like\" version strings, which are ordered lexicographically. \"Kube-like\" versions start with a \"v\", then are followed by a number (the major version), then optionally the string \"alpha\" or \"beta\" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.", "type": "integer" } }, "required": [ "groupPriorityMinimum", "versionPriority" ], "type": "object" }, "io_k8s_kube-aggregator_pkg_apis_apiregistration_v1_APIServiceStatus": { "description": "APIServiceStatus contains derived information about an API server", "properties": { "conditions": { "description": "Current service state of apiService.", "items": { "$ref": "#/definitions/io_k8s_kube-aggregator_pkg_apis_apiregistration_v1_APIServiceCondition" }, "type": "array", "x-kubernetes-patch-merge-key": "type", "x-kubernetes-patch-strategy": "merge" } }, "type": "object" }, "io_k8s_kube-aggregator_pkg_apis_apiregistration_v1_ServiceReference": { "description": "ServiceReference holds a reference to Service.legacy.k8s.io", "properties": { "name": { "description": "Name is the name of the service", "type": "string" }, "namespace": { "description": "Namespace is the namespace of the service", "type": "string" }, "port": { "_format": "int32", "description": "If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive).", "type": "integer" } }, "type": "object" }, "io_k8s_kube-aggregator_pkg_apis_apiregistration_v1beta1_APIService": { "description": "APIService represents a server for a particular GroupVersion. Name must be \"version.group\".", "properties": { "apiVersion": { "description": "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", "type": "string" }, "kind": { "description": "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", "enum": [ "APIService" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta" }, "spec": { "$ref": "#/definitions/io_k8s_kube-aggregator_pkg_apis_apiregistration_v1beta1_APIServiceSpec", "description": "Spec contains information for locating and communicating with a server" }, "status": { "$ref": "#/definitions/io_k8s_kube-aggregator_pkg_apis_apiregistration_v1beta1_APIServiceStatus", "description": "Status contains derived information about an API server" } }, "type": "object", "x-kubernetes-group-version-kind": [ { "group": "apiregistration.k8s.io", "kind": "APIService", "version": "v1beta1" } ] }, "io_k8s_kube-aggregator_pkg_apis_apiregistration_v1beta1_APIServiceCondition": { "description": "APIServiceCondition describes the state of an APIService at a particular point", "properties": { "lastTransitionTime": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time", "description": "Last time the condition transitioned from one status to another." }, "message": { "description": "Human-readable message indicating details about last transition.", "type": "string" }, "reason": { "description": "Unique, one-word, CamelCase reason for the condition's last transition.", "type": "string" }, "status": { "description": "Status is the status of the condition. Can be True, False, Unknown.", "type": "string" }, "type": { "description": "Type is the type of the condition.", "type": "string" } }, "required": [ "type", "status" ], "type": "object" }, "io_k8s_kube-aggregator_pkg_apis_apiregistration_v1beta1_APIServiceList": { "description": "APIServiceList is a list of APIService objects.", "properties": { "apiVersion": { "description": "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", "type": "string" }, "items": { "items": { "$ref": "#/definitions/io_k8s_kube-aggregator_pkg_apis_apiregistration_v1beta1_APIService" }, "type": "array" }, "kind": { "description": "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", "enum": [ "APIServiceList" ], "type": "string" }, "metadata": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta" } }, "required": [ "items" ], "type": "object", "x-kubernetes-group-version-kind": [ { "group": "apiregistration.k8s.io", "kind": "APIServiceList", "version": "v1beta1" } ] }, "io_k8s_kube-aggregator_pkg_apis_apiregistration_v1beta1_APIServiceSpec": { "description": "APIServiceSpec contains information for locating and communicating with a server. Only https is supported, though you are able to disable certificate verification.", "properties": { "caBundle": { "_format": "byte", "description": "CABundle is a PEM encoded CA bundle which will be used to validate an API server's serving certificate. If unspecified, system trust roots on the apiserver are used.", "type": "string" }, "group": { "description": "Group is the API group name this server hosts", "type": "string" }, "groupPriorityMinimum": { "_format": "int32", "description": "GroupPriorityMininum is the priority this group should have at least. Higher priority means that the group is preferred by clients over lower priority ones. Note that other versions of this group might specify even higher GroupPriorityMininum values such that the whole group gets a higher priority. The primary sort is based on GroupPriorityMinimum, ordered highest number to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) We'd recommend something like: *.k8s.io (except extensions) at 18000 and PaaSes (OpenShift, Deis) are recommended to be in the 2000s", "type": "integer" }, "insecureSkipTLSVerify": { "description": "InsecureSkipTLSVerify disables TLS certificate verification when communicating with this server. This is strongly discouraged. You should use the CABundle instead.", "type": "boolean" }, "service": { "$ref": "#/definitions/io_k8s_kube-aggregator_pkg_apis_apiregistration_v1beta1_ServiceReference", "description": "Service is a reference to the service for this API server. It must communicate on port 443. If the Service is nil, that means the handling for the API groupversion is handled locally on this server. The call will simply delegate to the normal handler chain to be fulfilled." }, "version": { "description": "Version is the API version this server hosts. For example, \"v1\"", "type": "string" }, "versionPriority": { "_format": "int32", "description": "VersionPriority controls the ordering of this API version inside of its group. Must be greater than zero. The primary sort is based on VersionPriority, ordered highest to lowest (20 before 10). Since it's inside of a group, the number can be small, probably in the 10s. In case of equal version priorities, the version string will be used to compute the order inside a group. If the version string is \"kube-like\", it will sort above non \"kube-like\" version strings, which are ordered lexicographically. \"Kube-like\" versions start with a \"v\", then are followed by a number (the major version), then optionally the string \"alpha\" or \"beta\" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.", "type": "integer" } }, "required": [ "groupPriorityMinimum", "versionPriority" ], "type": "object" }, "io_k8s_kube-aggregator_pkg_apis_apiregistration_v1beta1_APIServiceStatus": { "description": "APIServiceStatus contains derived information about an API server", "properties": { "conditions": { "description": "Current service state of apiService.", "items": { "$ref": "#/definitions/io_k8s_kube-aggregator_pkg_apis_apiregistration_v1beta1_APIServiceCondition" }, "type": "array", "x-kubernetes-patch-merge-key": "type", "x-kubernetes-patch-strategy": "merge" } }, "type": "object" }, "io_k8s_kube-aggregator_pkg_apis_apiregistration_v1beta1_ServiceReference": { "description": "ServiceReference holds a reference to Service.legacy.k8s.io", "properties": { "name": { "description": "Name is the name of the service", "type": "string" }, "namespace": { "description": "Namespace is the namespace of the service", "type": "string" }, "port": { "_format": "int32", "description": "If specified, the port on the service that hosting webhook. Default to 443 for backward compatibility. `port` should be a valid port number (1-65535, inclusive).", "type": "integer" } }, "type": "object" } }, "properties": { "io_k8s_api_admissionregistration_v1_MutatingWebhook": { "$ref": "#/definitions/io_k8s_api_admissionregistration_v1_MutatingWebhook" }, "io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration": { "$ref": "#/definitions/io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration" }, "io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList": { "$ref": "#/definitions/io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList" }, "io_k8s_api_admissionregistration_v1_RuleWithOperations": { "$ref": "#/definitions/io_k8s_api_admissionregistration_v1_RuleWithOperations" }, "io_k8s_api_admissionregistration_v1_ServiceReference": { "$ref": "#/definitions/io_k8s_api_admissionregistration_v1_ServiceReference" }, "io_k8s_api_admissionregistration_v1_ValidatingWebhook": { "$ref": "#/definitions/io_k8s_api_admissionregistration_v1_ValidatingWebhook" }, "io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration": { "$ref": "#/definitions/io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration" }, "io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList": { "$ref": "#/definitions/io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList" }, "io_k8s_api_admissionregistration_v1_WebhookClientConfig": { "$ref": "#/definitions/io_k8s_api_admissionregistration_v1_WebhookClientConfig" }, "io_k8s_api_admissionregistration_v1beta1_MutatingWebhook": { "$ref": "#/definitions/io_k8s_api_admissionregistration_v1beta1_MutatingWebhook" }, "io_k8s_api_admissionregistration_v1beta1_MutatingWebhookConfiguration": { "$ref": "#/definitions/io_k8s_api_admissionregistration_v1beta1_MutatingWebhookConfiguration" }, "io_k8s_api_admissionregistration_v1beta1_MutatingWebhookConfigurationList": { "$ref": "#/definitions/io_k8s_api_admissionregistration_v1beta1_MutatingWebhookConfigurationList" }, "io_k8s_api_admissionregistration_v1beta1_RuleWithOperations": { "$ref": "#/definitions/io_k8s_api_admissionregistration_v1beta1_RuleWithOperations" }, "io_k8s_api_admissionregistration_v1beta1_ServiceReference": { "$ref": "#/definitions/io_k8s_api_admissionregistration_v1beta1_ServiceReference" }, "io_k8s_api_admissionregistration_v1beta1_ValidatingWebhook": { "$ref": "#/definitions/io_k8s_api_admissionregistration_v1beta1_ValidatingWebhook" }, "io_k8s_api_admissionregistration_v1beta1_ValidatingWebhookConfiguration": { "$ref": "#/definitions/io_k8s_api_admissionregistration_v1beta1_ValidatingWebhookConfiguration" }, "io_k8s_api_admissionregistration_v1beta1_ValidatingWebhookConfigurationList": { "$ref": "#/definitions/io_k8s_api_admissionregistration_v1beta1_ValidatingWebhookConfigurationList" }, "io_k8s_api_admissionregistration_v1beta1_WebhookClientConfig": { "$ref": "#/definitions/io_k8s_api_admissionregistration_v1beta1_WebhookClientConfig" }, "io_k8s_api_apps_v1_ControllerRevision": { "$ref": "#/definitions/io_k8s_api_apps_v1_ControllerRevision" }, "io_k8s_api_apps_v1_ControllerRevisionList": { "$ref": "#/definitions/io_k8s_api_apps_v1_ControllerRevisionList" }, "io_k8s_api_apps_v1_DaemonSet": { "$ref": "#/definitions/io_k8s_api_apps_v1_DaemonSet" }, "io_k8s_api_apps_v1_DaemonSetCondition": { "$ref": "#/definitions/io_k8s_api_apps_v1_DaemonSetCondition" }, "io_k8s_api_apps_v1_DaemonSetList": { "$ref": "#/definitions/io_k8s_api_apps_v1_DaemonSetList" }, "io_k8s_api_apps_v1_DaemonSetSpec": { "$ref": "#/definitions/io_k8s_api_apps_v1_DaemonSetSpec" }, "io_k8s_api_apps_v1_DaemonSetStatus": { "$ref": "#/definitions/io_k8s_api_apps_v1_DaemonSetStatus" }, "io_k8s_api_apps_v1_DaemonSetUpdateStrategy": { "$ref": "#/definitions/io_k8s_api_apps_v1_DaemonSetUpdateStrategy" }, "io_k8s_api_apps_v1_Deployment": { "$ref": "#/definitions/io_k8s_api_apps_v1_Deployment" }, "io_k8s_api_apps_v1_DeploymentCondition": { "$ref": "#/definitions/io_k8s_api_apps_v1_DeploymentCondition" }, "io_k8s_api_apps_v1_DeploymentList": { "$ref": "#/definitions/io_k8s_api_apps_v1_DeploymentList" }, "io_k8s_api_apps_v1_DeploymentSpec": { "$ref": "#/definitions/io_k8s_api_apps_v1_DeploymentSpec" }, "io_k8s_api_apps_v1_DeploymentStatus": { "$ref": "#/definitions/io_k8s_api_apps_v1_DeploymentStatus" }, "io_k8s_api_apps_v1_DeploymentStrategy": { "$ref": "#/definitions/io_k8s_api_apps_v1_DeploymentStrategy" }, "io_k8s_api_apps_v1_ReplicaSet": { "$ref": "#/definitions/io_k8s_api_apps_v1_ReplicaSet" }, "io_k8s_api_apps_v1_ReplicaSetCondition": { "$ref": "#/definitions/io_k8s_api_apps_v1_ReplicaSetCondition" }, "io_k8s_api_apps_v1_ReplicaSetList": { "$ref": "#/definitions/io_k8s_api_apps_v1_ReplicaSetList" }, "io_k8s_api_apps_v1_ReplicaSetSpec": { "$ref": "#/definitions/io_k8s_api_apps_v1_ReplicaSetSpec" }, "io_k8s_api_apps_v1_ReplicaSetStatus": { "$ref": "#/definitions/io_k8s_api_apps_v1_ReplicaSetStatus" }, "io_k8s_api_apps_v1_RollingUpdateDaemonSet": { "$ref": "#/definitions/io_k8s_api_apps_v1_RollingUpdateDaemonSet" }, "io_k8s_api_apps_v1_RollingUpdateDeployment": { "$ref": "#/definitions/io_k8s_api_apps_v1_RollingUpdateDeployment" }, "io_k8s_api_apps_v1_RollingUpdateStatefulSetStrategy": { "$ref": "#/definitions/io_k8s_api_apps_v1_RollingUpdateStatefulSetStrategy" }, "io_k8s_api_apps_v1_StatefulSet": { "$ref": "#/definitions/io_k8s_api_apps_v1_StatefulSet" }, "io_k8s_api_apps_v1_StatefulSetCondition": { "$ref": "#/definitions/io_k8s_api_apps_v1_StatefulSetCondition" }, "io_k8s_api_apps_v1_StatefulSetList": { "$ref": "#/definitions/io_k8s_api_apps_v1_StatefulSetList" }, "io_k8s_api_apps_v1_StatefulSetSpec": { "$ref": "#/definitions/io_k8s_api_apps_v1_StatefulSetSpec" }, "io_k8s_api_apps_v1_StatefulSetStatus": { "$ref": "#/definitions/io_k8s_api_apps_v1_StatefulSetStatus" }, "io_k8s_api_apps_v1_StatefulSetUpdateStrategy": { "$ref": "#/definitions/io_k8s_api_apps_v1_StatefulSetUpdateStrategy" }, "io_k8s_api_auditregistration_v1alpha1_AuditSink": { "$ref": "#/definitions/io_k8s_api_auditregistration_v1alpha1_AuditSink" }, "io_k8s_api_auditregistration_v1alpha1_AuditSinkList": { "$ref": "#/definitions/io_k8s_api_auditregistration_v1alpha1_AuditSinkList" }, "io_k8s_api_auditregistration_v1alpha1_AuditSinkSpec": { "$ref": "#/definitions/io_k8s_api_auditregistration_v1alpha1_AuditSinkSpec" }, "io_k8s_api_auditregistration_v1alpha1_Policy": { "$ref": "#/definitions/io_k8s_api_auditregistration_v1alpha1_Policy" }, "io_k8s_api_auditregistration_v1alpha1_ServiceReference": { "$ref": "#/definitions/io_k8s_api_auditregistration_v1alpha1_ServiceReference" }, "io_k8s_api_auditregistration_v1alpha1_Webhook": { "$ref": "#/definitions/io_k8s_api_auditregistration_v1alpha1_Webhook" }, "io_k8s_api_auditregistration_v1alpha1_WebhookClientConfig": { "$ref": "#/definitions/io_k8s_api_auditregistration_v1alpha1_WebhookClientConfig" }, "io_k8s_api_auditregistration_v1alpha1_WebhookThrottleConfig": { "$ref": "#/definitions/io_k8s_api_auditregistration_v1alpha1_WebhookThrottleConfig" }, "io_k8s_api_authentication_v1_BoundObjectReference": { "$ref": "#/definitions/io_k8s_api_authentication_v1_BoundObjectReference" }, "io_k8s_api_authentication_v1_TokenRequest": { "$ref": "#/definitions/io_k8s_api_authentication_v1_TokenRequest" }, "io_k8s_api_authentication_v1_TokenRequestSpec": { "$ref": "#/definitions/io_k8s_api_authentication_v1_TokenRequestSpec" }, "io_k8s_api_authentication_v1_TokenRequestStatus": { "$ref": "#/definitions/io_k8s_api_authentication_v1_TokenRequestStatus" }, "io_k8s_api_authentication_v1_TokenReview": { "$ref": "#/definitions/io_k8s_api_authentication_v1_TokenReview" }, "io_k8s_api_authentication_v1_TokenReviewSpec": { "$ref": "#/definitions/io_k8s_api_authentication_v1_TokenReviewSpec" }, "io_k8s_api_authentication_v1_TokenReviewStatus": { "$ref": "#/definitions/io_k8s_api_authentication_v1_TokenReviewStatus" }, "io_k8s_api_authentication_v1_UserInfo": { "$ref": "#/definitions/io_k8s_api_authentication_v1_UserInfo" }, "io_k8s_api_authentication_v1beta1_TokenReview": { "$ref": "#/definitions/io_k8s_api_authentication_v1beta1_TokenReview" }, "io_k8s_api_authentication_v1beta1_TokenReviewSpec": { "$ref": "#/definitions/io_k8s_api_authentication_v1beta1_TokenReviewSpec" }, "io_k8s_api_authentication_v1beta1_TokenReviewStatus": { "$ref": "#/definitions/io_k8s_api_authentication_v1beta1_TokenReviewStatus" }, "io_k8s_api_authentication_v1beta1_UserInfo": { "$ref": "#/definitions/io_k8s_api_authentication_v1beta1_UserInfo" }, "io_k8s_api_authorization_v1_LocalSubjectAccessReview": { "$ref": "#/definitions/io_k8s_api_authorization_v1_LocalSubjectAccessReview" }, "io_k8s_api_authorization_v1_NonResourceAttributes": { "$ref": "#/definitions/io_k8s_api_authorization_v1_NonResourceAttributes" }, "io_k8s_api_authorization_v1_NonResourceRule": { "$ref": "#/definitions/io_k8s_api_authorization_v1_NonResourceRule" }, "io_k8s_api_authorization_v1_ResourceAttributes": { "$ref": "#/definitions/io_k8s_api_authorization_v1_ResourceAttributes" }, "io_k8s_api_authorization_v1_ResourceRule": { "$ref": "#/definitions/io_k8s_api_authorization_v1_ResourceRule" }, "io_k8s_api_authorization_v1_SelfSubjectAccessReview": { "$ref": "#/definitions/io_k8s_api_authorization_v1_SelfSubjectAccessReview" }, "io_k8s_api_authorization_v1_SelfSubjectAccessReviewSpec": { "$ref": "#/definitions/io_k8s_api_authorization_v1_SelfSubjectAccessReviewSpec" }, "io_k8s_api_authorization_v1_SelfSubjectRulesReview": { "$ref": "#/definitions/io_k8s_api_authorization_v1_SelfSubjectRulesReview" }, "io_k8s_api_authorization_v1_SelfSubjectRulesReviewSpec": { "$ref": "#/definitions/io_k8s_api_authorization_v1_SelfSubjectRulesReviewSpec" }, "io_k8s_api_authorization_v1_SubjectAccessReview": { "$ref": "#/definitions/io_k8s_api_authorization_v1_SubjectAccessReview" }, "io_k8s_api_authorization_v1_SubjectAccessReviewSpec": { "$ref": "#/definitions/io_k8s_api_authorization_v1_SubjectAccessReviewSpec" }, "io_k8s_api_authorization_v1_SubjectAccessReviewStatus": { "$ref": "#/definitions/io_k8s_api_authorization_v1_SubjectAccessReviewStatus" }, "io_k8s_api_authorization_v1_SubjectRulesReviewStatus": { "$ref": "#/definitions/io_k8s_api_authorization_v1_SubjectRulesReviewStatus" }, "io_k8s_api_authorization_v1beta1_LocalSubjectAccessReview": { "$ref": "#/definitions/io_k8s_api_authorization_v1beta1_LocalSubjectAccessReview" }, "io_k8s_api_authorization_v1beta1_NonResourceAttributes": { "$ref": "#/definitions/io_k8s_api_authorization_v1beta1_NonResourceAttributes" }, "io_k8s_api_authorization_v1beta1_NonResourceRule": { "$ref": "#/definitions/io_k8s_api_authorization_v1beta1_NonResourceRule" }, "io_k8s_api_authorization_v1beta1_ResourceAttributes": { "$ref": "#/definitions/io_k8s_api_authorization_v1beta1_ResourceAttributes" }, "io_k8s_api_authorization_v1beta1_ResourceRule": { "$ref": "#/definitions/io_k8s_api_authorization_v1beta1_ResourceRule" }, "io_k8s_api_authorization_v1beta1_SelfSubjectAccessReview": { "$ref": "#/definitions/io_k8s_api_authorization_v1beta1_SelfSubjectAccessReview" }, "io_k8s_api_authorization_v1beta1_SelfSubjectAccessReviewSpec": { "$ref": "#/definitions/io_k8s_api_authorization_v1beta1_SelfSubjectAccessReviewSpec" }, "io_k8s_api_authorization_v1beta1_SelfSubjectRulesReview": { "$ref": "#/definitions/io_k8s_api_authorization_v1beta1_SelfSubjectRulesReview" }, "io_k8s_api_authorization_v1beta1_SelfSubjectRulesReviewSpec": { "$ref": "#/definitions/io_k8s_api_authorization_v1beta1_SelfSubjectRulesReviewSpec" }, "io_k8s_api_authorization_v1beta1_SubjectAccessReview": { "$ref": "#/definitions/io_k8s_api_authorization_v1beta1_SubjectAccessReview" }, "io_k8s_api_authorization_v1beta1_SubjectAccessReviewSpec": { "$ref": "#/definitions/io_k8s_api_authorization_v1beta1_SubjectAccessReviewSpec" }, "io_k8s_api_authorization_v1beta1_SubjectAccessReviewStatus": { "$ref": "#/definitions/io_k8s_api_authorization_v1beta1_SubjectAccessReviewStatus" }, "io_k8s_api_authorization_v1beta1_SubjectRulesReviewStatus": { "$ref": "#/definitions/io_k8s_api_authorization_v1beta1_SubjectRulesReviewStatus" }, "io_k8s_api_autoscaling_v1_CrossVersionObjectReference": { "$ref": "#/definitions/io_k8s_api_autoscaling_v1_CrossVersionObjectReference" }, "io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler": { "$ref": "#/definitions/io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler" }, "io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList": { "$ref": "#/definitions/io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList" }, "io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerSpec": { "$ref": "#/definitions/io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerSpec" }, "io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerStatus": { "$ref": "#/definitions/io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerStatus" }, "io_k8s_api_autoscaling_v1_Scale": { "$ref": "#/definitions/io_k8s_api_autoscaling_v1_Scale" }, "io_k8s_api_autoscaling_v1_ScaleSpec": { "$ref": "#/definitions/io_k8s_api_autoscaling_v1_ScaleSpec" }, "io_k8s_api_autoscaling_v1_ScaleStatus": { "$ref": "#/definitions/io_k8s_api_autoscaling_v1_ScaleStatus" }, "io_k8s_api_autoscaling_v2beta1_CrossVersionObjectReference": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta1_CrossVersionObjectReference" }, "io_k8s_api_autoscaling_v2beta1_ExternalMetricSource": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta1_ExternalMetricSource" }, "io_k8s_api_autoscaling_v2beta1_ExternalMetricStatus": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta1_ExternalMetricStatus" }, "io_k8s_api_autoscaling_v2beta1_HorizontalPodAutoscaler": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta1_HorizontalPodAutoscaler" }, "io_k8s_api_autoscaling_v2beta1_HorizontalPodAutoscalerCondition": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta1_HorizontalPodAutoscalerCondition" }, "io_k8s_api_autoscaling_v2beta1_HorizontalPodAutoscalerList": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta1_HorizontalPodAutoscalerList" }, "io_k8s_api_autoscaling_v2beta1_HorizontalPodAutoscalerSpec": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta1_HorizontalPodAutoscalerSpec" }, "io_k8s_api_autoscaling_v2beta1_HorizontalPodAutoscalerStatus": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta1_HorizontalPodAutoscalerStatus" }, "io_k8s_api_autoscaling_v2beta1_MetricSpec": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta1_MetricSpec" }, "io_k8s_api_autoscaling_v2beta1_MetricStatus": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta1_MetricStatus" }, "io_k8s_api_autoscaling_v2beta1_ObjectMetricSource": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta1_ObjectMetricSource" }, "io_k8s_api_autoscaling_v2beta1_ObjectMetricStatus": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta1_ObjectMetricStatus" }, "io_k8s_api_autoscaling_v2beta1_PodsMetricSource": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta1_PodsMetricSource" }, "io_k8s_api_autoscaling_v2beta1_PodsMetricStatus": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta1_PodsMetricStatus" }, "io_k8s_api_autoscaling_v2beta1_ResourceMetricSource": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta1_ResourceMetricSource" }, "io_k8s_api_autoscaling_v2beta1_ResourceMetricStatus": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta1_ResourceMetricStatus" }, "io_k8s_api_autoscaling_v2beta2_CrossVersionObjectReference": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_CrossVersionObjectReference" }, "io_k8s_api_autoscaling_v2beta2_ExternalMetricSource": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_ExternalMetricSource" }, "io_k8s_api_autoscaling_v2beta2_ExternalMetricStatus": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_ExternalMetricStatus" }, "io_k8s_api_autoscaling_v2beta2_HPAScalingPolicy": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_HPAScalingPolicy" }, "io_k8s_api_autoscaling_v2beta2_HPAScalingRules": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_HPAScalingRules" }, "io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscaler": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscaler" }, "io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscalerBehavior": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscalerBehavior" }, "io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscalerCondition": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscalerCondition" }, "io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscalerList": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscalerList" }, "io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscalerSpec": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscalerSpec" }, "io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscalerStatus": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscalerStatus" }, "io_k8s_api_autoscaling_v2beta2_MetricIdentifier": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_MetricIdentifier" }, "io_k8s_api_autoscaling_v2beta2_MetricSpec": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_MetricSpec" }, "io_k8s_api_autoscaling_v2beta2_MetricStatus": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_MetricStatus" }, "io_k8s_api_autoscaling_v2beta2_MetricTarget": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_MetricTarget" }, "io_k8s_api_autoscaling_v2beta2_MetricValueStatus": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_MetricValueStatus" }, "io_k8s_api_autoscaling_v2beta2_ObjectMetricSource": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_ObjectMetricSource" }, "io_k8s_api_autoscaling_v2beta2_ObjectMetricStatus": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_ObjectMetricStatus" }, "io_k8s_api_autoscaling_v2beta2_PodsMetricSource": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_PodsMetricSource" }, "io_k8s_api_autoscaling_v2beta2_PodsMetricStatus": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_PodsMetricStatus" }, "io_k8s_api_autoscaling_v2beta2_ResourceMetricSource": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_ResourceMetricSource" }, "io_k8s_api_autoscaling_v2beta2_ResourceMetricStatus": { "$ref": "#/definitions/io_k8s_api_autoscaling_v2beta2_ResourceMetricStatus" }, "io_k8s_api_batch_v1_Job": { "$ref": "#/definitions/io_k8s_api_batch_v1_Job" }, "io_k8s_api_batch_v1_JobCondition": { "$ref": "#/definitions/io_k8s_api_batch_v1_JobCondition" }, "io_k8s_api_batch_v1_JobList": { "$ref": "#/definitions/io_k8s_api_batch_v1_JobList" }, "io_k8s_api_batch_v1_JobSpec": { "$ref": "#/definitions/io_k8s_api_batch_v1_JobSpec" }, "io_k8s_api_batch_v1_JobStatus": { "$ref": "#/definitions/io_k8s_api_batch_v1_JobStatus" }, "io_k8s_api_batch_v1beta1_CronJob": { "$ref": "#/definitions/io_k8s_api_batch_v1beta1_CronJob" }, "io_k8s_api_batch_v1beta1_CronJobList": { "$ref": "#/definitions/io_k8s_api_batch_v1beta1_CronJobList" }, "io_k8s_api_batch_v1beta1_CronJobSpec": { "$ref": "#/definitions/io_k8s_api_batch_v1beta1_CronJobSpec" }, "io_k8s_api_batch_v1beta1_CronJobStatus": { "$ref": "#/definitions/io_k8s_api_batch_v1beta1_CronJobStatus" }, "io_k8s_api_batch_v1beta1_JobTemplateSpec": { "$ref": "#/definitions/io_k8s_api_batch_v1beta1_JobTemplateSpec" }, "io_k8s_api_batch_v2alpha1_CronJob": { "$ref": "#/definitions/io_k8s_api_batch_v2alpha1_CronJob" }, "io_k8s_api_batch_v2alpha1_CronJobList": { "$ref": "#/definitions/io_k8s_api_batch_v2alpha1_CronJobList" }, "io_k8s_api_batch_v2alpha1_CronJobSpec": { "$ref": "#/definitions/io_k8s_api_batch_v2alpha1_CronJobSpec" }, "io_k8s_api_batch_v2alpha1_CronJobStatus": { "$ref": "#/definitions/io_k8s_api_batch_v2alpha1_CronJobStatus" }, "io_k8s_api_batch_v2alpha1_JobTemplateSpec": { "$ref": "#/definitions/io_k8s_api_batch_v2alpha1_JobTemplateSpec" }, "io_k8s_api_certificates_v1beta1_CertificateSigningRequest": { "$ref": "#/definitions/io_k8s_api_certificates_v1beta1_CertificateSigningRequest" }, "io_k8s_api_certificates_v1beta1_CertificateSigningRequestCondition": { "$ref": "#/definitions/io_k8s_api_certificates_v1beta1_CertificateSigningRequestCondition" }, "io_k8s_api_certificates_v1beta1_CertificateSigningRequestList": { "$ref": "#/definitions/io_k8s_api_certificates_v1beta1_CertificateSigningRequestList" }, "io_k8s_api_certificates_v1beta1_CertificateSigningRequestSpec": { "$ref": "#/definitions/io_k8s_api_certificates_v1beta1_CertificateSigningRequestSpec" }, "io_k8s_api_certificates_v1beta1_CertificateSigningRequestStatus": { "$ref": "#/definitions/io_k8s_api_certificates_v1beta1_CertificateSigningRequestStatus" }, "io_k8s_api_coordination_v1_Lease": { "$ref": "#/definitions/io_k8s_api_coordination_v1_Lease" }, "io_k8s_api_coordination_v1_LeaseList": { "$ref": "#/definitions/io_k8s_api_coordination_v1_LeaseList" }, "io_k8s_api_coordination_v1_LeaseSpec": { "$ref": "#/definitions/io_k8s_api_coordination_v1_LeaseSpec" }, "io_k8s_api_coordination_v1beta1_Lease": { "$ref": "#/definitions/io_k8s_api_coordination_v1beta1_Lease" }, "io_k8s_api_coordination_v1beta1_LeaseList": { "$ref": "#/definitions/io_k8s_api_coordination_v1beta1_LeaseList" }, "io_k8s_api_coordination_v1beta1_LeaseSpec": { "$ref": "#/definitions/io_k8s_api_coordination_v1beta1_LeaseSpec" }, "io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource": { "$ref": "#/definitions/io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource" }, "io_k8s_api_core_v1_Affinity": { "$ref": "#/definitions/io_k8s_api_core_v1_Affinity" }, "io_k8s_api_core_v1_AttachedVolume": { "$ref": "#/definitions/io_k8s_api_core_v1_AttachedVolume" }, "io_k8s_api_core_v1_AzureDiskVolumeSource": { "$ref": "#/definitions/io_k8s_api_core_v1_AzureDiskVolumeSource" }, "io_k8s_api_core_v1_AzureFilePersistentVolumeSource": { "$ref": "#/definitions/io_k8s_api_core_v1_AzureFilePersistentVolumeSource" }, "io_k8s_api_core_v1_AzureFileVolumeSource": { "$ref": "#/definitions/io_k8s_api_core_v1_AzureFileVolumeSource" }, "io_k8s_api_core_v1_Binding": { "$ref": "#/definitions/io_k8s_api_core_v1_Binding" }, "io_k8s_api_core_v1_CSIPersistentVolumeSource": { "$ref": "#/definitions/io_k8s_api_core_v1_CSIPersistentVolumeSource" }, "io_k8s_api_core_v1_CSIVolumeSource": { "$ref": "#/definitions/io_k8s_api_core_v1_CSIVolumeSource" }, "io_k8s_api_core_v1_Capabilities": { "$ref": "#/definitions/io_k8s_api_core_v1_Capabilities" }, "io_k8s_api_core_v1_CephFSPersistentVolumeSource": { "$ref": "#/definitions/io_k8s_api_core_v1_CephFSPersistentVolumeSource" }, "io_k8s_api_core_v1_CephFSVolumeSource": { "$ref": "#/definitions/io_k8s_api_core_v1_CephFSVolumeSource" }, "io_k8s_api_core_v1_CinderPersistentVolumeSource": { "$ref": "#/definitions/io_k8s_api_core_v1_CinderPersistentVolumeSource" }, "io_k8s_api_core_v1_CinderVolumeSource": { "$ref": "#/definitions/io_k8s_api_core_v1_CinderVolumeSource" }, "io_k8s_api_core_v1_ClientIPConfig": { "$ref": "#/definitions/io_k8s_api_core_v1_ClientIPConfig" }, "io_k8s_api_core_v1_ComponentCondition": { "$ref": "#/definitions/io_k8s_api_core_v1_ComponentCondition" }, "io_k8s_api_core_v1_ComponentStatus": { "$ref": "#/definitions/io_k8s_api_core_v1_ComponentStatus" }, "io_k8s_api_core_v1_ComponentStatusList": { "$ref": "#/definitions/io_k8s_api_core_v1_ComponentStatusList" }, "io_k8s_api_core_v1_ConfigMap": { "$ref": "#/definitions/io_k8s_api_core_v1_ConfigMap" }, "io_k8s_api_core_v1_ConfigMapEnvSource": { "$ref": "#/definitions/io_k8s_api_core_v1_ConfigMapEnvSource" }, "io_k8s_api_core_v1_ConfigMapKeySelector": { "$ref": "#/definitions/io_k8s_api_core_v1_ConfigMapKeySelector" }, "io_k8s_api_core_v1_ConfigMapList": { "$ref": "#/definitions/io_k8s_api_core_v1_ConfigMapList" }, "io_k8s_api_core_v1_ConfigMapNodeConfigSource": { "$ref": "#/definitions/io_k8s_api_core_v1_ConfigMapNodeConfigSource" }, "io_k8s_api_core_v1_ConfigMapProjection": { "$ref": "#/definitions/io_k8s_api_core_v1_ConfigMapProjection" }, "io_k8s_api_core_v1_ConfigMapVolumeSource": { "$ref": "#/definitions/io_k8s_api_core_v1_ConfigMapVolumeSource" }, "io_k8s_api_core_v1_Container": { "$ref": "#/definitions/io_k8s_api_core_v1_Container" }, "io_k8s_api_core_v1_ContainerImage": { "$ref": "#/definitions/io_k8s_api_core_v1_ContainerImage" }, "io_k8s_api_core_v1_ContainerPort": { "$ref": "#/definitions/io_k8s_api_core_v1_ContainerPort" }, "io_k8s_api_core_v1_ContainerState": { "$ref": "#/definitions/io_k8s_api_core_v1_ContainerState" }, "io_k8s_api_core_v1_ContainerStateRunning": { "$ref": "#/definitions/io_k8s_api_core_v1_ContainerStateRunning" }, "io_k8s_api_core_v1_ContainerStateTerminated": { "$ref": "#/definitions/io_k8s_api_core_v1_ContainerStateTerminated" }, "io_k8s_api_core_v1_ContainerStateWaiting": { "$ref": "#/definitions/io_k8s_api_core_v1_ContainerStateWaiting" }, "io_k8s_api_core_v1_ContainerStatus": { "$ref": "#/definitions/io_k8s_api_core_v1_ContainerStatus" }, "io_k8s_api_core_v1_DaemonEndpoint": { "$ref": "#/definitions/io_k8s_api_core_v1_DaemonEndpoint" }, "io_k8s_api_core_v1_DownwardAPIProjection": { "$ref": "#/definitions/io_k8s_api_core_v1_DownwardAPIProjection" }, "io_k8s_api_core_v1_DownwardAPIVolumeFile": { "$ref": "#/definitions/io_k8s_api_core_v1_DownwardAPIVolumeFile" }, "io_k8s_api_core_v1_DownwardAPIVolumeSource": { "$ref": "#/definitions/io_k8s_api_core_v1_DownwardAPIVolumeSource" }, "io_k8s_api_core_v1_EmptyDirVolumeSource": { "$ref": "#/definitions/io_k8s_api_core_v1_EmptyDirVolumeSource" }, "io_k8s_api_core_v1_EndpointAddress": { "$ref": "#/definitions/io_k8s_api_core_v1_EndpointAddress" }, "io_k8s_api_core_v1_EndpointPort": { "$ref": "#/definitions/io_k8s_api_core_v1_EndpointPort" }, "io_k8s_api_core_v1_EndpointSubset": { "$ref": "#/definitions/io_k8s_api_core_v1_EndpointSubset" }, "io_k8s_api_core_v1_Endpoints": { "$ref": "#/definitions/io_k8s_api_core_v1_Endpoints" }, "io_k8s_api_core_v1_EndpointsList": { "$ref": "#/definitions/io_k8s_api_core_v1_EndpointsList" }, "io_k8s_api_core_v1_EnvFromSource": { "$ref": "#/definitions/io_k8s_api_core_v1_EnvFromSource" }, "io_k8s_api_core_v1_EnvVar": { "$ref": "#/definitions/io_k8s_api_core_v1_EnvVar" }, "io_k8s_api_core_v1_EnvVarSource": { "$ref": "#/definitions/io_k8s_api_core_v1_EnvVarSource" }, "io_k8s_api_core_v1_EphemeralContainer": { "$ref": "#/definitions/io_k8s_api_core_v1_EphemeralContainer" }, "io_k8s_api_core_v1_Event": { "$ref": "#/definitions/io_k8s_api_core_v1_Event" }, "io_k8s_api_core_v1_EventList": { "$ref": "#/definitions/io_k8s_api_core_v1_EventList" }, "io_k8s_api_core_v1_EventSeries": { "$ref": "#/definitions/io_k8s_api_core_v1_EventSeries" }, "io_k8s_api_core_v1_EventSource": { "$ref": "#/definitions/io_k8s_api_core_v1_EventSource" }, "io_k8s_api_core_v1_ExecAction": { "$ref": "#/definitions/io_k8s_api_core_v1_ExecAction" }, "io_k8s_api_core_v1_FCVolumeSource": { "$ref": "#/definitions/io_k8s_api_core_v1_FCVolumeSource" }, "io_k8s_api_core_v1_FlexPersistentVolumeSource": { "$ref": "#/definitions/io_k8s_api_core_v1_FlexPersistentVolumeSource" }, "io_k8s_api_core_v1_FlexVolumeSource": { "$ref": "#/definitions/io_k8s_api_core_v1_FlexVolumeSource" }, "io_k8s_api_core_v1_FlockerVolumeSource": { "$ref": "#/definitions/io_k8s_api_core_v1_FlockerVolumeSource" }, "io_k8s_api_core_v1_GCEPersistentDiskVolumeSource": { "$ref": "#/definitions/io_k8s_api_core_v1_GCEPersistentDiskVolumeSource" }, "io_k8s_api_core_v1_GitRepoVolumeSource": { "$ref": "#/definitions/io_k8s_api_core_v1_GitRepoVolumeSource" }, "io_k8s_api_core_v1_GlusterfsPersistentVolumeSource": { "$ref": "#/definitions/io_k8s_api_core_v1_GlusterfsPersistentVolumeSource" }, "io_k8s_api_core_v1_GlusterfsVolumeSource": { "$ref": "#/definitions/io_k8s_api_core_v1_GlusterfsVolumeSource" }, "io_k8s_api_core_v1_HTTPGetAction": { "$ref": "#/definitions/io_k8s_api_core_v1_HTTPGetAction" }, "io_k8s_api_core_v1_HTTPHeader": { "$ref": "#/definitions/io_k8s_api_core_v1_HTTPHeader" }, "io_k8s_api_core_v1_Handler": { "$ref": "#/definitions/io_k8s_api_core_v1_Handler" }, "io_k8s_api_core_v1_HostAlias": { "$ref": "#/definitions/io_k8s_api_core_v1_HostAlias" }, "io_k8s_api_core_v1_HostPathVolumeSource": { "$ref": "#/definitions/io_k8s_api_core_v1_HostPathVolumeSource" }, "io_k8s_api_core_v1_ISCSIPersistentVolumeSource": { "$ref": "#/definitions/io_k8s_api_core_v1_ISCSIPersistentVolumeSource" }, "io_k8s_api_core_v1_ISCSIVolumeSource": { "$ref": "#/definitions/io_k8s_api_core_v1_ISCSIVolumeSource" }, "io_k8s_api_core_v1_KeyToPath": { "$ref": "#/definitions/io_k8s_api_core_v1_KeyToPath" }, "io_k8s_api_core_v1_Lifecycle": { "$ref": "#/definitions/io_k8s_api_core_v1_Lifecycle" }, "io_k8s_api_core_v1_LimitRange": { "$ref": "#/definitions/io_k8s_api_core_v1_LimitRange" }, "io_k8s_api_core_v1_LimitRangeItem": { "$ref": "#/definitions/io_k8s_api_core_v1_LimitRangeItem" }, "io_k8s_api_core_v1_LimitRangeList": { "$ref": "#/definitions/io_k8s_api_core_v1_LimitRangeList" }, "io_k8s_api_core_v1_LimitRangeSpec": { "$ref": "#/definitions/io_k8s_api_core_v1_LimitRangeSpec" }, "io_k8s_api_core_v1_LoadBalancerIngress": { "$ref": "#/definitions/io_k8s_api_core_v1_LoadBalancerIngress" }, "io_k8s_api_core_v1_LoadBalancerStatus": { "$ref": "#/definitions/io_k8s_api_core_v1_LoadBalancerStatus" }, "io_k8s_api_core_v1_LocalObjectReference": { "$ref": "#/definitions/io_k8s_api_core_v1_LocalObjectReference" }, "io_k8s_api_core_v1_LocalVolumeSource": { "$ref": "#/definitions/io_k8s_api_core_v1_LocalVolumeSource" }, "io_k8s_api_core_v1_NFSVolumeSource": { "$ref": "#/definitions/io_k8s_api_core_v1_NFSVolumeSource" }, "io_k8s_api_core_v1_Namespace": { "$ref": "#/definitions/io_k8s_api_core_v1_Namespace" }, "io_k8s_api_core_v1_NamespaceCondition": { "$ref": "#/definitions/io_k8s_api_core_v1_NamespaceCondition" }, "io_k8s_api_core_v1_NamespaceList": { "$ref": "#/definitions/io_k8s_api_core_v1_NamespaceList" }, "io_k8s_api_core_v1_NamespaceSpec": { "$ref": "#/definitions/io_k8s_api_core_v1_NamespaceSpec" }, "io_k8s_api_core_v1_NamespaceStatus": { "$ref": "#/definitions/io_k8s_api_core_v1_NamespaceStatus" }, "io_k8s_api_core_v1_Node": { "$ref": "#/definitions/io_k8s_api_core_v1_Node" }, "io_k8s_api_core_v1_NodeAddress": { "$ref": "#/definitions/io_k8s_api_core_v1_NodeAddress" }, "io_k8s_api_core_v1_NodeAffinity": { "$ref": "#/definitions/io_k8s_api_core_v1_NodeAffinity" }, "io_k8s_api_core_v1_NodeCondition": { "$ref": "#/definitions/io_k8s_api_core_v1_NodeCondition" }, "io_k8s_api_core_v1_NodeConfigSource": { "$ref": "#/definitions/io_k8s_api_core_v1_NodeConfigSource" }, "io_k8s_api_core_v1_NodeConfigStatus": { "$ref": "#/definitions/io_k8s_api_core_v1_NodeConfigStatus" }, "io_k8s_api_core_v1_NodeDaemonEndpoints": { "$ref": "#/definitions/io_k8s_api_core_v1_NodeDaemonEndpoints" }, "io_k8s_api_core_v1_NodeList": { "$ref": "#/definitions/io_k8s_api_core_v1_NodeList" }, "io_k8s_api_core_v1_NodeSelector": { "$ref": "#/definitions/io_k8s_api_core_v1_NodeSelector" }, "io_k8s_api_core_v1_NodeSelectorRequirement": { "$ref": "#/definitions/io_k8s_api_core_v1_NodeSelectorRequirement" }, "io_k8s_api_core_v1_NodeSelectorTerm": { "$ref": "#/definitions/io_k8s_api_core_v1_NodeSelectorTerm" }, "io_k8s_api_core_v1_NodeSpec": { "$ref": "#/definitions/io_k8s_api_core_v1_NodeSpec" }, "io_k8s_api_core_v1_NodeStatus": { "$ref": "#/definitions/io_k8s_api_core_v1_NodeStatus" }, "io_k8s_api_core_v1_NodeSystemInfo": { "$ref": "#/definitions/io_k8s_api_core_v1_NodeSystemInfo" }, "io_k8s_api_core_v1_ObjectFieldSelector": { "$ref": "#/definitions/io_k8s_api_core_v1_ObjectFieldSelector" }, "io_k8s_api_core_v1_ObjectReference": { "$ref": "#/definitions/io_k8s_api_core_v1_ObjectReference" }, "io_k8s_api_core_v1_PersistentVolume": { "$ref": "#/definitions/io_k8s_api_core_v1_PersistentVolume" }, "io_k8s_api_core_v1_PersistentVolumeClaim": { "$ref": "#/definitions/io_k8s_api_core_v1_PersistentVolumeClaim" }, "io_k8s_api_core_v1_PersistentVolumeClaimCondition": { "$ref": "#/definitions/io_k8s_api_core_v1_PersistentVolumeClaimCondition" }, "io_k8s_api_core_v1_PersistentVolumeClaimList": { "$ref": "#/definitions/io_k8s_api_core_v1_PersistentVolumeClaimList" }, "io_k8s_api_core_v1_PersistentVolumeClaimSpec": { "$ref": "#/definitions/io_k8s_api_core_v1_PersistentVolumeClaimSpec" }, "io_k8s_api_core_v1_PersistentVolumeClaimStatus": { "$ref": "#/definitions/io_k8s_api_core_v1_PersistentVolumeClaimStatus" }, "io_k8s_api_core_v1_PersistentVolumeClaimVolumeSource": { "$ref": "#/definitions/io_k8s_api_core_v1_PersistentVolumeClaimVolumeSource" }, "io_k8s_api_core_v1_PersistentVolumeList": { "$ref": "#/definitions/io_k8s_api_core_v1_PersistentVolumeList" }, "io_k8s_api_core_v1_PersistentVolumeSpec": { "$ref": "#/definitions/io_k8s_api_core_v1_PersistentVolumeSpec" }, "io_k8s_api_core_v1_PersistentVolumeStatus": { "$ref": "#/definitions/io_k8s_api_core_v1_PersistentVolumeStatus" }, "io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource": { "$ref": "#/definitions/io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource" }, "io_k8s_api_core_v1_Pod": { "$ref": "#/definitions/io_k8s_api_core_v1_Pod" }, "io_k8s_api_core_v1_PodAffinity": { "$ref": "#/definitions/io_k8s_api_core_v1_PodAffinity" }, "io_k8s_api_core_v1_PodAffinityTerm": { "$ref": "#/definitions/io_k8s_api_core_v1_PodAffinityTerm" }, "io_k8s_api_core_v1_PodAntiAffinity": { "$ref": "#/definitions/io_k8s_api_core_v1_PodAntiAffinity" }, "io_k8s_api_core_v1_PodCondition": { "$ref": "#/definitions/io_k8s_api_core_v1_PodCondition" }, "io_k8s_api_core_v1_PodDNSConfig": { "$ref": "#/definitions/io_k8s_api_core_v1_PodDNSConfig" }, "io_k8s_api_core_v1_PodDNSConfigOption": { "$ref": "#/definitions/io_k8s_api_core_v1_PodDNSConfigOption" }, "io_k8s_api_core_v1_PodIP": { "$ref": "#/definitions/io_k8s_api_core_v1_PodIP" }, "io_k8s_api_core_v1_PodList": { "$ref": "#/definitions/io_k8s_api_core_v1_PodList" }, "io_k8s_api_core_v1_PodReadinessGate": { "$ref": "#/definitions/io_k8s_api_core_v1_PodReadinessGate" }, "io_k8s_api_core_v1_PodSecurityContext": { "$ref": "#/definitions/io_k8s_api_core_v1_PodSecurityContext" }, "io_k8s_api_core_v1_PodSpec": { "$ref": "#/definitions/io_k8s_api_core_v1_PodSpec" }, "io_k8s_api_core_v1_PodStatus": { "$ref": "#/definitions/io_k8s_api_core_v1_PodStatus" }, "io_k8s_api_core_v1_PodTemplate": { "$ref": "#/definitions/io_k8s_api_core_v1_PodTemplate" }, "io_k8s_api_core_v1_PodTemplateList": { "$ref": "#/definitions/io_k8s_api_core_v1_PodTemplateList" }, "io_k8s_api_core_v1_PodTemplateSpec": { "$ref": "#/definitions/io_k8s_api_core_v1_PodTemplateSpec" }, "io_k8s_api_core_v1_PortworxVolumeSource": { "$ref": "#/definitions/io_k8s_api_core_v1_PortworxVolumeSource" }, "io_k8s_api_core_v1_PreferredSchedulingTerm": { "$ref": "#/definitions/io_k8s_api_core_v1_PreferredSchedulingTerm" }, "io_k8s_api_core_v1_Probe": { "$ref": "#/definitions/io_k8s_api_core_v1_Probe" }, "io_k8s_api_core_v1_ProjectedVolumeSource": { "$ref": "#/definitions/io_k8s_api_core_v1_ProjectedVolumeSource" }, "io_k8s_api_core_v1_QuobyteVolumeSource": { "$ref": "#/definitions/io_k8s_api_core_v1_QuobyteVolumeSource" }, "io_k8s_api_core_v1_RBDPersistentVolumeSource": { "$ref": "#/definitions/io_k8s_api_core_v1_RBDPersistentVolumeSource" }, "io_k8s_api_core_v1_RBDVolumeSource": { "$ref": "#/definitions/io_k8s_api_core_v1_RBDVolumeSource" }, "io_k8s_api_core_v1_ReplicationController": { "$ref": "#/definitions/io_k8s_api_core_v1_ReplicationController" }, "io_k8s_api_core_v1_ReplicationControllerCondition": { "$ref": "#/definitions/io_k8s_api_core_v1_ReplicationControllerCondition" }, "io_k8s_api_core_v1_ReplicationControllerList": { "$ref": "#/definitions/io_k8s_api_core_v1_ReplicationControllerList" }, "io_k8s_api_core_v1_ReplicationControllerSpec": { "$ref": "#/definitions/io_k8s_api_core_v1_ReplicationControllerSpec" }, "io_k8s_api_core_v1_ReplicationControllerStatus": { "$ref": "#/definitions/io_k8s_api_core_v1_ReplicationControllerStatus" }, "io_k8s_api_core_v1_ResourceFieldSelector": { "$ref": "#/definitions/io_k8s_api_core_v1_ResourceFieldSelector" }, "io_k8s_api_core_v1_ResourceQuota": { "$ref": "#/definitions/io_k8s_api_core_v1_ResourceQuota" }, "io_k8s_api_core_v1_ResourceQuotaList": { "$ref": "#/definitions/io_k8s_api_core_v1_ResourceQuotaList" }, "io_k8s_api_core_v1_ResourceQuotaSpec": { "$ref": "#/definitions/io_k8s_api_core_v1_ResourceQuotaSpec" }, "io_k8s_api_core_v1_ResourceQuotaStatus": { "$ref": "#/definitions/io_k8s_api_core_v1_ResourceQuotaStatus" }, "io_k8s_api_core_v1_ResourceRequirements": { "$ref": "#/definitions/io_k8s_api_core_v1_ResourceRequirements" }, "io_k8s_api_core_v1_SELinuxOptions": { "$ref": "#/definitions/io_k8s_api_core_v1_SELinuxOptions" }, "io_k8s_api_core_v1_ScaleIOPersistentVolumeSource": { "$ref": "#/definitions/io_k8s_api_core_v1_ScaleIOPersistentVolumeSource" }, "io_k8s_api_core_v1_ScaleIOVolumeSource": { "$ref": "#/definitions/io_k8s_api_core_v1_ScaleIOVolumeSource" }, "io_k8s_api_core_v1_ScopeSelector": { "$ref": "#/definitions/io_k8s_api_core_v1_ScopeSelector" }, "io_k8s_api_core_v1_ScopedResourceSelectorRequirement": { "$ref": "#/definitions/io_k8s_api_core_v1_ScopedResourceSelectorRequirement" }, "io_k8s_api_core_v1_Secret": { "$ref": "#/definitions/io_k8s_api_core_v1_Secret" }, "io_k8s_api_core_v1_SecretEnvSource": { "$ref": "#/definitions/io_k8s_api_core_v1_SecretEnvSource" }, "io_k8s_api_core_v1_SecretKeySelector": { "$ref": "#/definitions/io_k8s_api_core_v1_SecretKeySelector" }, "io_k8s_api_core_v1_SecretList": { "$ref": "#/definitions/io_k8s_api_core_v1_SecretList" }, "io_k8s_api_core_v1_SecretProjection": { "$ref": "#/definitions/io_k8s_api_core_v1_SecretProjection" }, "io_k8s_api_core_v1_SecretReference": { "$ref": "#/definitions/io_k8s_api_core_v1_SecretReference" }, "io_k8s_api_core_v1_SecretVolumeSource": { "$ref": "#/definitions/io_k8s_api_core_v1_SecretVolumeSource" }, "io_k8s_api_core_v1_SecurityContext": { "$ref": "#/definitions/io_k8s_api_core_v1_SecurityContext" }, "io_k8s_api_core_v1_Service": { "$ref": "#/definitions/io_k8s_api_core_v1_Service" }, "io_k8s_api_core_v1_ServiceAccount": { "$ref": "#/definitions/io_k8s_api_core_v1_ServiceAccount" }, "io_k8s_api_core_v1_ServiceAccountList": { "$ref": "#/definitions/io_k8s_api_core_v1_ServiceAccountList" }, "io_k8s_api_core_v1_ServiceAccountTokenProjection": { "$ref": "#/definitions/io_k8s_api_core_v1_ServiceAccountTokenProjection" }, "io_k8s_api_core_v1_ServiceList": { "$ref": "#/definitions/io_k8s_api_core_v1_ServiceList" }, "io_k8s_api_core_v1_ServicePort": { "$ref": "#/definitions/io_k8s_api_core_v1_ServicePort" }, "io_k8s_api_core_v1_ServiceSpec": { "$ref": "#/definitions/io_k8s_api_core_v1_ServiceSpec" }, "io_k8s_api_core_v1_ServiceStatus": { "$ref": "#/definitions/io_k8s_api_core_v1_ServiceStatus" }, "io_k8s_api_core_v1_SessionAffinityConfig": { "$ref": "#/definitions/io_k8s_api_core_v1_SessionAffinityConfig" }, "io_k8s_api_core_v1_StorageOSPersistentVolumeSource": { "$ref": "#/definitions/io_k8s_api_core_v1_StorageOSPersistentVolumeSource" }, "io_k8s_api_core_v1_StorageOSVolumeSource": { "$ref": "#/definitions/io_k8s_api_core_v1_StorageOSVolumeSource" }, "io_k8s_api_core_v1_Sysctl": { "$ref": "#/definitions/io_k8s_api_core_v1_Sysctl" }, "io_k8s_api_core_v1_TCPSocketAction": { "$ref": "#/definitions/io_k8s_api_core_v1_TCPSocketAction" }, "io_k8s_api_core_v1_Taint": { "$ref": "#/definitions/io_k8s_api_core_v1_Taint" }, "io_k8s_api_core_v1_Toleration": { "$ref": "#/definitions/io_k8s_api_core_v1_Toleration" }, "io_k8s_api_core_v1_TopologySelectorLabelRequirement": { "$ref": "#/definitions/io_k8s_api_core_v1_TopologySelectorLabelRequirement" }, "io_k8s_api_core_v1_TopologySelectorTerm": { "$ref": "#/definitions/io_k8s_api_core_v1_TopologySelectorTerm" }, "io_k8s_api_core_v1_TopologySpreadConstraint": { "$ref": "#/definitions/io_k8s_api_core_v1_TopologySpreadConstraint" }, "io_k8s_api_core_v1_TypedLocalObjectReference": { "$ref": "#/definitions/io_k8s_api_core_v1_TypedLocalObjectReference" }, "io_k8s_api_core_v1_Volume": { "$ref": "#/definitions/io_k8s_api_core_v1_Volume" }, "io_k8s_api_core_v1_VolumeDevice": { "$ref": "#/definitions/io_k8s_api_core_v1_VolumeDevice" }, "io_k8s_api_core_v1_VolumeMount": { "$ref": "#/definitions/io_k8s_api_core_v1_VolumeMount" }, "io_k8s_api_core_v1_VolumeNodeAffinity": { "$ref": "#/definitions/io_k8s_api_core_v1_VolumeNodeAffinity" }, "io_k8s_api_core_v1_VolumeProjection": { "$ref": "#/definitions/io_k8s_api_core_v1_VolumeProjection" }, "io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource": { "$ref": "#/definitions/io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource" }, "io_k8s_api_core_v1_WeightedPodAffinityTerm": { "$ref": "#/definitions/io_k8s_api_core_v1_WeightedPodAffinityTerm" }, "io_k8s_api_core_v1_WindowsSecurityContextOptions": { "$ref": "#/definitions/io_k8s_api_core_v1_WindowsSecurityContextOptions" }, "io_k8s_api_discovery_v1beta1_Endpoint": { "$ref": "#/definitions/io_k8s_api_discovery_v1beta1_Endpoint" }, "io_k8s_api_discovery_v1beta1_EndpointConditions": { "$ref": "#/definitions/io_k8s_api_discovery_v1beta1_EndpointConditions" }, "io_k8s_api_discovery_v1beta1_EndpointPort": { "$ref": "#/definitions/io_k8s_api_discovery_v1beta1_EndpointPort" }, "io_k8s_api_discovery_v1beta1_EndpointSlice": { "$ref": "#/definitions/io_k8s_api_discovery_v1beta1_EndpointSlice" }, "io_k8s_api_discovery_v1beta1_EndpointSliceList": { "$ref": "#/definitions/io_k8s_api_discovery_v1beta1_EndpointSliceList" }, "io_k8s_api_events_v1beta1_Event": { "$ref": "#/definitions/io_k8s_api_events_v1beta1_Event" }, "io_k8s_api_events_v1beta1_EventList": { "$ref": "#/definitions/io_k8s_api_events_v1beta1_EventList" }, "io_k8s_api_events_v1beta1_EventSeries": { "$ref": "#/definitions/io_k8s_api_events_v1beta1_EventSeries" }, "io_k8s_api_extensions_v1beta1_HTTPIngressPath": { "$ref": "#/definitions/io_k8s_api_extensions_v1beta1_HTTPIngressPath" }, "io_k8s_api_extensions_v1beta1_HTTPIngressRuleValue": { "$ref": "#/definitions/io_k8s_api_extensions_v1beta1_HTTPIngressRuleValue" }, "io_k8s_api_extensions_v1beta1_Ingress": { "$ref": "#/definitions/io_k8s_api_extensions_v1beta1_Ingress" }, "io_k8s_api_extensions_v1beta1_IngressBackend": { "$ref": "#/definitions/io_k8s_api_extensions_v1beta1_IngressBackend" }, "io_k8s_api_extensions_v1beta1_IngressList": { "$ref": "#/definitions/io_k8s_api_extensions_v1beta1_IngressList" }, "io_k8s_api_extensions_v1beta1_IngressRule": { "$ref": "#/definitions/io_k8s_api_extensions_v1beta1_IngressRule" }, "io_k8s_api_extensions_v1beta1_IngressSpec": { "$ref": "#/definitions/io_k8s_api_extensions_v1beta1_IngressSpec" }, "io_k8s_api_extensions_v1beta1_IngressStatus": { "$ref": "#/definitions/io_k8s_api_extensions_v1beta1_IngressStatus" }, "io_k8s_api_extensions_v1beta1_IngressTLS": { "$ref": "#/definitions/io_k8s_api_extensions_v1beta1_IngressTLS" }, "io_k8s_api_flowcontrol_v1alpha1_FlowDistinguisherMethod": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_FlowDistinguisherMethod" }, "io_k8s_api_flowcontrol_v1alpha1_FlowSchema": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_FlowSchema" }, "io_k8s_api_flowcontrol_v1alpha1_FlowSchemaCondition": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_FlowSchemaCondition" }, "io_k8s_api_flowcontrol_v1alpha1_FlowSchemaList": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_FlowSchemaList" }, "io_k8s_api_flowcontrol_v1alpha1_FlowSchemaSpec": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_FlowSchemaSpec" }, "io_k8s_api_flowcontrol_v1alpha1_FlowSchemaStatus": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_FlowSchemaStatus" }, "io_k8s_api_flowcontrol_v1alpha1_GroupSubject": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_GroupSubject" }, "io_k8s_api_flowcontrol_v1alpha1_LimitResponse": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_LimitResponse" }, "io_k8s_api_flowcontrol_v1alpha1_LimitedPriorityLevelConfiguration": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_LimitedPriorityLevelConfiguration" }, "io_k8s_api_flowcontrol_v1alpha1_NonResourcePolicyRule": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_NonResourcePolicyRule" }, "io_k8s_api_flowcontrol_v1alpha1_PolicyRulesWithSubjects": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_PolicyRulesWithSubjects" }, "io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfiguration": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfiguration" }, "io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfigurationCondition": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfigurationCondition" }, "io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfigurationList": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfigurationList" }, "io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfigurationReference": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfigurationReference" }, "io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfigurationSpec": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfigurationSpec" }, "io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfigurationStatus": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfigurationStatus" }, "io_k8s_api_flowcontrol_v1alpha1_QueuingConfiguration": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_QueuingConfiguration" }, "io_k8s_api_flowcontrol_v1alpha1_ResourcePolicyRule": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_ResourcePolicyRule" }, "io_k8s_api_flowcontrol_v1alpha1_ServiceAccountSubject": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_ServiceAccountSubject" }, "io_k8s_api_flowcontrol_v1alpha1_Subject": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_Subject" }, "io_k8s_api_flowcontrol_v1alpha1_UserSubject": { "$ref": "#/definitions/io_k8s_api_flowcontrol_v1alpha1_UserSubject" }, "io_k8s_api_networking_v1_IPBlock": { "$ref": "#/definitions/io_k8s_api_networking_v1_IPBlock" }, "io_k8s_api_networking_v1_NetworkPolicy": { "$ref": "#/definitions/io_k8s_api_networking_v1_NetworkPolicy" }, "io_k8s_api_networking_v1_NetworkPolicyEgressRule": { "$ref": "#/definitions/io_k8s_api_networking_v1_NetworkPolicyEgressRule" }, "io_k8s_api_networking_v1_NetworkPolicyIngressRule": { "$ref": "#/definitions/io_k8s_api_networking_v1_NetworkPolicyIngressRule" }, "io_k8s_api_networking_v1_NetworkPolicyList": { "$ref": "#/definitions/io_k8s_api_networking_v1_NetworkPolicyList" }, "io_k8s_api_networking_v1_NetworkPolicyPeer": { "$ref": "#/definitions/io_k8s_api_networking_v1_NetworkPolicyPeer" }, "io_k8s_api_networking_v1_NetworkPolicyPort": { "$ref": "#/definitions/io_k8s_api_networking_v1_NetworkPolicyPort" }, "io_k8s_api_networking_v1_NetworkPolicySpec": { "$ref": "#/definitions/io_k8s_api_networking_v1_NetworkPolicySpec" }, "io_k8s_api_networking_v1beta1_HTTPIngressPath": { "$ref": "#/definitions/io_k8s_api_networking_v1beta1_HTTPIngressPath" }, "io_k8s_api_networking_v1beta1_HTTPIngressRuleValue": { "$ref": "#/definitions/io_k8s_api_networking_v1beta1_HTTPIngressRuleValue" }, "io_k8s_api_networking_v1beta1_Ingress": { "$ref": "#/definitions/io_k8s_api_networking_v1beta1_Ingress" }, "io_k8s_api_networking_v1beta1_IngressBackend": { "$ref": "#/definitions/io_k8s_api_networking_v1beta1_IngressBackend" }, "io_k8s_api_networking_v1beta1_IngressClass": { "$ref": "#/definitions/io_k8s_api_networking_v1beta1_IngressClass" }, "io_k8s_api_networking_v1beta1_IngressClassList": { "$ref": "#/definitions/io_k8s_api_networking_v1beta1_IngressClassList" }, "io_k8s_api_networking_v1beta1_IngressClassSpec": { "$ref": "#/definitions/io_k8s_api_networking_v1beta1_IngressClassSpec" }, "io_k8s_api_networking_v1beta1_IngressList": { "$ref": "#/definitions/io_k8s_api_networking_v1beta1_IngressList" }, "io_k8s_api_networking_v1beta1_IngressRule": { "$ref": "#/definitions/io_k8s_api_networking_v1beta1_IngressRule" }, "io_k8s_api_networking_v1beta1_IngressSpec": { "$ref": "#/definitions/io_k8s_api_networking_v1beta1_IngressSpec" }, "io_k8s_api_networking_v1beta1_IngressStatus": { "$ref": "#/definitions/io_k8s_api_networking_v1beta1_IngressStatus" }, "io_k8s_api_networking_v1beta1_IngressTLS": { "$ref": "#/definitions/io_k8s_api_networking_v1beta1_IngressTLS" }, "io_k8s_api_node_v1alpha1_Overhead": { "$ref": "#/definitions/io_k8s_api_node_v1alpha1_Overhead" }, "io_k8s_api_node_v1alpha1_RuntimeClass": { "$ref": "#/definitions/io_k8s_api_node_v1alpha1_RuntimeClass" }, "io_k8s_api_node_v1alpha1_RuntimeClassList": { "$ref": "#/definitions/io_k8s_api_node_v1alpha1_RuntimeClassList" }, "io_k8s_api_node_v1alpha1_RuntimeClassSpec": { "$ref": "#/definitions/io_k8s_api_node_v1alpha1_RuntimeClassSpec" }, "io_k8s_api_node_v1alpha1_Scheduling": { "$ref": "#/definitions/io_k8s_api_node_v1alpha1_Scheduling" }, "io_k8s_api_node_v1beta1_Overhead": { "$ref": "#/definitions/io_k8s_api_node_v1beta1_Overhead" }, "io_k8s_api_node_v1beta1_RuntimeClass": { "$ref": "#/definitions/io_k8s_api_node_v1beta1_RuntimeClass" }, "io_k8s_api_node_v1beta1_RuntimeClassList": { "$ref": "#/definitions/io_k8s_api_node_v1beta1_RuntimeClassList" }, "io_k8s_api_node_v1beta1_Scheduling": { "$ref": "#/definitions/io_k8s_api_node_v1beta1_Scheduling" }, "io_k8s_api_policy_v1beta1_AllowedCSIDriver": { "$ref": "#/definitions/io_k8s_api_policy_v1beta1_AllowedCSIDriver" }, "io_k8s_api_policy_v1beta1_AllowedFlexVolume": { "$ref": "#/definitions/io_k8s_api_policy_v1beta1_AllowedFlexVolume" }, "io_k8s_api_policy_v1beta1_AllowedHostPath": { "$ref": "#/definitions/io_k8s_api_policy_v1beta1_AllowedHostPath" }, "io_k8s_api_policy_v1beta1_Eviction": { "$ref": "#/definitions/io_k8s_api_policy_v1beta1_Eviction" }, "io_k8s_api_policy_v1beta1_FSGroupStrategyOptions": { "$ref": "#/definitions/io_k8s_api_policy_v1beta1_FSGroupStrategyOptions" }, "io_k8s_api_policy_v1beta1_HostPortRange": { "$ref": "#/definitions/io_k8s_api_policy_v1beta1_HostPortRange" }, "io_k8s_api_policy_v1beta1_IDRange": { "$ref": "#/definitions/io_k8s_api_policy_v1beta1_IDRange" }, "io_k8s_api_policy_v1beta1_PodDisruptionBudget": { "$ref": "#/definitions/io_k8s_api_policy_v1beta1_PodDisruptionBudget" }, "io_k8s_api_policy_v1beta1_PodDisruptionBudgetList": { "$ref": "#/definitions/io_k8s_api_policy_v1beta1_PodDisruptionBudgetList" }, "io_k8s_api_policy_v1beta1_PodDisruptionBudgetSpec": { "$ref": "#/definitions/io_k8s_api_policy_v1beta1_PodDisruptionBudgetSpec" }, "io_k8s_api_policy_v1beta1_PodDisruptionBudgetStatus": { "$ref": "#/definitions/io_k8s_api_policy_v1beta1_PodDisruptionBudgetStatus" }, "io_k8s_api_policy_v1beta1_PodSecurityPolicy": { "$ref": "#/definitions/io_k8s_api_policy_v1beta1_PodSecurityPolicy" }, "io_k8s_api_policy_v1beta1_PodSecurityPolicyList": { "$ref": "#/definitions/io_k8s_api_policy_v1beta1_PodSecurityPolicyList" }, "io_k8s_api_policy_v1beta1_PodSecurityPolicySpec": { "$ref": "#/definitions/io_k8s_api_policy_v1beta1_PodSecurityPolicySpec" }, "io_k8s_api_policy_v1beta1_RunAsGroupStrategyOptions": { "$ref": "#/definitions/io_k8s_api_policy_v1beta1_RunAsGroupStrategyOptions" }, "io_k8s_api_policy_v1beta1_RunAsUserStrategyOptions": { "$ref": "#/definitions/io_k8s_api_policy_v1beta1_RunAsUserStrategyOptions" }, "io_k8s_api_policy_v1beta1_RuntimeClassStrategyOptions": { "$ref": "#/definitions/io_k8s_api_policy_v1beta1_RuntimeClassStrategyOptions" }, "io_k8s_api_policy_v1beta1_SELinuxStrategyOptions": { "$ref": "#/definitions/io_k8s_api_policy_v1beta1_SELinuxStrategyOptions" }, "io_k8s_api_policy_v1beta1_SupplementalGroupsStrategyOptions": { "$ref": "#/definitions/io_k8s_api_policy_v1beta1_SupplementalGroupsStrategyOptions" }, "io_k8s_api_rbac_v1_AggregationRule": { "$ref": "#/definitions/io_k8s_api_rbac_v1_AggregationRule" }, "io_k8s_api_rbac_v1_ClusterRole": { "$ref": "#/definitions/io_k8s_api_rbac_v1_ClusterRole" }, "io_k8s_api_rbac_v1_ClusterRoleBinding": { "$ref": "#/definitions/io_k8s_api_rbac_v1_ClusterRoleBinding" }, "io_k8s_api_rbac_v1_ClusterRoleBindingList": { "$ref": "#/definitions/io_k8s_api_rbac_v1_ClusterRoleBindingList" }, "io_k8s_api_rbac_v1_ClusterRoleList": { "$ref": "#/definitions/io_k8s_api_rbac_v1_ClusterRoleList" }, "io_k8s_api_rbac_v1_PolicyRule": { "$ref": "#/definitions/io_k8s_api_rbac_v1_PolicyRule" }, "io_k8s_api_rbac_v1_Role": { "$ref": "#/definitions/io_k8s_api_rbac_v1_Role" }, "io_k8s_api_rbac_v1_RoleBinding": { "$ref": "#/definitions/io_k8s_api_rbac_v1_RoleBinding" }, "io_k8s_api_rbac_v1_RoleBindingList": { "$ref": "#/definitions/io_k8s_api_rbac_v1_RoleBindingList" }, "io_k8s_api_rbac_v1_RoleList": { "$ref": "#/definitions/io_k8s_api_rbac_v1_RoleList" }, "io_k8s_api_rbac_v1_RoleRef": { "$ref": "#/definitions/io_k8s_api_rbac_v1_RoleRef" }, "io_k8s_api_rbac_v1_Subject": { "$ref": "#/definitions/io_k8s_api_rbac_v1_Subject" }, "io_k8s_api_rbac_v1alpha1_AggregationRule": { "$ref": "#/definitions/io_k8s_api_rbac_v1alpha1_AggregationRule" }, "io_k8s_api_rbac_v1alpha1_ClusterRole": { "$ref": "#/definitions/io_k8s_api_rbac_v1alpha1_ClusterRole" }, "io_k8s_api_rbac_v1alpha1_ClusterRoleBinding": { "$ref": "#/definitions/io_k8s_api_rbac_v1alpha1_ClusterRoleBinding" }, "io_k8s_api_rbac_v1alpha1_ClusterRoleBindingList": { "$ref": "#/definitions/io_k8s_api_rbac_v1alpha1_ClusterRoleBindingList" }, "io_k8s_api_rbac_v1alpha1_ClusterRoleList": { "$ref": "#/definitions/io_k8s_api_rbac_v1alpha1_ClusterRoleList" }, "io_k8s_api_rbac_v1alpha1_PolicyRule": { "$ref": "#/definitions/io_k8s_api_rbac_v1alpha1_PolicyRule" }, "io_k8s_api_rbac_v1alpha1_Role": { "$ref": "#/definitions/io_k8s_api_rbac_v1alpha1_Role" }, "io_k8s_api_rbac_v1alpha1_RoleBinding": { "$ref": "#/definitions/io_k8s_api_rbac_v1alpha1_RoleBinding" }, "io_k8s_api_rbac_v1alpha1_RoleBindingList": { "$ref": "#/definitions/io_k8s_api_rbac_v1alpha1_RoleBindingList" }, "io_k8s_api_rbac_v1alpha1_RoleList": { "$ref": "#/definitions/io_k8s_api_rbac_v1alpha1_RoleList" }, "io_k8s_api_rbac_v1alpha1_RoleRef": { "$ref": "#/definitions/io_k8s_api_rbac_v1alpha1_RoleRef" }, "io_k8s_api_rbac_v1alpha1_Subject": { "$ref": "#/definitions/io_k8s_api_rbac_v1alpha1_Subject" }, "io_k8s_api_rbac_v1beta1_AggregationRule": { "$ref": "#/definitions/io_k8s_api_rbac_v1beta1_AggregationRule" }, "io_k8s_api_rbac_v1beta1_ClusterRole": { "$ref": "#/definitions/io_k8s_api_rbac_v1beta1_ClusterRole" }, "io_k8s_api_rbac_v1beta1_ClusterRoleBinding": { "$ref": "#/definitions/io_k8s_api_rbac_v1beta1_ClusterRoleBinding" }, "io_k8s_api_rbac_v1beta1_ClusterRoleBindingList": { "$ref": "#/definitions/io_k8s_api_rbac_v1beta1_ClusterRoleBindingList" }, "io_k8s_api_rbac_v1beta1_ClusterRoleList": { "$ref": "#/definitions/io_k8s_api_rbac_v1beta1_ClusterRoleList" }, "io_k8s_api_rbac_v1beta1_PolicyRule": { "$ref": "#/definitions/io_k8s_api_rbac_v1beta1_PolicyRule" }, "io_k8s_api_rbac_v1beta1_Role": { "$ref": "#/definitions/io_k8s_api_rbac_v1beta1_Role" }, "io_k8s_api_rbac_v1beta1_RoleBinding": { "$ref": "#/definitions/io_k8s_api_rbac_v1beta1_RoleBinding" }, "io_k8s_api_rbac_v1beta1_RoleBindingList": { "$ref": "#/definitions/io_k8s_api_rbac_v1beta1_RoleBindingList" }, "io_k8s_api_rbac_v1beta1_RoleList": { "$ref": "#/definitions/io_k8s_api_rbac_v1beta1_RoleList" }, "io_k8s_api_rbac_v1beta1_RoleRef": { "$ref": "#/definitions/io_k8s_api_rbac_v1beta1_RoleRef" }, "io_k8s_api_rbac_v1beta1_Subject": { "$ref": "#/definitions/io_k8s_api_rbac_v1beta1_Subject" }, "io_k8s_api_scheduling_v1_PriorityClass": { "$ref": "#/definitions/io_k8s_api_scheduling_v1_PriorityClass" }, "io_k8s_api_scheduling_v1_PriorityClassList": { "$ref": "#/definitions/io_k8s_api_scheduling_v1_PriorityClassList" }, "io_k8s_api_scheduling_v1alpha1_PriorityClass": { "$ref": "#/definitions/io_k8s_api_scheduling_v1alpha1_PriorityClass" }, "io_k8s_api_scheduling_v1alpha1_PriorityClassList": { "$ref": "#/definitions/io_k8s_api_scheduling_v1alpha1_PriorityClassList" }, "io_k8s_api_scheduling_v1beta1_PriorityClass": { "$ref": "#/definitions/io_k8s_api_scheduling_v1beta1_PriorityClass" }, "io_k8s_api_scheduling_v1beta1_PriorityClassList": { "$ref": "#/definitions/io_k8s_api_scheduling_v1beta1_PriorityClassList" }, "io_k8s_api_settings_v1alpha1_PodPreset": { "$ref": "#/definitions/io_k8s_api_settings_v1alpha1_PodPreset" }, "io_k8s_api_settings_v1alpha1_PodPresetList": { "$ref": "#/definitions/io_k8s_api_settings_v1alpha1_PodPresetList" }, "io_k8s_api_settings_v1alpha1_PodPresetSpec": { "$ref": "#/definitions/io_k8s_api_settings_v1alpha1_PodPresetSpec" }, "io_k8s_api_storage_v1_CSIDriver": { "$ref": "#/definitions/io_k8s_api_storage_v1_CSIDriver" }, "io_k8s_api_storage_v1_CSIDriverList": { "$ref": "#/definitions/io_k8s_api_storage_v1_CSIDriverList" }, "io_k8s_api_storage_v1_CSIDriverSpec": { "$ref": "#/definitions/io_k8s_api_storage_v1_CSIDriverSpec" }, "io_k8s_api_storage_v1_CSINode": { "$ref": "#/definitions/io_k8s_api_storage_v1_CSINode" }, "io_k8s_api_storage_v1_CSINodeDriver": { "$ref": "#/definitions/io_k8s_api_storage_v1_CSINodeDriver" }, "io_k8s_api_storage_v1_CSINodeList": { "$ref": "#/definitions/io_k8s_api_storage_v1_CSINodeList" }, "io_k8s_api_storage_v1_CSINodeSpec": { "$ref": "#/definitions/io_k8s_api_storage_v1_CSINodeSpec" }, "io_k8s_api_storage_v1_StorageClass": { "$ref": "#/definitions/io_k8s_api_storage_v1_StorageClass" }, "io_k8s_api_storage_v1_StorageClassList": { "$ref": "#/definitions/io_k8s_api_storage_v1_StorageClassList" }, "io_k8s_api_storage_v1_VolumeAttachment": { "$ref": "#/definitions/io_k8s_api_storage_v1_VolumeAttachment" }, "io_k8s_api_storage_v1_VolumeAttachmentList": { "$ref": "#/definitions/io_k8s_api_storage_v1_VolumeAttachmentList" }, "io_k8s_api_storage_v1_VolumeAttachmentSource": { "$ref": "#/definitions/io_k8s_api_storage_v1_VolumeAttachmentSource" }, "io_k8s_api_storage_v1_VolumeAttachmentSpec": { "$ref": "#/definitions/io_k8s_api_storage_v1_VolumeAttachmentSpec" }, "io_k8s_api_storage_v1_VolumeAttachmentStatus": { "$ref": "#/definitions/io_k8s_api_storage_v1_VolumeAttachmentStatus" }, "io_k8s_api_storage_v1_VolumeError": { "$ref": "#/definitions/io_k8s_api_storage_v1_VolumeError" }, "io_k8s_api_storage_v1_VolumeNodeResources": { "$ref": "#/definitions/io_k8s_api_storage_v1_VolumeNodeResources" }, "io_k8s_api_storage_v1alpha1_VolumeAttachment": { "$ref": "#/definitions/io_k8s_api_storage_v1alpha1_VolumeAttachment" }, "io_k8s_api_storage_v1alpha1_VolumeAttachmentList": { "$ref": "#/definitions/io_k8s_api_storage_v1alpha1_VolumeAttachmentList" }, "io_k8s_api_storage_v1alpha1_VolumeAttachmentSource": { "$ref": "#/definitions/io_k8s_api_storage_v1alpha1_VolumeAttachmentSource" }, "io_k8s_api_storage_v1alpha1_VolumeAttachmentSpec": { "$ref": "#/definitions/io_k8s_api_storage_v1alpha1_VolumeAttachmentSpec" }, "io_k8s_api_storage_v1alpha1_VolumeAttachmentStatus": { "$ref": "#/definitions/io_k8s_api_storage_v1alpha1_VolumeAttachmentStatus" }, "io_k8s_api_storage_v1alpha1_VolumeError": { "$ref": "#/definitions/io_k8s_api_storage_v1alpha1_VolumeError" }, "io_k8s_api_storage_v1beta1_CSIDriver": { "$ref": "#/definitions/io_k8s_api_storage_v1beta1_CSIDriver" }, "io_k8s_api_storage_v1beta1_CSIDriverList": { "$ref": "#/definitions/io_k8s_api_storage_v1beta1_CSIDriverList" }, "io_k8s_api_storage_v1beta1_CSIDriverSpec": { "$ref": "#/definitions/io_k8s_api_storage_v1beta1_CSIDriverSpec" }, "io_k8s_api_storage_v1beta1_CSINode": { "$ref": "#/definitions/io_k8s_api_storage_v1beta1_CSINode" }, "io_k8s_api_storage_v1beta1_CSINodeDriver": { "$ref": "#/definitions/io_k8s_api_storage_v1beta1_CSINodeDriver" }, "io_k8s_api_storage_v1beta1_CSINodeList": { "$ref": "#/definitions/io_k8s_api_storage_v1beta1_CSINodeList" }, "io_k8s_api_storage_v1beta1_CSINodeSpec": { "$ref": "#/definitions/io_k8s_api_storage_v1beta1_CSINodeSpec" }, "io_k8s_api_storage_v1beta1_StorageClass": { "$ref": "#/definitions/io_k8s_api_storage_v1beta1_StorageClass" }, "io_k8s_api_storage_v1beta1_StorageClassList": { "$ref": "#/definitions/io_k8s_api_storage_v1beta1_StorageClassList" }, "io_k8s_api_storage_v1beta1_VolumeAttachment": { "$ref": "#/definitions/io_k8s_api_storage_v1beta1_VolumeAttachment" }, "io_k8s_api_storage_v1beta1_VolumeAttachmentList": { "$ref": "#/definitions/io_k8s_api_storage_v1beta1_VolumeAttachmentList" }, "io_k8s_api_storage_v1beta1_VolumeAttachmentSource": { "$ref": "#/definitions/io_k8s_api_storage_v1beta1_VolumeAttachmentSource" }, "io_k8s_api_storage_v1beta1_VolumeAttachmentSpec": { "$ref": "#/definitions/io_k8s_api_storage_v1beta1_VolumeAttachmentSpec" }, "io_k8s_api_storage_v1beta1_VolumeAttachmentStatus": { "$ref": "#/definitions/io_k8s_api_storage_v1beta1_VolumeAttachmentStatus" }, "io_k8s_api_storage_v1beta1_VolumeError": { "$ref": "#/definitions/io_k8s_api_storage_v1beta1_VolumeError" }, "io_k8s_api_storage_v1beta1_VolumeNodeResources": { "$ref": "#/definitions/io_k8s_api_storage_v1beta1_VolumeNodeResources" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceColumnDefinition": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceColumnDefinition" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceConversion": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceConversion" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionCondition": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionCondition" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionNames": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionNames" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionStatus": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionStatus" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceSubresourceScale": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceSubresourceScale" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceSubresources": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceSubresources" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_ExternalDocumentation": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_ExternalDocumentation" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_ServiceReference": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_ServiceReference" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_WebhookClientConfig": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_WebhookClientConfig" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_WebhookConversion": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_WebhookConversion" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceColumnDefinition": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceColumnDefinition" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceConversion": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceConversion" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinition": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinition" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinitionCondition": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinitionCondition" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinitionList": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinitionList" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinitionNames": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinitionNames" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinitionSpec": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinitionSpec" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinitionStatus": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinitionStatus" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinitionVersion": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinitionVersion" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceSubresourceScale": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceSubresourceScale" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceSubresources": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceSubresources" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceValidation": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceValidation" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_ExternalDocumentation": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_ExternalDocumentation" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_ServiceReference": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_ServiceReference" }, "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_WebhookClientConfig": { "$ref": "#/definitions/io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_WebhookClientConfig" }, "io_k8s_apimachinery_pkg_api_resource_Quantity": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_api_resource_Quantity" }, "io_k8s_apimachinery_pkg_apis_meta_v1_APIGroup": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_APIGroup" }, "io_k8s_apimachinery_pkg_apis_meta_v1_APIGroupList": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_APIGroupList" }, "io_k8s_apimachinery_pkg_apis_meta_v1_APIResource": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_APIResource" }, "io_k8s_apimachinery_pkg_apis_meta_v1_APIResourceList": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_APIResourceList" }, "io_k8s_apimachinery_pkg_apis_meta_v1_APIVersions": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_APIVersions" }, "io_k8s_apimachinery_pkg_apis_meta_v1_DeleteOptions": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_DeleteOptions" }, "io_k8s_apimachinery_pkg_apis_meta_v1_GroupVersionForDiscovery": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_GroupVersionForDiscovery" }, "io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector" }, "io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement" }, "io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta" }, "io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry" }, "io_k8s_apimachinery_pkg_apis_meta_v1_MicroTime": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_MicroTime" }, "io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta" }, "io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference" }, "io_k8s_apimachinery_pkg_apis_meta_v1_Preconditions": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Preconditions" }, "io_k8s_apimachinery_pkg_apis_meta_v1_ServerAddressByClientCIDR": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_ServerAddressByClientCIDR" }, "io_k8s_apimachinery_pkg_apis_meta_v1_Status": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Status" }, "io_k8s_apimachinery_pkg_apis_meta_v1_StatusCause": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_StatusCause" }, "io_k8s_apimachinery_pkg_apis_meta_v1_StatusDetails": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_StatusDetails" }, "io_k8s_apimachinery_pkg_apis_meta_v1_Time": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_Time" }, "io_k8s_apimachinery_pkg_apis_meta_v1_WatchEvent": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_apis_meta_v1_WatchEvent" }, "io_k8s_apimachinery_pkg_util_intstr_IntOrString": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_util_intstr_IntOrString" }, "io_k8s_apimachinery_pkg_version_Info": { "$ref": "#/definitions/io_k8s_apimachinery_pkg_version_Info" }, "io_k8s_kube-aggregator_pkg_apis_apiregistration_v1_APIService": { "$ref": "#/definitions/io_k8s_kube-aggregator_pkg_apis_apiregistration_v1_APIService" }, "io_k8s_kube-aggregator_pkg_apis_apiregistration_v1_APIServiceCondition": { "$ref": "#/definitions/io_k8s_kube-aggregator_pkg_apis_apiregistration_v1_APIServiceCondition" }, "io_k8s_kube-aggregator_pkg_apis_apiregistration_v1_APIServiceList": { "$ref": "#/definitions/io_k8s_kube-aggregator_pkg_apis_apiregistration_v1_APIServiceList" }, "io_k8s_kube-aggregator_pkg_apis_apiregistration_v1_APIServiceSpec": { "$ref": "#/definitions/io_k8s_kube-aggregator_pkg_apis_apiregistration_v1_APIServiceSpec" }, "io_k8s_kube-aggregator_pkg_apis_apiregistration_v1_APIServiceStatus": { "$ref": "#/definitions/io_k8s_kube-aggregator_pkg_apis_apiregistration_v1_APIServiceStatus" }, "io_k8s_kube-aggregator_pkg_apis_apiregistration_v1_ServiceReference": { "$ref": "#/definitions/io_k8s_kube-aggregator_pkg_apis_apiregistration_v1_ServiceReference" }, "io_k8s_kube-aggregator_pkg_apis_apiregistration_v1beta1_APIService": { "$ref": "#/definitions/io_k8s_kube-aggregator_pkg_apis_apiregistration_v1beta1_APIService" }, "io_k8s_kube-aggregator_pkg_apis_apiregistration_v1beta1_APIServiceCondition": { "$ref": "#/definitions/io_k8s_kube-aggregator_pkg_apis_apiregistration_v1beta1_APIServiceCondition" }, "io_k8s_kube-aggregator_pkg_apis_apiregistration_v1beta1_APIServiceList": { "$ref": "#/definitions/io_k8s_kube-aggregator_pkg_apis_apiregistration_v1beta1_APIServiceList" }, "io_k8s_kube-aggregator_pkg_apis_apiregistration_v1beta1_APIServiceSpec": { "$ref": "#/definitions/io_k8s_kube-aggregator_pkg_apis_apiregistration_v1beta1_APIServiceSpec" }, "io_k8s_kube-aggregator_pkg_apis_apiregistration_v1beta1_APIServiceStatus": { "$ref": "#/definitions/io_k8s_kube-aggregator_pkg_apis_apiregistration_v1beta1_APIServiceStatus" }, "io_k8s_kube-aggregator_pkg_apis_apiregistration_v1beta1_ServiceReference": { "$ref": "#/definitions/io_k8s_kube-aggregator_pkg_apis_apiregistration_v1beta1_ServiceReference" } }, "required": [ "io_k8s_api_admissionregistration_v1_MutatingWebhook", "io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration", "io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList", "io_k8s_api_admissionregistration_v1_RuleWithOperations", "io_k8s_api_admissionregistration_v1_ServiceReference", "io_k8s_api_admissionregistration_v1_ValidatingWebhook", "io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration", "io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList", "io_k8s_api_admissionregistration_v1_WebhookClientConfig", "io_k8s_api_admissionregistration_v1beta1_MutatingWebhook", "io_k8s_api_admissionregistration_v1beta1_MutatingWebhookConfiguration", "io_k8s_api_admissionregistration_v1beta1_MutatingWebhookConfigurationList", "io_k8s_api_admissionregistration_v1beta1_RuleWithOperations", "io_k8s_api_admissionregistration_v1beta1_ServiceReference", "io_k8s_api_admissionregistration_v1beta1_ValidatingWebhook", "io_k8s_api_admissionregistration_v1beta1_ValidatingWebhookConfiguration", "io_k8s_api_admissionregistration_v1beta1_ValidatingWebhookConfigurationList", "io_k8s_api_admissionregistration_v1beta1_WebhookClientConfig", "io_k8s_api_apps_v1_ControllerRevision", "io_k8s_api_apps_v1_ControllerRevisionList", "io_k8s_api_apps_v1_DaemonSet", "io_k8s_api_apps_v1_DaemonSetCondition", "io_k8s_api_apps_v1_DaemonSetList", "io_k8s_api_apps_v1_DaemonSetSpec", "io_k8s_api_apps_v1_DaemonSetStatus", "io_k8s_api_apps_v1_DaemonSetUpdateStrategy", "io_k8s_api_apps_v1_Deployment", "io_k8s_api_apps_v1_DeploymentCondition", "io_k8s_api_apps_v1_DeploymentList", "io_k8s_api_apps_v1_DeploymentSpec", "io_k8s_api_apps_v1_DeploymentStatus", "io_k8s_api_apps_v1_DeploymentStrategy", "io_k8s_api_apps_v1_ReplicaSet", "io_k8s_api_apps_v1_ReplicaSetCondition", "io_k8s_api_apps_v1_ReplicaSetList", "io_k8s_api_apps_v1_ReplicaSetSpec", "io_k8s_api_apps_v1_ReplicaSetStatus", "io_k8s_api_apps_v1_RollingUpdateDaemonSet", "io_k8s_api_apps_v1_RollingUpdateDeployment", "io_k8s_api_apps_v1_RollingUpdateStatefulSetStrategy", "io_k8s_api_apps_v1_StatefulSet", "io_k8s_api_apps_v1_StatefulSetCondition", "io_k8s_api_apps_v1_StatefulSetList", "io_k8s_api_apps_v1_StatefulSetSpec", "io_k8s_api_apps_v1_StatefulSetStatus", "io_k8s_api_apps_v1_StatefulSetUpdateStrategy", "io_k8s_api_auditregistration_v1alpha1_AuditSink", "io_k8s_api_auditregistration_v1alpha1_AuditSinkList", "io_k8s_api_auditregistration_v1alpha1_AuditSinkSpec", "io_k8s_api_auditregistration_v1alpha1_Policy", "io_k8s_api_auditregistration_v1alpha1_ServiceReference", "io_k8s_api_auditregistration_v1alpha1_Webhook", "io_k8s_api_auditregistration_v1alpha1_WebhookClientConfig", "io_k8s_api_auditregistration_v1alpha1_WebhookThrottleConfig", "io_k8s_api_authentication_v1_BoundObjectReference", "io_k8s_api_authentication_v1_TokenRequest", "io_k8s_api_authentication_v1_TokenRequestSpec", "io_k8s_api_authentication_v1_TokenRequestStatus", "io_k8s_api_authentication_v1_TokenReview", "io_k8s_api_authentication_v1_TokenReviewSpec", "io_k8s_api_authentication_v1_TokenReviewStatus", "io_k8s_api_authentication_v1_UserInfo", "io_k8s_api_authentication_v1beta1_TokenReview", "io_k8s_api_authentication_v1beta1_TokenReviewSpec", "io_k8s_api_authentication_v1beta1_TokenReviewStatus", "io_k8s_api_authentication_v1beta1_UserInfo", "io_k8s_api_authorization_v1_LocalSubjectAccessReview", "io_k8s_api_authorization_v1_NonResourceAttributes", "io_k8s_api_authorization_v1_NonResourceRule", "io_k8s_api_authorization_v1_ResourceAttributes", "io_k8s_api_authorization_v1_ResourceRule", "io_k8s_api_authorization_v1_SelfSubjectAccessReview", "io_k8s_api_authorization_v1_SelfSubjectAccessReviewSpec", "io_k8s_api_authorization_v1_SelfSubjectRulesReview", "io_k8s_api_authorization_v1_SelfSubjectRulesReviewSpec", "io_k8s_api_authorization_v1_SubjectAccessReview", "io_k8s_api_authorization_v1_SubjectAccessReviewSpec", "io_k8s_api_authorization_v1_SubjectAccessReviewStatus", "io_k8s_api_authorization_v1_SubjectRulesReviewStatus", "io_k8s_api_authorization_v1beta1_LocalSubjectAccessReview", "io_k8s_api_authorization_v1beta1_NonResourceAttributes", "io_k8s_api_authorization_v1beta1_NonResourceRule", "io_k8s_api_authorization_v1beta1_ResourceAttributes", "io_k8s_api_authorization_v1beta1_ResourceRule", "io_k8s_api_authorization_v1beta1_SelfSubjectAccessReview", "io_k8s_api_authorization_v1beta1_SelfSubjectAccessReviewSpec", "io_k8s_api_authorization_v1beta1_SelfSubjectRulesReview", "io_k8s_api_authorization_v1beta1_SelfSubjectRulesReviewSpec", "io_k8s_api_authorization_v1beta1_SubjectAccessReview", "io_k8s_api_authorization_v1beta1_SubjectAccessReviewSpec", "io_k8s_api_authorization_v1beta1_SubjectAccessReviewStatus", "io_k8s_api_authorization_v1beta1_SubjectRulesReviewStatus", "io_k8s_api_autoscaling_v1_CrossVersionObjectReference", "io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler", "io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList", "io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerSpec", "io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerStatus", "io_k8s_api_autoscaling_v1_Scale", "io_k8s_api_autoscaling_v1_ScaleSpec", "io_k8s_api_autoscaling_v1_ScaleStatus", "io_k8s_api_autoscaling_v2beta1_CrossVersionObjectReference", "io_k8s_api_autoscaling_v2beta1_ExternalMetricSource", "io_k8s_api_autoscaling_v2beta1_ExternalMetricStatus", "io_k8s_api_autoscaling_v2beta1_HorizontalPodAutoscaler", "io_k8s_api_autoscaling_v2beta1_HorizontalPodAutoscalerCondition", "io_k8s_api_autoscaling_v2beta1_HorizontalPodAutoscalerList", "io_k8s_api_autoscaling_v2beta1_HorizontalPodAutoscalerSpec", "io_k8s_api_autoscaling_v2beta1_HorizontalPodAutoscalerStatus", "io_k8s_api_autoscaling_v2beta1_MetricSpec", "io_k8s_api_autoscaling_v2beta1_MetricStatus", "io_k8s_api_autoscaling_v2beta1_ObjectMetricSource", "io_k8s_api_autoscaling_v2beta1_ObjectMetricStatus", "io_k8s_api_autoscaling_v2beta1_PodsMetricSource", "io_k8s_api_autoscaling_v2beta1_PodsMetricStatus", "io_k8s_api_autoscaling_v2beta1_ResourceMetricSource", "io_k8s_api_autoscaling_v2beta1_ResourceMetricStatus", "io_k8s_api_autoscaling_v2beta2_CrossVersionObjectReference", "io_k8s_api_autoscaling_v2beta2_ExternalMetricSource", "io_k8s_api_autoscaling_v2beta2_ExternalMetricStatus", "io_k8s_api_autoscaling_v2beta2_HPAScalingPolicy", "io_k8s_api_autoscaling_v2beta2_HPAScalingRules", "io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscaler", "io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscalerBehavior", "io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscalerCondition", "io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscalerList", "io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscalerSpec", "io_k8s_api_autoscaling_v2beta2_HorizontalPodAutoscalerStatus", "io_k8s_api_autoscaling_v2beta2_MetricIdentifier", "io_k8s_api_autoscaling_v2beta2_MetricSpec", "io_k8s_api_autoscaling_v2beta2_MetricStatus", "io_k8s_api_autoscaling_v2beta2_MetricTarget", "io_k8s_api_autoscaling_v2beta2_MetricValueStatus", "io_k8s_api_autoscaling_v2beta2_ObjectMetricSource", "io_k8s_api_autoscaling_v2beta2_ObjectMetricStatus", "io_k8s_api_autoscaling_v2beta2_PodsMetricSource", "io_k8s_api_autoscaling_v2beta2_PodsMetricStatus", "io_k8s_api_autoscaling_v2beta2_ResourceMetricSource", "io_k8s_api_autoscaling_v2beta2_ResourceMetricStatus", "io_k8s_api_batch_v1_Job", "io_k8s_api_batch_v1_JobCondition", "io_k8s_api_batch_v1_JobList", "io_k8s_api_batch_v1_JobSpec", "io_k8s_api_batch_v1_JobStatus", "io_k8s_api_batch_v1beta1_CronJob", "io_k8s_api_batch_v1beta1_CronJobList", "io_k8s_api_batch_v1beta1_CronJobSpec", "io_k8s_api_batch_v1beta1_CronJobStatus", "io_k8s_api_batch_v1beta1_JobTemplateSpec", "io_k8s_api_batch_v2alpha1_CronJob", "io_k8s_api_batch_v2alpha1_CronJobList", "io_k8s_api_batch_v2alpha1_CronJobSpec", "io_k8s_api_batch_v2alpha1_CronJobStatus", "io_k8s_api_batch_v2alpha1_JobTemplateSpec", "io_k8s_api_certificates_v1beta1_CertificateSigningRequest", "io_k8s_api_certificates_v1beta1_CertificateSigningRequestCondition", "io_k8s_api_certificates_v1beta1_CertificateSigningRequestList", "io_k8s_api_certificates_v1beta1_CertificateSigningRequestSpec", "io_k8s_api_certificates_v1beta1_CertificateSigningRequestStatus", "io_k8s_api_coordination_v1_Lease", "io_k8s_api_coordination_v1_LeaseList", "io_k8s_api_coordination_v1_LeaseSpec", "io_k8s_api_coordination_v1beta1_Lease", "io_k8s_api_coordination_v1beta1_LeaseList", "io_k8s_api_coordination_v1beta1_LeaseSpec", "io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource", "io_k8s_api_core_v1_Affinity", "io_k8s_api_core_v1_AttachedVolume", "io_k8s_api_core_v1_AzureDiskVolumeSource", "io_k8s_api_core_v1_AzureFilePersistentVolumeSource", "io_k8s_api_core_v1_AzureFileVolumeSource", "io_k8s_api_core_v1_Binding", "io_k8s_api_core_v1_CSIPersistentVolumeSource", "io_k8s_api_core_v1_CSIVolumeSource", "io_k8s_api_core_v1_Capabilities", "io_k8s_api_core_v1_CephFSPersistentVolumeSource", "io_k8s_api_core_v1_CephFSVolumeSource", "io_k8s_api_core_v1_CinderPersistentVolumeSource", "io_k8s_api_core_v1_CinderVolumeSource", "io_k8s_api_core_v1_ClientIPConfig", "io_k8s_api_core_v1_ComponentCondition", "io_k8s_api_core_v1_ComponentStatus", "io_k8s_api_core_v1_ComponentStatusList", "io_k8s_api_core_v1_ConfigMap", "io_k8s_api_core_v1_ConfigMapEnvSource", "io_k8s_api_core_v1_ConfigMapKeySelector", "io_k8s_api_core_v1_ConfigMapList", "io_k8s_api_core_v1_ConfigMapNodeConfigSource", "io_k8s_api_core_v1_ConfigMapProjection", "io_k8s_api_core_v1_ConfigMapVolumeSource", "io_k8s_api_core_v1_Container", "io_k8s_api_core_v1_ContainerImage", "io_k8s_api_core_v1_ContainerPort", "io_k8s_api_core_v1_ContainerState", "io_k8s_api_core_v1_ContainerStateRunning", "io_k8s_api_core_v1_ContainerStateTerminated", "io_k8s_api_core_v1_ContainerStateWaiting", "io_k8s_api_core_v1_ContainerStatus", "io_k8s_api_core_v1_DaemonEndpoint", "io_k8s_api_core_v1_DownwardAPIProjection", "io_k8s_api_core_v1_DownwardAPIVolumeFile", "io_k8s_api_core_v1_DownwardAPIVolumeSource", "io_k8s_api_core_v1_EmptyDirVolumeSource", "io_k8s_api_core_v1_EndpointAddress", "io_k8s_api_core_v1_EndpointPort", "io_k8s_api_core_v1_EndpointSubset", "io_k8s_api_core_v1_Endpoints", "io_k8s_api_core_v1_EndpointsList", "io_k8s_api_core_v1_EnvFromSource", "io_k8s_api_core_v1_EnvVar", "io_k8s_api_core_v1_EnvVarSource", "io_k8s_api_core_v1_EphemeralContainer", "io_k8s_api_core_v1_Event", "io_k8s_api_core_v1_EventList", "io_k8s_api_core_v1_EventSeries", "io_k8s_api_core_v1_EventSource", "io_k8s_api_core_v1_ExecAction", "io_k8s_api_core_v1_FCVolumeSource", "io_k8s_api_core_v1_FlexPersistentVolumeSource", "io_k8s_api_core_v1_FlexVolumeSource", "io_k8s_api_core_v1_FlockerVolumeSource", "io_k8s_api_core_v1_GCEPersistentDiskVolumeSource", "io_k8s_api_core_v1_GitRepoVolumeSource", "io_k8s_api_core_v1_GlusterfsPersistentVolumeSource", "io_k8s_api_core_v1_GlusterfsVolumeSource", "io_k8s_api_core_v1_HTTPGetAction", "io_k8s_api_core_v1_HTTPHeader", "io_k8s_api_core_v1_Handler", "io_k8s_api_core_v1_HostAlias", "io_k8s_api_core_v1_HostPathVolumeSource", "io_k8s_api_core_v1_ISCSIPersistentVolumeSource", "io_k8s_api_core_v1_ISCSIVolumeSource", "io_k8s_api_core_v1_KeyToPath", "io_k8s_api_core_v1_Lifecycle", "io_k8s_api_core_v1_LimitRange", "io_k8s_api_core_v1_LimitRangeItem", "io_k8s_api_core_v1_LimitRangeList", "io_k8s_api_core_v1_LimitRangeSpec", "io_k8s_api_core_v1_LoadBalancerIngress", "io_k8s_api_core_v1_LoadBalancerStatus", "io_k8s_api_core_v1_LocalObjectReference", "io_k8s_api_core_v1_LocalVolumeSource", "io_k8s_api_core_v1_NFSVolumeSource", "io_k8s_api_core_v1_Namespace", "io_k8s_api_core_v1_NamespaceCondition", "io_k8s_api_core_v1_NamespaceList", "io_k8s_api_core_v1_NamespaceSpec", "io_k8s_api_core_v1_NamespaceStatus", "io_k8s_api_core_v1_Node", "io_k8s_api_core_v1_NodeAddress", "io_k8s_api_core_v1_NodeAffinity", "io_k8s_api_core_v1_NodeCondition", "io_k8s_api_core_v1_NodeConfigSource", "io_k8s_api_core_v1_NodeConfigStatus", "io_k8s_api_core_v1_NodeDaemonEndpoints", "io_k8s_api_core_v1_NodeList", "io_k8s_api_core_v1_NodeSelector", "io_k8s_api_core_v1_NodeSelectorRequirement", "io_k8s_api_core_v1_NodeSelectorTerm", "io_k8s_api_core_v1_NodeSpec", "io_k8s_api_core_v1_NodeStatus", "io_k8s_api_core_v1_NodeSystemInfo", "io_k8s_api_core_v1_ObjectFieldSelector", "io_k8s_api_core_v1_ObjectReference", "io_k8s_api_core_v1_PersistentVolume", "io_k8s_api_core_v1_PersistentVolumeClaim", "io_k8s_api_core_v1_PersistentVolumeClaimCondition", "io_k8s_api_core_v1_PersistentVolumeClaimList", "io_k8s_api_core_v1_PersistentVolumeClaimSpec", "io_k8s_api_core_v1_PersistentVolumeClaimStatus", "io_k8s_api_core_v1_PersistentVolumeClaimVolumeSource", "io_k8s_api_core_v1_PersistentVolumeList", "io_k8s_api_core_v1_PersistentVolumeSpec", "io_k8s_api_core_v1_PersistentVolumeStatus", "io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource", "io_k8s_api_core_v1_Pod", "io_k8s_api_core_v1_PodAffinity", "io_k8s_api_core_v1_PodAffinityTerm", "io_k8s_api_core_v1_PodAntiAffinity", "io_k8s_api_core_v1_PodCondition", "io_k8s_api_core_v1_PodDNSConfig", "io_k8s_api_core_v1_PodDNSConfigOption", "io_k8s_api_core_v1_PodIP", "io_k8s_api_core_v1_PodList", "io_k8s_api_core_v1_PodReadinessGate", "io_k8s_api_core_v1_PodSecurityContext", "io_k8s_api_core_v1_PodSpec", "io_k8s_api_core_v1_PodStatus", "io_k8s_api_core_v1_PodTemplate", "io_k8s_api_core_v1_PodTemplateList", "io_k8s_api_core_v1_PodTemplateSpec", "io_k8s_api_core_v1_PortworxVolumeSource", "io_k8s_api_core_v1_PreferredSchedulingTerm", "io_k8s_api_core_v1_Probe", "io_k8s_api_core_v1_ProjectedVolumeSource", "io_k8s_api_core_v1_QuobyteVolumeSource", "io_k8s_api_core_v1_RBDPersistentVolumeSource", "io_k8s_api_core_v1_RBDVolumeSource", "io_k8s_api_core_v1_ReplicationController", "io_k8s_api_core_v1_ReplicationControllerCondition", "io_k8s_api_core_v1_ReplicationControllerList", "io_k8s_api_core_v1_ReplicationControllerSpec", "io_k8s_api_core_v1_ReplicationControllerStatus", "io_k8s_api_core_v1_ResourceFieldSelector", "io_k8s_api_core_v1_ResourceQuota", "io_k8s_api_core_v1_ResourceQuotaList", "io_k8s_api_core_v1_ResourceQuotaSpec", "io_k8s_api_core_v1_ResourceQuotaStatus", "io_k8s_api_core_v1_ResourceRequirements", "io_k8s_api_core_v1_SELinuxOptions", "io_k8s_api_core_v1_ScaleIOPersistentVolumeSource", "io_k8s_api_core_v1_ScaleIOVolumeSource", "io_k8s_api_core_v1_ScopeSelector", "io_k8s_api_core_v1_ScopedResourceSelectorRequirement", "io_k8s_api_core_v1_Secret", "io_k8s_api_core_v1_SecretEnvSource", "io_k8s_api_core_v1_SecretKeySelector", "io_k8s_api_core_v1_SecretList", "io_k8s_api_core_v1_SecretProjection", "io_k8s_api_core_v1_SecretReference", "io_k8s_api_core_v1_SecretVolumeSource", "io_k8s_api_core_v1_SecurityContext", "io_k8s_api_core_v1_Service", "io_k8s_api_core_v1_ServiceAccount", "io_k8s_api_core_v1_ServiceAccountList", "io_k8s_api_core_v1_ServiceAccountTokenProjection", "io_k8s_api_core_v1_ServiceList", "io_k8s_api_core_v1_ServicePort", "io_k8s_api_core_v1_ServiceSpec", "io_k8s_api_core_v1_ServiceStatus", "io_k8s_api_core_v1_SessionAffinityConfig", "io_k8s_api_core_v1_StorageOSPersistentVolumeSource", "io_k8s_api_core_v1_StorageOSVolumeSource", "io_k8s_api_core_v1_Sysctl", "io_k8s_api_core_v1_TCPSocketAction", "io_k8s_api_core_v1_Taint", "io_k8s_api_core_v1_Toleration", "io_k8s_api_core_v1_TopologySelectorLabelRequirement", "io_k8s_api_core_v1_TopologySelectorTerm", "io_k8s_api_core_v1_TopologySpreadConstraint", "io_k8s_api_core_v1_TypedLocalObjectReference", "io_k8s_api_core_v1_Volume", "io_k8s_api_core_v1_VolumeDevice", "io_k8s_api_core_v1_VolumeMount", "io_k8s_api_core_v1_VolumeNodeAffinity", "io_k8s_api_core_v1_VolumeProjection", "io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource", "io_k8s_api_core_v1_WeightedPodAffinityTerm", "io_k8s_api_core_v1_WindowsSecurityContextOptions", "io_k8s_api_discovery_v1beta1_Endpoint", "io_k8s_api_discovery_v1beta1_EndpointConditions", "io_k8s_api_discovery_v1beta1_EndpointPort", "io_k8s_api_discovery_v1beta1_EndpointSlice", "io_k8s_api_discovery_v1beta1_EndpointSliceList", "io_k8s_api_events_v1beta1_Event", "io_k8s_api_events_v1beta1_EventList", "io_k8s_api_events_v1beta1_EventSeries", "io_k8s_api_extensions_v1beta1_HTTPIngressPath", "io_k8s_api_extensions_v1beta1_HTTPIngressRuleValue", "io_k8s_api_extensions_v1beta1_Ingress", "io_k8s_api_extensions_v1beta1_IngressBackend", "io_k8s_api_extensions_v1beta1_IngressList", "io_k8s_api_extensions_v1beta1_IngressRule", "io_k8s_api_extensions_v1beta1_IngressSpec", "io_k8s_api_extensions_v1beta1_IngressStatus", "io_k8s_api_extensions_v1beta1_IngressTLS", "io_k8s_api_flowcontrol_v1alpha1_FlowDistinguisherMethod", "io_k8s_api_flowcontrol_v1alpha1_FlowSchema", "io_k8s_api_flowcontrol_v1alpha1_FlowSchemaCondition", "io_k8s_api_flowcontrol_v1alpha1_FlowSchemaList", "io_k8s_api_flowcontrol_v1alpha1_FlowSchemaSpec", "io_k8s_api_flowcontrol_v1alpha1_FlowSchemaStatus", "io_k8s_api_flowcontrol_v1alpha1_GroupSubject", "io_k8s_api_flowcontrol_v1alpha1_LimitResponse", "io_k8s_api_flowcontrol_v1alpha1_LimitedPriorityLevelConfiguration", "io_k8s_api_flowcontrol_v1alpha1_NonResourcePolicyRule", "io_k8s_api_flowcontrol_v1alpha1_PolicyRulesWithSubjects", "io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfiguration", "io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfigurationCondition", "io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfigurationList", "io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfigurationReference", "io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfigurationSpec", "io_k8s_api_flowcontrol_v1alpha1_PriorityLevelConfigurationStatus", "io_k8s_api_flowcontrol_v1alpha1_QueuingConfiguration", "io_k8s_api_flowcontrol_v1alpha1_ResourcePolicyRule", "io_k8s_api_flowcontrol_v1alpha1_ServiceAccountSubject", "io_k8s_api_flowcontrol_v1alpha1_Subject", "io_k8s_api_flowcontrol_v1alpha1_UserSubject", "io_k8s_api_networking_v1_IPBlock", "io_k8s_api_networking_v1_NetworkPolicy", "io_k8s_api_networking_v1_NetworkPolicyEgressRule", "io_k8s_api_networking_v1_NetworkPolicyIngressRule", "io_k8s_api_networking_v1_NetworkPolicyList", "io_k8s_api_networking_v1_NetworkPolicyPeer", "io_k8s_api_networking_v1_NetworkPolicyPort", "io_k8s_api_networking_v1_NetworkPolicySpec", "io_k8s_api_networking_v1beta1_HTTPIngressPath", "io_k8s_api_networking_v1beta1_HTTPIngressRuleValue", "io_k8s_api_networking_v1beta1_Ingress", "io_k8s_api_networking_v1beta1_IngressBackend", "io_k8s_api_networking_v1beta1_IngressClass", "io_k8s_api_networking_v1beta1_IngressClassList", "io_k8s_api_networking_v1beta1_IngressClassSpec", "io_k8s_api_networking_v1beta1_IngressList", "io_k8s_api_networking_v1beta1_IngressRule", "io_k8s_api_networking_v1beta1_IngressSpec", "io_k8s_api_networking_v1beta1_IngressStatus", "io_k8s_api_networking_v1beta1_IngressTLS", "io_k8s_api_node_v1alpha1_Overhead", "io_k8s_api_node_v1alpha1_RuntimeClass", "io_k8s_api_node_v1alpha1_RuntimeClassList", "io_k8s_api_node_v1alpha1_RuntimeClassSpec", "io_k8s_api_node_v1alpha1_Scheduling", "io_k8s_api_node_v1beta1_Overhead", "io_k8s_api_node_v1beta1_RuntimeClass", "io_k8s_api_node_v1beta1_RuntimeClassList", "io_k8s_api_node_v1beta1_Scheduling", "io_k8s_api_policy_v1beta1_AllowedCSIDriver", "io_k8s_api_policy_v1beta1_AllowedFlexVolume", "io_k8s_api_policy_v1beta1_AllowedHostPath", "io_k8s_api_policy_v1beta1_Eviction", "io_k8s_api_policy_v1beta1_FSGroupStrategyOptions", "io_k8s_api_policy_v1beta1_HostPortRange", "io_k8s_api_policy_v1beta1_IDRange", "io_k8s_api_policy_v1beta1_PodDisruptionBudget", "io_k8s_api_policy_v1beta1_PodDisruptionBudgetList", "io_k8s_api_policy_v1beta1_PodDisruptionBudgetSpec", "io_k8s_api_policy_v1beta1_PodDisruptionBudgetStatus", "io_k8s_api_policy_v1beta1_PodSecurityPolicy", "io_k8s_api_policy_v1beta1_PodSecurityPolicyList", "io_k8s_api_policy_v1beta1_PodSecurityPolicySpec", "io_k8s_api_policy_v1beta1_RunAsGroupStrategyOptions", "io_k8s_api_policy_v1beta1_RunAsUserStrategyOptions", "io_k8s_api_policy_v1beta1_RuntimeClassStrategyOptions", "io_k8s_api_policy_v1beta1_SELinuxStrategyOptions", "io_k8s_api_policy_v1beta1_SupplementalGroupsStrategyOptions", "io_k8s_api_rbac_v1_AggregationRule", "io_k8s_api_rbac_v1_ClusterRole", "io_k8s_api_rbac_v1_ClusterRoleBinding", "io_k8s_api_rbac_v1_ClusterRoleBindingList", "io_k8s_api_rbac_v1_ClusterRoleList", "io_k8s_api_rbac_v1_PolicyRule", "io_k8s_api_rbac_v1_Role", "io_k8s_api_rbac_v1_RoleBinding", "io_k8s_api_rbac_v1_RoleBindingList", "io_k8s_api_rbac_v1_RoleList", "io_k8s_api_rbac_v1_RoleRef", "io_k8s_api_rbac_v1_Subject", "io_k8s_api_rbac_v1alpha1_AggregationRule", "io_k8s_api_rbac_v1alpha1_ClusterRole", "io_k8s_api_rbac_v1alpha1_ClusterRoleBinding", "io_k8s_api_rbac_v1alpha1_ClusterRoleBindingList", "io_k8s_api_rbac_v1alpha1_ClusterRoleList", "io_k8s_api_rbac_v1alpha1_PolicyRule", "io_k8s_api_rbac_v1alpha1_Role", "io_k8s_api_rbac_v1alpha1_RoleBinding", "io_k8s_api_rbac_v1alpha1_RoleBindingList", "io_k8s_api_rbac_v1alpha1_RoleList", "io_k8s_api_rbac_v1alpha1_RoleRef", "io_k8s_api_rbac_v1alpha1_Subject", "io_k8s_api_rbac_v1beta1_AggregationRule", "io_k8s_api_rbac_v1beta1_ClusterRole", "io_k8s_api_rbac_v1beta1_ClusterRoleBinding", "io_k8s_api_rbac_v1beta1_ClusterRoleBindingList", "io_k8s_api_rbac_v1beta1_ClusterRoleList", "io_k8s_api_rbac_v1beta1_PolicyRule", "io_k8s_api_rbac_v1beta1_Role", "io_k8s_api_rbac_v1beta1_RoleBinding", "io_k8s_api_rbac_v1beta1_RoleBindingList", "io_k8s_api_rbac_v1beta1_RoleList", "io_k8s_api_rbac_v1beta1_RoleRef", "io_k8s_api_rbac_v1beta1_Subject", "io_k8s_api_scheduling_v1_PriorityClass", "io_k8s_api_scheduling_v1_PriorityClassList", "io_k8s_api_scheduling_v1alpha1_PriorityClass", "io_k8s_api_scheduling_v1alpha1_PriorityClassList", "io_k8s_api_scheduling_v1beta1_PriorityClass", "io_k8s_api_scheduling_v1beta1_PriorityClassList", "io_k8s_api_settings_v1alpha1_PodPreset", "io_k8s_api_settings_v1alpha1_PodPresetList", "io_k8s_api_settings_v1alpha1_PodPresetSpec", "io_k8s_api_storage_v1_CSIDriver", "io_k8s_api_storage_v1_CSIDriverList", "io_k8s_api_storage_v1_CSIDriverSpec", "io_k8s_api_storage_v1_CSINode", "io_k8s_api_storage_v1_CSINodeDriver", "io_k8s_api_storage_v1_CSINodeList", "io_k8s_api_storage_v1_CSINodeSpec", "io_k8s_api_storage_v1_StorageClass", "io_k8s_api_storage_v1_StorageClassList", "io_k8s_api_storage_v1_VolumeAttachment", "io_k8s_api_storage_v1_VolumeAttachmentList", "io_k8s_api_storage_v1_VolumeAttachmentSource", "io_k8s_api_storage_v1_VolumeAttachmentSpec", "io_k8s_api_storage_v1_VolumeAttachmentStatus", "io_k8s_api_storage_v1_VolumeError", "io_k8s_api_storage_v1_VolumeNodeResources", "io_k8s_api_storage_v1alpha1_VolumeAttachment", "io_k8s_api_storage_v1alpha1_VolumeAttachmentList", "io_k8s_api_storage_v1alpha1_VolumeAttachmentSource", "io_k8s_api_storage_v1alpha1_VolumeAttachmentSpec", "io_k8s_api_storage_v1alpha1_VolumeAttachmentStatus", "io_k8s_api_storage_v1alpha1_VolumeError", "io_k8s_api_storage_v1beta1_CSIDriver", "io_k8s_api_storage_v1beta1_CSIDriverList", "io_k8s_api_storage_v1beta1_CSIDriverSpec", "io_k8s_api_storage_v1beta1_CSINode", "io_k8s_api_storage_v1beta1_CSINodeDriver", "io_k8s_api_storage_v1beta1_CSINodeList", "io_k8s_api_storage_v1beta1_CSINodeSpec", "io_k8s_api_storage_v1beta1_StorageClass", "io_k8s_api_storage_v1beta1_StorageClassList", "io_k8s_api_storage_v1beta1_VolumeAttachment", "io_k8s_api_storage_v1beta1_VolumeAttachmentList", "io_k8s_api_storage_v1beta1_VolumeAttachmentSource", "io_k8s_api_storage_v1beta1_VolumeAttachmentSpec", "io_k8s_api_storage_v1beta1_VolumeAttachmentStatus", "io_k8s_api_storage_v1beta1_VolumeError", "io_k8s_api_storage_v1beta1_VolumeNodeResources", "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceColumnDefinition", "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceConversion", "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition", "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionCondition", "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList", "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionNames", "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec", "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionStatus", "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion", "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceSubresourceScale", "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceSubresources", "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation", "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_ExternalDocumentation", "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps", "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_ServiceReference", "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_WebhookClientConfig", "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1_WebhookConversion", "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceColumnDefinition", "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceConversion", "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinition", "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinitionCondition", "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinitionList", "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinitionNames", "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinitionSpec", "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinitionStatus", "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceDefinitionVersion", "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceSubresourceScale", "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceSubresources", "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_CustomResourceValidation", "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_ExternalDocumentation", "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_JSONSchemaProps", "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_ServiceReference", "io_k8s_apiextensions-apiserver_pkg_apis_apiextensions_v1beta1_WebhookClientConfig", "io_k8s_apimachinery_pkg_api_resource_Quantity", "io_k8s_apimachinery_pkg_apis_meta_v1_APIGroup", "io_k8s_apimachinery_pkg_apis_meta_v1_APIGroupList", "io_k8s_apimachinery_pkg_apis_meta_v1_APIResource", "io_k8s_apimachinery_pkg_apis_meta_v1_APIResourceList", "io_k8s_apimachinery_pkg_apis_meta_v1_APIVersions", "io_k8s_apimachinery_pkg_apis_meta_v1_DeleteOptions", "io_k8s_apimachinery_pkg_apis_meta_v1_GroupVersionForDiscovery", "io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector", "io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement", "io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta", "io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry", "io_k8s_apimachinery_pkg_apis_meta_v1_MicroTime", "io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta", "io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference", "io_k8s_apimachinery_pkg_apis_meta_v1_Preconditions", "io_k8s_apimachinery_pkg_apis_meta_v1_ServerAddressByClientCIDR", "io_k8s_apimachinery_pkg_apis_meta_v1_Status", "io_k8s_apimachinery_pkg_apis_meta_v1_StatusCause", "io_k8s_apimachinery_pkg_apis_meta_v1_StatusDetails", "io_k8s_apimachinery_pkg_apis_meta_v1_Time", "io_k8s_apimachinery_pkg_apis_meta_v1_WatchEvent", "io_k8s_apimachinery_pkg_util_intstr_IntOrString", "io_k8s_apimachinery_pkg_version_Info", "io_k8s_kube-aggregator_pkg_apis_apiregistration_v1_APIService", "io_k8s_kube-aggregator_pkg_apis_apiregistration_v1_APIServiceCondition", "io_k8s_kube-aggregator_pkg_apis_apiregistration_v1_APIServiceList", "io_k8s_kube-aggregator_pkg_apis_apiregistration_v1_APIServiceSpec", "io_k8s_kube-aggregator_pkg_apis_apiregistration_v1_APIServiceStatus", "io_k8s_kube-aggregator_pkg_apis_apiregistration_v1_ServiceReference", "io_k8s_kube-aggregator_pkg_apis_apiregistration_v1beta1_APIService", "io_k8s_kube-aggregator_pkg_apis_apiregistration_v1beta1_APIServiceCondition", "io_k8s_kube-aggregator_pkg_apis_apiregistration_v1beta1_APIServiceList", "io_k8s_kube-aggregator_pkg_apis_apiregistration_v1beta1_APIServiceSpec", "io_k8s_kube-aggregator_pkg_apis_apiregistration_v1beta1_APIServiceStatus", "io_k8s_kube-aggregator_pkg_apis_apiregistration_v1beta1_ServiceReference" ] }
kb_1161_Normalized
{ "id": "http://www.gaaiat.com/json-xformer#", "$schema": "http://json-schema.org/draft-04/schema#", "description": "JSON Transformer Schema", "title": "JSON Transformer Schema", "type": "object", "required": [ "transformMap" ], "properties": { "sourceLocale": { "type": "string", "default": "en-US" }, "targetLocale": { "type": "string", "default": "en-US" }, "transformMap": { "type": "array", "minItems": 1, "items": { "type": "object", "properties": { "sourcePtr": { "type": "string" }, "targetPtr": { "type": "string" }, "customFormatter": { "type": "string" }, "defaultValue": { "oneOf": [ { "type": [ "array", "object", "boolean", "integer", "number", "string" ] } ] } }, "requiredProperties": [ "sourcePtr", "targetPtr" ] } } } }
o42223
{ "properties": { "dimensions": { "oneOf": [ { "required": [ "radius" ] }, { "required": [ "length", "width" ] }, { "required": [ "base", "height" ] } ], "properties": { "base": { "description": "The base of the triangle", "type": "number" }, "height": { "description": "The height of the triangle", "type": "number" }, "length": { "description": "The length of the rectangle", "type": "number" }, "radius": { "description": "The radius of the circle", "type": "number" }, "width": { "description": "The width of the rectangle", "type": "number" } }, "required": [ "radius", "length", "width", "base", "height" ], "type": "object" }, "shape": { "description": "The shape to calculate the area for", "enum": [ "circle", "rectangle", "triangle" ], "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_92ac029d
{ "properties": { "dimensions": { "properties": { "base": { "description": "The base of the triangle (if applicable)", "type": "number" }, "height": { "description": "The height of the triangle (if applicable)", "type": "number" }, "radius": { "description": "The radius of the circle (if applicable)", "type": "number" }, "side_length": { "description": "The side length of the square (if applicable)", "type": "number" } }, "type": "object" }, "shape": { "description": "The type of shape (circle, square, triangle, etc.)", "type": "string" } }, "required": [ "shape", "dimensions" ], "type": "object" }
calculate_area_8f4e0e8e
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "MyGame_OtherNameSpace_FromInclude": { "type": "string", "enum": [ "IncludeVal" ] }, "MyGame_Example_Color": { "type": "string", "enum": [ "Red", "Green", "Blue" ] }, "MyGame_Example_Any": { "type": "string", "enum": [ "NONE", "Monster", "TestSimpleTableWithEnum", "MyGame_Example2_Monster" ] }, "MyGame_OtherNameSpace_Unused": { "type": "object", "properties": {}, "additionalProperties": false }, "MyGame_OtherNameSpace_TableB": { "type": "object", "properties": { "a": { "$ref": "#/definitions/TableA" } }, "additionalProperties": false }, "TableA": { "type": "object", "properties": { "b": { "$ref": "#/definitions/MyGame_OtherNameSpace_TableB" } }, "additionalProperties": false }, "MyGame_InParentNamespace": { "type": "object", "properties": {}, "additionalProperties": false }, "MyGame_Example2_Monster": { "type": "object", "properties": {}, "additionalProperties": false }, "MyGame_Example_Test": { "type": "object", "properties": { "a": { "type": "number" }, "b": { "type": "number" } }, "additionalProperties": false }, "MyGame_Example_TestSimpleTableWithEnum": { "type": "object", "properties": { "color": { "$ref": "#/definitions/MyGame_Example_Color" } }, "additionalProperties": false }, "MyGame_Example_Vec3": { "type": "object", "properties": { "x": { "type": "number" }, "y": { "type": "number" }, "z": { "type": "number" }, "test1": { "type": "number" }, "test2": { "$ref": "#/definitions/MyGame_Example_Color" }, "test3": { "$ref": "#/definitions/MyGame_Example_Test" } }, "additionalProperties": false }, "MyGame_Example_Ability": { "type": "object", "properties": { "id": { "type": "number" }, "distance": { "type": "number" } }, "additionalProperties": false }, "MyGame_Example_Stat": { "type": "object", "properties": { "id": { "type": "string" }, "val": { "type": "number" }, "count": { "type": "number" } }, "additionalProperties": false }, "MyGame_Example_Monster": { "type": "object", "description": " an example documentation comment: monster object", "properties": { "pos": { "$ref": "#/definitions/MyGame_Example_Vec3" }, "mana": { "type": "number" }, "hp": { "type": "number" }, "name": { "type": "string" }, "friendly": { "type": "boolean" }, "inventory": { "type": "array", "items": { "type": "number" } }, "color": { "$ref": "#/definitions/MyGame_Example_Color" }, "test_type": { "$ref": "#/definitions/MyGame_Example_Any" }, "test": { "anyOf": [ { "$ref": "#/definitions/MyGame_Example_Monster" }, { "$ref": "#/definitions/MyGame_Example_TestSimpleTableWithEnum" }, { "$ref": "#/definitions/MyGame_Example2_Monster" } ] }, "test4": { "type": "array", "items": { "$ref": "#/definitions/MyGame_Example_Test" } }, "testarrayofstring": { "type": "array", "items": { "type": "string" } }, "testarrayoftables": { "type": "array", "items": { "$ref": "#/definitions/MyGame_Example_Monster" } }, "enemy": { "$ref": "#/definitions/MyGame_Example_Monster" }, "testnestedflatbuffer": { "type": "array", "items": { "type": "number" } }, "testempty": { "$ref": "#/definitions/MyGame_Example_Stat" }, "testbool": { "type": "boolean" }, "testhashs32_fnv1": { "type": "number" }, "testhashu32_fnv1": { "type": "number" }, "testhashs64_fnv1": { "type": "number" }, "testhashu64_fnv1": { "type": "number" }, "testhashs32_fnv1a": { "type": "number" }, "testhashu32_fnv1a": { "type": "number" }, "testhashs64_fnv1a": { "type": "number" }, "testhashu64_fnv1a": { "type": "number" }, "testarrayofbools": { "type": "array", "items": { "type": "boolean" } }, "testf": { "type": "number" }, "testf2": { "type": "number" }, "testf3": { "type": "number" }, "testarrayofstring2": { "type": "array", "items": { "type": "string" } }, "testarrayofsortedstruct": { "type": "array", "items": { "$ref": "#/definitions/MyGame_Example_Ability" } }, "flex": { "type": "array", "items": { "type": "number" } }, "test5": { "type": "array", "items": { "$ref": "#/definitions/MyGame_Example_Test" } }, "vector_of_longs": { "type": "array", "items": { "type": "number" } }, "vector_of_doubles": { "type": "array", "items": { "type": "number" } }, "parent_namespace_test": { "$ref": "#/definitions/MyGame_InParentNamespace" } }, "required": [ "name" ], "additionalProperties": false }, "MyGame_Example_TypeAliases": { "type": "object", "properties": { "i8": { "type": "number" }, "u8": { "type": "number" }, "i16": { "type": "number" }, "u16": { "type": "number" }, "i32": { "type": "number" }, "u32": { "type": "number" }, "i64": { "type": "number" }, "u64": { "type": "number" }, "f32": { "type": "number" }, "f64": { "type": "number" }, "v8": { "type": "array", "items": { "type": "number" } }, "vf64": { "type": "array", "items": { "type": "number" } } }, "additionalProperties": false } }, "$ref": "#/definitions/MyGame_Example_Monster" }
o39113