@meshery/schemas 1.3.31 → 1.3.32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6761,13 +6761,13 @@ type GetKubernetesContextApiResponse = {
6761
6761
  cluster?: object;
6762
6762
  /** API server URL of the Kubernetes cluster. */
6763
6763
  server?: string;
6764
- /** ID of the user who owns the underlying connection. */
6764
+ /** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
6765
6765
  owner?: string;
6766
- /** ID of the user who registered the context. */
6766
+ /** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
6767
6767
  createdBy?: string;
6768
- /** ID of the Meshery instance the context is registered with. */
6768
+ /** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
6769
6769
  mesheryInstanceId?: string;
6770
- /** ID of the Kubernetes server associated with the context. */
6770
+ /** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
6771
6771
  kubernetesServerId?: string;
6772
6772
  /** How Meshery is deployed relative to the cluster (e.g. in_cluster, out_of_cluster). */
6773
6773
  deploymentType?: string;
@@ -6777,8 +6777,10 @@ type GetKubernetesContextApiResponse = {
6777
6777
  createdAt?: string;
6778
6778
  /** Timestamp when the underlying connection was last updated. */
6779
6779
  updatedAt?: string;
6780
- /** ID of the connection this context was projected from. */
6780
+ /** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
6781
6781
  connectionId?: string;
6782
+ /** Whether this context's API server answered the probe run while its kubeconfig was processed. Discovery and import surface unreachable contexts too, so they can still be registered; reachability only gates the connected transition. */
6783
+ reachable?: boolean;
6782
6784
  }[];
6783
6785
  };
6784
6786
  type GetKubernetesContextApiArg = {
@@ -6761,13 +6761,13 @@ type GetKubernetesContextApiResponse = {
6761
6761
  cluster?: object;
6762
6762
  /** API server URL of the Kubernetes cluster. */
6763
6763
  server?: string;
6764
- /** ID of the user who owns the underlying connection. */
6764
+ /** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
6765
6765
  owner?: string;
6766
- /** ID of the user who registered the context. */
6766
+ /** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
6767
6767
  createdBy?: string;
6768
- /** ID of the Meshery instance the context is registered with. */
6768
+ /** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
6769
6769
  mesheryInstanceId?: string;
6770
- /** ID of the Kubernetes server associated with the context. */
6770
+ /** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
6771
6771
  kubernetesServerId?: string;
6772
6772
  /** How Meshery is deployed relative to the cluster (e.g. in_cluster, out_of_cluster). */
6773
6773
  deploymentType?: string;
@@ -6777,8 +6777,10 @@ type GetKubernetesContextApiResponse = {
6777
6777
  createdAt?: string;
6778
6778
  /** Timestamp when the underlying connection was last updated. */
6779
6779
  updatedAt?: string;
6780
- /** ID of the connection this context was projected from. */
6780
+ /** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
6781
6781
  connectionId?: string;
6782
+ /** Whether this context's API server answered the probe run while its kubeconfig was processed. Discovery and import surface unreachable contexts too, so they can still be registered; reachability only gates the connected transition. */
6783
+ reachable?: boolean;
6782
6784
  }[];
6783
6785
  };
6784
6786
  type GetKubernetesContextApiArg = {