@meshery/schemas 1.3.15 → 1.3.17
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.
- package/dist/cloudApi.d.mts +0 -600
- package/dist/cloudApi.d.ts +0 -600
- package/dist/cloudApi.js +1 -1
- package/dist/cloudApi.mjs +1 -1
- package/dist/constructs/v1alpha3/relationship/RelationshipSchema.js +15 -15
- package/dist/constructs/v1alpha3/relationship/RelationshipSchema.mjs +15 -15
- package/dist/constructs/v1beta1/component/ComponentSchema.js +1 -1
- package/dist/constructs/v1beta1/component/ComponentSchema.mjs +1 -1
- package/dist/constructs/v1beta1/evaluation/EvaluationSchema.js +20 -20
- package/dist/constructs/v1beta1/evaluation/EvaluationSchema.mjs +20 -20
- package/dist/constructs/v1beta1/model/ModelSchema.js +1 -1
- package/dist/constructs/v1beta1/model/ModelSchema.mjs +1 -1
- package/dist/constructs/v1beta1/pattern/PatternSchema.js +55 -55
- package/dist/constructs/v1beta1/pattern/PatternSchema.mjs +55 -55
- package/dist/constructs/v1beta1/workspace/WorkspaceSchema.js +10 -10
- package/dist/constructs/v1beta1/workspace/WorkspaceSchema.mjs +10 -10
- package/dist/constructs/v1beta2/component/ComponentSchema.js +1 -1
- package/dist/constructs/v1beta2/component/ComponentSchema.mjs +1 -1
- package/dist/constructs/v1beta2/design/DesignSchema.js +55 -55
- package/dist/constructs/v1beta2/design/DesignSchema.mjs +55 -55
- package/dist/constructs/v1beta2/relationship/RelationshipSchema.js +15 -15
- package/dist/constructs/v1beta2/relationship/RelationshipSchema.mjs +15 -15
- package/dist/constructs/v1beta3/component/ComponentSchema.js +1 -1
- package/dist/constructs/v1beta3/component/ComponentSchema.mjs +1 -1
- package/dist/constructs/v1beta3/connection/Connection.d.ts +167 -1979
- package/dist/constructs/v1beta3/connection/ConnectionSchema.js +1 -25
- package/dist/constructs/v1beta3/connection/ConnectionSchema.mjs +1 -25
- package/dist/constructs/v1beta3/design/DesignSchema.js +5 -5
- package/dist/constructs/v1beta3/design/DesignSchema.mjs +5 -5
- package/dist/constructs/v1beta3/relationship/RelationshipSchema.js +15 -15
- package/dist/constructs/v1beta3/relationship/RelationshipSchema.mjs +15 -15
- package/dist/constructs/v1beta3/workspace/WorkspaceSchema.js +10 -10
- package/dist/constructs/v1beta3/workspace/WorkspaceSchema.mjs +10 -10
- package/dist/index.js +153 -153
- package/dist/index.mjs +153 -153
- package/dist/mesheryApi.d.mts +0 -600
- package/dist/mesheryApi.d.ts +0 -600
- package/dist/mesheryApi.js +1 -1
- package/dist/mesheryApi.mjs +1 -1
- package/package.json +1 -1
package/dist/cloudApi.d.mts
CHANGED
|
@@ -4810,154 +4810,6 @@ type GetConnectionsApiResponse = {
|
|
|
4810
4810
|
/** Connection Kind (meshery, kubernetes, prometheus, grafana, gke, aws, azure, slack, github) */
|
|
4811
4811
|
kind: string;
|
|
4812
4812
|
/** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
|
|
4813
|
-
model?: {
|
|
4814
|
-
/** Uniquely identifies the entity (i.e. component) as defined in a declaration (i.e. design). */
|
|
4815
|
-
id: string;
|
|
4816
|
-
/** Specifies the version of the schema used for the definition. */
|
|
4817
|
-
schemaVersion: string;
|
|
4818
|
-
/** Version of the model definition. */
|
|
4819
|
-
version: string;
|
|
4820
|
-
/** The unique name for the model within the scope of a registrant. */
|
|
4821
|
-
name: string;
|
|
4822
|
-
/** Human-readable name for the model. */
|
|
4823
|
-
displayName: string;
|
|
4824
|
-
/** Description of the model. */
|
|
4825
|
-
description: string;
|
|
4826
|
-
/** Status of model, including:
|
|
4827
|
-
- duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
|
|
4828
|
-
- maintenance: model is unavailable for a period of time.
|
|
4829
|
-
- enabled: model is available for use for all users of this Meshery Server.
|
|
4830
|
-
- ignored: model is unavailable for use for all users of this Meshery Server. */
|
|
4831
|
-
status: "ignored" | "enabled" | "duplicate";
|
|
4832
|
-
/** Meshery Connections are managed and unmanaged resources that either through discovery or manual entry are tracked by Meshery. Learn more at https://docs.meshery.io/concepts/logical/connections */
|
|
4833
|
-
registrant: {
|
|
4834
|
-
/** Connection ID */
|
|
4835
|
-
id: string;
|
|
4836
|
-
/** Connection Name */
|
|
4837
|
-
name: string;
|
|
4838
|
-
/** Associated Credential ID */
|
|
4839
|
-
credentialId?: string;
|
|
4840
|
-
/** Connection Type (platform, telemetry, collaboration) */
|
|
4841
|
-
type: string;
|
|
4842
|
-
/** Connection Subtype (cloud, identity, metrics, chat, git, orchestration) */
|
|
4843
|
-
subType: string;
|
|
4844
|
-
/** Connection Kind (meshery, kubernetes, prometheus, grafana, gke, aws, azure, slack, github) */
|
|
4845
|
-
kind: string;
|
|
4846
|
-
/** Additional connection metadata */
|
|
4847
|
-
metadata?: object;
|
|
4848
|
-
/** Connection Status */
|
|
4849
|
-
status: "discovered" | "registered" | "connected" | "ignored" | "maintenance" | "disconnected" | "deleted" | "not found";
|
|
4850
|
-
/** User ID who owns this connection */
|
|
4851
|
-
user_id?: string;
|
|
4852
|
-
created_at?: string;
|
|
4853
|
-
updated_at?: string;
|
|
4854
|
-
/** SQL null Timestamp to handle null values of time. */
|
|
4855
|
-
deleted_at?: string;
|
|
4856
|
-
/** Associated environments for this connection */
|
|
4857
|
-
environments?: {
|
|
4858
|
-
/** ID */
|
|
4859
|
-
id: string;
|
|
4860
|
-
/** Specifies the version of the schema to which the environment conforms. */
|
|
4861
|
-
schemaVersion: string;
|
|
4862
|
-
/** Environment name */
|
|
4863
|
-
name: string;
|
|
4864
|
-
/** Environment description */
|
|
4865
|
-
description: string;
|
|
4866
|
-
/** Environment organization ID */
|
|
4867
|
-
organization_id: string;
|
|
4868
|
-
/** Environment owner */
|
|
4869
|
-
owner?: string;
|
|
4870
|
-
/** Timestamp when the resource was created. */
|
|
4871
|
-
created_at?: string;
|
|
4872
|
-
/** Additional metadata associated with the environment. */
|
|
4873
|
-
metadata?: object;
|
|
4874
|
-
/** Timestamp when the resource was updated. */
|
|
4875
|
-
updated_at?: string;
|
|
4876
|
-
/** Timestamp when the environment was soft deleted. Null while the environment remains active. */
|
|
4877
|
-
deleted_at?: string | null;
|
|
4878
|
-
}[];
|
|
4879
|
-
/** Specifies the version of the schema used for the definition. */
|
|
4880
|
-
schemaVersion: string;
|
|
4881
|
-
};
|
|
4882
|
-
/** ID of the registrant. */
|
|
4883
|
-
registrantId: string;
|
|
4884
|
-
/** ID of the category. */
|
|
4885
|
-
categoryId: string;
|
|
4886
|
-
/** Category of the model. */
|
|
4887
|
-
category: {
|
|
4888
|
-
/** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
|
|
4889
|
-
id: string;
|
|
4890
|
-
/** The category of the model that determines the main grouping. */
|
|
4891
|
-
name: "Analytics" | "App Definition and Development" | "Cloud Native Network" | "Cloud Native Storage" | "Database" | "Machine Learning" | "Observability and Analysis" | "Orchestration & Management" | "Platform" | "Provisioning" | "Runtime" | "Security & Compliance" | "Serverless" | "Tools" | "Uncategorized";
|
|
4892
|
-
/** Additional metadata associated with the category. */
|
|
4893
|
-
metadata: object;
|
|
4894
|
-
};
|
|
4895
|
-
/** Sub category of the model determines the secondary grouping. */
|
|
4896
|
-
subCategory: "API Gateway" | "API Integration" | "Application Definition & Image Build" | "Automation & Configuration" | "Certified Kubernetes - Distribution" | "Chaos Engineering" | "Cloud Native Storage" | "Cloud Provider" | "CNI" | "Compute" | "Container Registry" | "Container Runtime" | "Container Security" | "Container" | "Content Delivery Network" | "Continuous Integration & Delivery" | "Coordination & Service Discovery" | "Database" | "Flowchart" | "Framework" | "Installable Platform" | "Key Management" | "Key Management Service" | "Kubernetes" | "Logging" | "Machine Learning" | "Management Governance" | "Metrics" | "Monitoring" | "Networking Content Delivery" | "Operating System" | "Query" | "Remote Procedure Call" | "Scheduling & Orchestration" | "Secrets Management" | "Security Identity & Compliance" | "Service Mesh" | "Service Proxy" | "Source Version Control" | "Storage" | "Specifications" | "Streaming & Messaging" | "Tools" | "Tracing" | "Uncategorized" | "Video Conferencing";
|
|
4897
|
-
/** Metadata containing additional information associated with the model. */
|
|
4898
|
-
metadata?: {
|
|
4899
|
-
/** Capabilities associated with the model */
|
|
4900
|
-
capabilities?: {
|
|
4901
|
-
/** Specifies the version of the schema to which the capability definition conforms. */
|
|
4902
|
-
schemaVersion: string;
|
|
4903
|
-
/** Version of the capability definition. */
|
|
4904
|
-
version: string;
|
|
4905
|
-
/** Name of the capability in human-readible format. */
|
|
4906
|
-
displayName: string;
|
|
4907
|
-
/** A written representation of the purpose and characteristics of the capability. */
|
|
4908
|
-
description: string;
|
|
4909
|
-
/** Top-level categorization of the capability */
|
|
4910
|
-
kind: "action" | "mutate" | "view" | "interaction";
|
|
4911
|
-
/** Classification of capabilities. Used to group capabilities similar in nature. */
|
|
4912
|
-
type: string;
|
|
4913
|
-
/** Most granular unit of capability classification. The combination of Kind, Type and SubType together uniquely identify a Capability. */
|
|
4914
|
-
subType: string;
|
|
4915
|
-
/** Key that backs the capability. */
|
|
4916
|
-
key: string;
|
|
4917
|
-
/** State of the entity in which the capability is applicable. */
|
|
4918
|
-
entityState: ("declaration" | "instance")[];
|
|
4919
|
-
/** Status of the capability */
|
|
4920
|
-
status: "enabled" | "disabled";
|
|
4921
|
-
/** Metadata contains additional information associated with the capability. Extension point. */
|
|
4922
|
-
metadata?: {
|
|
4923
|
-
[key: string]: any;
|
|
4924
|
-
};
|
|
4925
|
-
}[];
|
|
4926
|
-
/** Indicates whether the model and its entities should be treated as deployable entities or as logical representations. */
|
|
4927
|
-
isAnnotation?: boolean;
|
|
4928
|
-
/** Primary color associated with the model. */
|
|
4929
|
-
primaryColor?: string;
|
|
4930
|
-
/** Secondary color associated with the model. */
|
|
4931
|
-
secondaryColor?: string;
|
|
4932
|
-
/** SVG representation of the model in white color. */
|
|
4933
|
-
svgWhite: string;
|
|
4934
|
-
/** SVG representation of the model in colored format. */
|
|
4935
|
-
svgColor: string;
|
|
4936
|
-
/** SVG representation of the complete model. */
|
|
4937
|
-
svgComplete?: string;
|
|
4938
|
-
/** The shape of the node's body. Note that each shape fits within the specified width and height, and so you may have to adjust width and height if you desire an equilateral shape (i.e. width !== height for several equilateral shapes) */
|
|
4939
|
-
shape?: "ellipse" | "triangle" | "round-triangle" | "rectangle" | "round-rectangle" | "bottom-round-rectangle" | "cut-rectangle" | "barrel" | "rhomboid" | "diamond" | "round-diamond" | "pentagon" | "round-pentagon" | "hexagon" | "round-hexagon" | "concave-hexagon" | "heptagon" | "round-heptagon" | "octagon" | "round-octagon" | "star" | "tag" | "round-tag" | "vee" | "polygon";
|
|
4940
|
-
[key: string]: any;
|
|
4941
|
-
};
|
|
4942
|
-
/** Registrant-defined data associated with the model. Properties pertain to the software being managed (e.g. Kubernetes v1.31). */
|
|
4943
|
-
model: {
|
|
4944
|
-
/** Version of the model as defined by the registrant. */
|
|
4945
|
-
version: string;
|
|
4946
|
-
};
|
|
4947
|
-
/** The relationships of the model. */
|
|
4948
|
-
relationships: any;
|
|
4949
|
-
/** The components of the model. */
|
|
4950
|
-
components: any;
|
|
4951
|
-
/** Number of components associated with the model. */
|
|
4952
|
-
componentsCount: number;
|
|
4953
|
-
/** Number of relationships associated with the model. */
|
|
4954
|
-
relationshipsCount: number;
|
|
4955
|
-
/** Timestamp when the resource was created. */
|
|
4956
|
-
created_at?: string;
|
|
4957
|
-
/** Timestamp when the resource was updated. */
|
|
4958
|
-
updated_at?: string;
|
|
4959
|
-
};
|
|
4960
|
-
/** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
|
|
4961
4813
|
modelReference?: {
|
|
4962
4814
|
/** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
|
|
4963
4815
|
id: string;
|
|
@@ -4977,8 +4829,6 @@ type GetConnectionsApiResponse = {
|
|
|
4977
4829
|
kind: string;
|
|
4978
4830
|
};
|
|
4979
4831
|
};
|
|
4980
|
-
/** Foreign key to the model to which the component belongs. Populated by the ORM from the `model_id` column and suppressed on the JSON wire; consumers use the nested `model` object for wire-level access. */
|
|
4981
|
-
modelId?: string;
|
|
4982
4832
|
/** Additional connection metadata */
|
|
4983
4833
|
metadata?: object;
|
|
4984
4834
|
/** Schema for the credential Associated with the connection */
|
|
@@ -5217,154 +5067,6 @@ type RegisterConnectionApiResponse = {
|
|
|
5217
5067
|
/** Connection Kind (meshery, kubernetes, prometheus, grafana, gke, aws, azure, slack, github) */
|
|
5218
5068
|
kind: string;
|
|
5219
5069
|
/** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
|
|
5220
|
-
model?: {
|
|
5221
|
-
/** Uniquely identifies the entity (i.e. component) as defined in a declaration (i.e. design). */
|
|
5222
|
-
id: string;
|
|
5223
|
-
/** Specifies the version of the schema used for the definition. */
|
|
5224
|
-
schemaVersion: string;
|
|
5225
|
-
/** Version of the model definition. */
|
|
5226
|
-
version: string;
|
|
5227
|
-
/** The unique name for the model within the scope of a registrant. */
|
|
5228
|
-
name: string;
|
|
5229
|
-
/** Human-readable name for the model. */
|
|
5230
|
-
displayName: string;
|
|
5231
|
-
/** Description of the model. */
|
|
5232
|
-
description: string;
|
|
5233
|
-
/** Status of model, including:
|
|
5234
|
-
- duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
|
|
5235
|
-
- maintenance: model is unavailable for a period of time.
|
|
5236
|
-
- enabled: model is available for use for all users of this Meshery Server.
|
|
5237
|
-
- ignored: model is unavailable for use for all users of this Meshery Server. */
|
|
5238
|
-
status: "ignored" | "enabled" | "duplicate";
|
|
5239
|
-
/** Meshery Connections are managed and unmanaged resources that either through discovery or manual entry are tracked by Meshery. Learn more at https://docs.meshery.io/concepts/logical/connections */
|
|
5240
|
-
registrant: {
|
|
5241
|
-
/** Connection ID */
|
|
5242
|
-
id: string;
|
|
5243
|
-
/** Connection Name */
|
|
5244
|
-
name: string;
|
|
5245
|
-
/** Associated Credential ID */
|
|
5246
|
-
credentialId?: string;
|
|
5247
|
-
/** Connection Type (platform, telemetry, collaboration) */
|
|
5248
|
-
type: string;
|
|
5249
|
-
/** Connection Subtype (cloud, identity, metrics, chat, git, orchestration) */
|
|
5250
|
-
subType: string;
|
|
5251
|
-
/** Connection Kind (meshery, kubernetes, prometheus, grafana, gke, aws, azure, slack, github) */
|
|
5252
|
-
kind: string;
|
|
5253
|
-
/** Additional connection metadata */
|
|
5254
|
-
metadata?: object;
|
|
5255
|
-
/** Connection Status */
|
|
5256
|
-
status: "discovered" | "registered" | "connected" | "ignored" | "maintenance" | "disconnected" | "deleted" | "not found";
|
|
5257
|
-
/** User ID who owns this connection */
|
|
5258
|
-
user_id?: string;
|
|
5259
|
-
created_at?: string;
|
|
5260
|
-
updated_at?: string;
|
|
5261
|
-
/** SQL null Timestamp to handle null values of time. */
|
|
5262
|
-
deleted_at?: string;
|
|
5263
|
-
/** Associated environments for this connection */
|
|
5264
|
-
environments?: {
|
|
5265
|
-
/** ID */
|
|
5266
|
-
id: string;
|
|
5267
|
-
/** Specifies the version of the schema to which the environment conforms. */
|
|
5268
|
-
schemaVersion: string;
|
|
5269
|
-
/** Environment name */
|
|
5270
|
-
name: string;
|
|
5271
|
-
/** Environment description */
|
|
5272
|
-
description: string;
|
|
5273
|
-
/** Environment organization ID */
|
|
5274
|
-
organization_id: string;
|
|
5275
|
-
/** Environment owner */
|
|
5276
|
-
owner?: string;
|
|
5277
|
-
/** Timestamp when the resource was created. */
|
|
5278
|
-
created_at?: string;
|
|
5279
|
-
/** Additional metadata associated with the environment. */
|
|
5280
|
-
metadata?: object;
|
|
5281
|
-
/** Timestamp when the resource was updated. */
|
|
5282
|
-
updated_at?: string;
|
|
5283
|
-
/** Timestamp when the environment was soft deleted. Null while the environment remains active. */
|
|
5284
|
-
deleted_at?: string | null;
|
|
5285
|
-
}[];
|
|
5286
|
-
/** Specifies the version of the schema used for the definition. */
|
|
5287
|
-
schemaVersion: string;
|
|
5288
|
-
};
|
|
5289
|
-
/** ID of the registrant. */
|
|
5290
|
-
registrantId: string;
|
|
5291
|
-
/** ID of the category. */
|
|
5292
|
-
categoryId: string;
|
|
5293
|
-
/** Category of the model. */
|
|
5294
|
-
category: {
|
|
5295
|
-
/** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
|
|
5296
|
-
id: string;
|
|
5297
|
-
/** The category of the model that determines the main grouping. */
|
|
5298
|
-
name: "Analytics" | "App Definition and Development" | "Cloud Native Network" | "Cloud Native Storage" | "Database" | "Machine Learning" | "Observability and Analysis" | "Orchestration & Management" | "Platform" | "Provisioning" | "Runtime" | "Security & Compliance" | "Serverless" | "Tools" | "Uncategorized";
|
|
5299
|
-
/** Additional metadata associated with the category. */
|
|
5300
|
-
metadata: object;
|
|
5301
|
-
};
|
|
5302
|
-
/** Sub category of the model determines the secondary grouping. */
|
|
5303
|
-
subCategory: "API Gateway" | "API Integration" | "Application Definition & Image Build" | "Automation & Configuration" | "Certified Kubernetes - Distribution" | "Chaos Engineering" | "Cloud Native Storage" | "Cloud Provider" | "CNI" | "Compute" | "Container Registry" | "Container Runtime" | "Container Security" | "Container" | "Content Delivery Network" | "Continuous Integration & Delivery" | "Coordination & Service Discovery" | "Database" | "Flowchart" | "Framework" | "Installable Platform" | "Key Management" | "Key Management Service" | "Kubernetes" | "Logging" | "Machine Learning" | "Management Governance" | "Metrics" | "Monitoring" | "Networking Content Delivery" | "Operating System" | "Query" | "Remote Procedure Call" | "Scheduling & Orchestration" | "Secrets Management" | "Security Identity & Compliance" | "Service Mesh" | "Service Proxy" | "Source Version Control" | "Storage" | "Specifications" | "Streaming & Messaging" | "Tools" | "Tracing" | "Uncategorized" | "Video Conferencing";
|
|
5304
|
-
/** Metadata containing additional information associated with the model. */
|
|
5305
|
-
metadata?: {
|
|
5306
|
-
/** Capabilities associated with the model */
|
|
5307
|
-
capabilities?: {
|
|
5308
|
-
/** Specifies the version of the schema to which the capability definition conforms. */
|
|
5309
|
-
schemaVersion: string;
|
|
5310
|
-
/** Version of the capability definition. */
|
|
5311
|
-
version: string;
|
|
5312
|
-
/** Name of the capability in human-readible format. */
|
|
5313
|
-
displayName: string;
|
|
5314
|
-
/** A written representation of the purpose and characteristics of the capability. */
|
|
5315
|
-
description: string;
|
|
5316
|
-
/** Top-level categorization of the capability */
|
|
5317
|
-
kind: "action" | "mutate" | "view" | "interaction";
|
|
5318
|
-
/** Classification of capabilities. Used to group capabilities similar in nature. */
|
|
5319
|
-
type: string;
|
|
5320
|
-
/** Most granular unit of capability classification. The combination of Kind, Type and SubType together uniquely identify a Capability. */
|
|
5321
|
-
subType: string;
|
|
5322
|
-
/** Key that backs the capability. */
|
|
5323
|
-
key: string;
|
|
5324
|
-
/** State of the entity in which the capability is applicable. */
|
|
5325
|
-
entityState: ("declaration" | "instance")[];
|
|
5326
|
-
/** Status of the capability */
|
|
5327
|
-
status: "enabled" | "disabled";
|
|
5328
|
-
/** Metadata contains additional information associated with the capability. Extension point. */
|
|
5329
|
-
metadata?: {
|
|
5330
|
-
[key: string]: any;
|
|
5331
|
-
};
|
|
5332
|
-
}[];
|
|
5333
|
-
/** Indicates whether the model and its entities should be treated as deployable entities or as logical representations. */
|
|
5334
|
-
isAnnotation?: boolean;
|
|
5335
|
-
/** Primary color associated with the model. */
|
|
5336
|
-
primaryColor?: string;
|
|
5337
|
-
/** Secondary color associated with the model. */
|
|
5338
|
-
secondaryColor?: string;
|
|
5339
|
-
/** SVG representation of the model in white color. */
|
|
5340
|
-
svgWhite: string;
|
|
5341
|
-
/** SVG representation of the model in colored format. */
|
|
5342
|
-
svgColor: string;
|
|
5343
|
-
/** SVG representation of the complete model. */
|
|
5344
|
-
svgComplete?: string;
|
|
5345
|
-
/** The shape of the node's body. Note that each shape fits within the specified width and height, and so you may have to adjust width and height if you desire an equilateral shape (i.e. width !== height for several equilateral shapes) */
|
|
5346
|
-
shape?: "ellipse" | "triangle" | "round-triangle" | "rectangle" | "round-rectangle" | "bottom-round-rectangle" | "cut-rectangle" | "barrel" | "rhomboid" | "diamond" | "round-diamond" | "pentagon" | "round-pentagon" | "hexagon" | "round-hexagon" | "concave-hexagon" | "heptagon" | "round-heptagon" | "octagon" | "round-octagon" | "star" | "tag" | "round-tag" | "vee" | "polygon";
|
|
5347
|
-
[key: string]: any;
|
|
5348
|
-
};
|
|
5349
|
-
/** Registrant-defined data associated with the model. Properties pertain to the software being managed (e.g. Kubernetes v1.31). */
|
|
5350
|
-
model: {
|
|
5351
|
-
/** Version of the model as defined by the registrant. */
|
|
5352
|
-
version: string;
|
|
5353
|
-
};
|
|
5354
|
-
/** The relationships of the model. */
|
|
5355
|
-
relationships: any;
|
|
5356
|
-
/** The components of the model. */
|
|
5357
|
-
components: any;
|
|
5358
|
-
/** Number of components associated with the model. */
|
|
5359
|
-
componentsCount: number;
|
|
5360
|
-
/** Number of relationships associated with the model. */
|
|
5361
|
-
relationshipsCount: number;
|
|
5362
|
-
/** Timestamp when the resource was created. */
|
|
5363
|
-
created_at?: string;
|
|
5364
|
-
/** Timestamp when the resource was updated. */
|
|
5365
|
-
updated_at?: string;
|
|
5366
|
-
};
|
|
5367
|
-
/** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
|
|
5368
5070
|
modelReference?: {
|
|
5369
5071
|
/** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
|
|
5370
5072
|
id: string;
|
|
@@ -5384,8 +5086,6 @@ type RegisterConnectionApiResponse = {
|
|
|
5384
5086
|
kind: string;
|
|
5385
5087
|
};
|
|
5386
5088
|
};
|
|
5387
|
-
/** Foreign key to the model to which the component belongs. Populated by the ORM from the `model_id` column and suppressed on the JSON wire; consumers use the nested `model` object for wire-level access. */
|
|
5388
|
-
modelId?: string;
|
|
5389
5089
|
/** Additional connection metadata */
|
|
5390
5090
|
metadata?: object;
|
|
5391
5091
|
/** Schema for the credential Associated with the connection */
|
|
@@ -5749,154 +5449,6 @@ type GetConnectionByIdApiResponse = {
|
|
|
5749
5449
|
/** Connection Kind (meshery, kubernetes, prometheus, grafana, gke, aws, azure, slack, github) */
|
|
5750
5450
|
kind: string;
|
|
5751
5451
|
/** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
|
|
5752
|
-
model?: {
|
|
5753
|
-
/** Uniquely identifies the entity (i.e. component) as defined in a declaration (i.e. design). */
|
|
5754
|
-
id: string;
|
|
5755
|
-
/** Specifies the version of the schema used for the definition. */
|
|
5756
|
-
schemaVersion: string;
|
|
5757
|
-
/** Version of the model definition. */
|
|
5758
|
-
version: string;
|
|
5759
|
-
/** The unique name for the model within the scope of a registrant. */
|
|
5760
|
-
name: string;
|
|
5761
|
-
/** Human-readable name for the model. */
|
|
5762
|
-
displayName: string;
|
|
5763
|
-
/** Description of the model. */
|
|
5764
|
-
description: string;
|
|
5765
|
-
/** Status of model, including:
|
|
5766
|
-
- duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
|
|
5767
|
-
- maintenance: model is unavailable for a period of time.
|
|
5768
|
-
- enabled: model is available for use for all users of this Meshery Server.
|
|
5769
|
-
- ignored: model is unavailable for use for all users of this Meshery Server. */
|
|
5770
|
-
status: "ignored" | "enabled" | "duplicate";
|
|
5771
|
-
/** Meshery Connections are managed and unmanaged resources that either through discovery or manual entry are tracked by Meshery. Learn more at https://docs.meshery.io/concepts/logical/connections */
|
|
5772
|
-
registrant: {
|
|
5773
|
-
/** Connection ID */
|
|
5774
|
-
id: string;
|
|
5775
|
-
/** Connection Name */
|
|
5776
|
-
name: string;
|
|
5777
|
-
/** Associated Credential ID */
|
|
5778
|
-
credentialId?: string;
|
|
5779
|
-
/** Connection Type (platform, telemetry, collaboration) */
|
|
5780
|
-
type: string;
|
|
5781
|
-
/** Connection Subtype (cloud, identity, metrics, chat, git, orchestration) */
|
|
5782
|
-
subType: string;
|
|
5783
|
-
/** Connection Kind (meshery, kubernetes, prometheus, grafana, gke, aws, azure, slack, github) */
|
|
5784
|
-
kind: string;
|
|
5785
|
-
/** Additional connection metadata */
|
|
5786
|
-
metadata?: object;
|
|
5787
|
-
/** Connection Status */
|
|
5788
|
-
status: "discovered" | "registered" | "connected" | "ignored" | "maintenance" | "disconnected" | "deleted" | "not found";
|
|
5789
|
-
/** User ID who owns this connection */
|
|
5790
|
-
user_id?: string;
|
|
5791
|
-
created_at?: string;
|
|
5792
|
-
updated_at?: string;
|
|
5793
|
-
/** SQL null Timestamp to handle null values of time. */
|
|
5794
|
-
deleted_at?: string;
|
|
5795
|
-
/** Associated environments for this connection */
|
|
5796
|
-
environments?: {
|
|
5797
|
-
/** ID */
|
|
5798
|
-
id: string;
|
|
5799
|
-
/** Specifies the version of the schema to which the environment conforms. */
|
|
5800
|
-
schemaVersion: string;
|
|
5801
|
-
/** Environment name */
|
|
5802
|
-
name: string;
|
|
5803
|
-
/** Environment description */
|
|
5804
|
-
description: string;
|
|
5805
|
-
/** Environment organization ID */
|
|
5806
|
-
organization_id: string;
|
|
5807
|
-
/** Environment owner */
|
|
5808
|
-
owner?: string;
|
|
5809
|
-
/** Timestamp when the resource was created. */
|
|
5810
|
-
created_at?: string;
|
|
5811
|
-
/** Additional metadata associated with the environment. */
|
|
5812
|
-
metadata?: object;
|
|
5813
|
-
/** Timestamp when the resource was updated. */
|
|
5814
|
-
updated_at?: string;
|
|
5815
|
-
/** Timestamp when the environment was soft deleted. Null while the environment remains active. */
|
|
5816
|
-
deleted_at?: string | null;
|
|
5817
|
-
}[];
|
|
5818
|
-
/** Specifies the version of the schema used for the definition. */
|
|
5819
|
-
schemaVersion: string;
|
|
5820
|
-
};
|
|
5821
|
-
/** ID of the registrant. */
|
|
5822
|
-
registrantId: string;
|
|
5823
|
-
/** ID of the category. */
|
|
5824
|
-
categoryId: string;
|
|
5825
|
-
/** Category of the model. */
|
|
5826
|
-
category: {
|
|
5827
|
-
/** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
|
|
5828
|
-
id: string;
|
|
5829
|
-
/** The category of the model that determines the main grouping. */
|
|
5830
|
-
name: "Analytics" | "App Definition and Development" | "Cloud Native Network" | "Cloud Native Storage" | "Database" | "Machine Learning" | "Observability and Analysis" | "Orchestration & Management" | "Platform" | "Provisioning" | "Runtime" | "Security & Compliance" | "Serverless" | "Tools" | "Uncategorized";
|
|
5831
|
-
/** Additional metadata associated with the category. */
|
|
5832
|
-
metadata: object;
|
|
5833
|
-
};
|
|
5834
|
-
/** Sub category of the model determines the secondary grouping. */
|
|
5835
|
-
subCategory: "API Gateway" | "API Integration" | "Application Definition & Image Build" | "Automation & Configuration" | "Certified Kubernetes - Distribution" | "Chaos Engineering" | "Cloud Native Storage" | "Cloud Provider" | "CNI" | "Compute" | "Container Registry" | "Container Runtime" | "Container Security" | "Container" | "Content Delivery Network" | "Continuous Integration & Delivery" | "Coordination & Service Discovery" | "Database" | "Flowchart" | "Framework" | "Installable Platform" | "Key Management" | "Key Management Service" | "Kubernetes" | "Logging" | "Machine Learning" | "Management Governance" | "Metrics" | "Monitoring" | "Networking Content Delivery" | "Operating System" | "Query" | "Remote Procedure Call" | "Scheduling & Orchestration" | "Secrets Management" | "Security Identity & Compliance" | "Service Mesh" | "Service Proxy" | "Source Version Control" | "Storage" | "Specifications" | "Streaming & Messaging" | "Tools" | "Tracing" | "Uncategorized" | "Video Conferencing";
|
|
5836
|
-
/** Metadata containing additional information associated with the model. */
|
|
5837
|
-
metadata?: {
|
|
5838
|
-
/** Capabilities associated with the model */
|
|
5839
|
-
capabilities?: {
|
|
5840
|
-
/** Specifies the version of the schema to which the capability definition conforms. */
|
|
5841
|
-
schemaVersion: string;
|
|
5842
|
-
/** Version of the capability definition. */
|
|
5843
|
-
version: string;
|
|
5844
|
-
/** Name of the capability in human-readible format. */
|
|
5845
|
-
displayName: string;
|
|
5846
|
-
/** A written representation of the purpose and characteristics of the capability. */
|
|
5847
|
-
description: string;
|
|
5848
|
-
/** Top-level categorization of the capability */
|
|
5849
|
-
kind: "action" | "mutate" | "view" | "interaction";
|
|
5850
|
-
/** Classification of capabilities. Used to group capabilities similar in nature. */
|
|
5851
|
-
type: string;
|
|
5852
|
-
/** Most granular unit of capability classification. The combination of Kind, Type and SubType together uniquely identify a Capability. */
|
|
5853
|
-
subType: string;
|
|
5854
|
-
/** Key that backs the capability. */
|
|
5855
|
-
key: string;
|
|
5856
|
-
/** State of the entity in which the capability is applicable. */
|
|
5857
|
-
entityState: ("declaration" | "instance")[];
|
|
5858
|
-
/** Status of the capability */
|
|
5859
|
-
status: "enabled" | "disabled";
|
|
5860
|
-
/** Metadata contains additional information associated with the capability. Extension point. */
|
|
5861
|
-
metadata?: {
|
|
5862
|
-
[key: string]: any;
|
|
5863
|
-
};
|
|
5864
|
-
}[];
|
|
5865
|
-
/** Indicates whether the model and its entities should be treated as deployable entities or as logical representations. */
|
|
5866
|
-
isAnnotation?: boolean;
|
|
5867
|
-
/** Primary color associated with the model. */
|
|
5868
|
-
primaryColor?: string;
|
|
5869
|
-
/** Secondary color associated with the model. */
|
|
5870
|
-
secondaryColor?: string;
|
|
5871
|
-
/** SVG representation of the model in white color. */
|
|
5872
|
-
svgWhite: string;
|
|
5873
|
-
/** SVG representation of the model in colored format. */
|
|
5874
|
-
svgColor: string;
|
|
5875
|
-
/** SVG representation of the complete model. */
|
|
5876
|
-
svgComplete?: string;
|
|
5877
|
-
/** The shape of the node's body. Note that each shape fits within the specified width and height, and so you may have to adjust width and height if you desire an equilateral shape (i.e. width !== height for several equilateral shapes) */
|
|
5878
|
-
shape?: "ellipse" | "triangle" | "round-triangle" | "rectangle" | "round-rectangle" | "bottom-round-rectangle" | "cut-rectangle" | "barrel" | "rhomboid" | "diamond" | "round-diamond" | "pentagon" | "round-pentagon" | "hexagon" | "round-hexagon" | "concave-hexagon" | "heptagon" | "round-heptagon" | "octagon" | "round-octagon" | "star" | "tag" | "round-tag" | "vee" | "polygon";
|
|
5879
|
-
[key: string]: any;
|
|
5880
|
-
};
|
|
5881
|
-
/** Registrant-defined data associated with the model. Properties pertain to the software being managed (e.g. Kubernetes v1.31). */
|
|
5882
|
-
model: {
|
|
5883
|
-
/** Version of the model as defined by the registrant. */
|
|
5884
|
-
version: string;
|
|
5885
|
-
};
|
|
5886
|
-
/** The relationships of the model. */
|
|
5887
|
-
relationships: any;
|
|
5888
|
-
/** The components of the model. */
|
|
5889
|
-
components: any;
|
|
5890
|
-
/** Number of components associated with the model. */
|
|
5891
|
-
componentsCount: number;
|
|
5892
|
-
/** Number of relationships associated with the model. */
|
|
5893
|
-
relationshipsCount: number;
|
|
5894
|
-
/** Timestamp when the resource was created. */
|
|
5895
|
-
created_at?: string;
|
|
5896
|
-
/** Timestamp when the resource was updated. */
|
|
5897
|
-
updated_at?: string;
|
|
5898
|
-
};
|
|
5899
|
-
/** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
|
|
5900
5452
|
modelReference?: {
|
|
5901
5453
|
/** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
|
|
5902
5454
|
id: string;
|
|
@@ -5916,8 +5468,6 @@ type GetConnectionByIdApiResponse = {
|
|
|
5916
5468
|
kind: string;
|
|
5917
5469
|
};
|
|
5918
5470
|
};
|
|
5919
|
-
/** Foreign key to the model to which the component belongs. Populated by the ORM from the `model_id` column and suppressed on the JSON wire; consumers use the nested `model` object for wire-level access. */
|
|
5920
|
-
modelId?: string;
|
|
5921
5471
|
/** Additional connection metadata */
|
|
5922
5472
|
metadata?: object;
|
|
5923
5473
|
/** Schema for the credential Associated with the connection */
|
|
@@ -6127,154 +5677,6 @@ type UpdateConnectionApiResponse = {
|
|
|
6127
5677
|
/** Connection Kind (meshery, kubernetes, prometheus, grafana, gke, aws, azure, slack, github) */
|
|
6128
5678
|
kind: string;
|
|
6129
5679
|
/** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
|
|
6130
|
-
model?: {
|
|
6131
|
-
/** Uniquely identifies the entity (i.e. component) as defined in a declaration (i.e. design). */
|
|
6132
|
-
id: string;
|
|
6133
|
-
/** Specifies the version of the schema used for the definition. */
|
|
6134
|
-
schemaVersion: string;
|
|
6135
|
-
/** Version of the model definition. */
|
|
6136
|
-
version: string;
|
|
6137
|
-
/** The unique name for the model within the scope of a registrant. */
|
|
6138
|
-
name: string;
|
|
6139
|
-
/** Human-readable name for the model. */
|
|
6140
|
-
displayName: string;
|
|
6141
|
-
/** Description of the model. */
|
|
6142
|
-
description: string;
|
|
6143
|
-
/** Status of model, including:
|
|
6144
|
-
- duplicate: this component is a duplicate of another. The component that is to be the canonical reference and that is duplicated by other components should not be assigned the 'duplicate' status.
|
|
6145
|
-
- maintenance: model is unavailable for a period of time.
|
|
6146
|
-
- enabled: model is available for use for all users of this Meshery Server.
|
|
6147
|
-
- ignored: model is unavailable for use for all users of this Meshery Server. */
|
|
6148
|
-
status: "ignored" | "enabled" | "duplicate";
|
|
6149
|
-
/** Meshery Connections are managed and unmanaged resources that either through discovery or manual entry are tracked by Meshery. Learn more at https://docs.meshery.io/concepts/logical/connections */
|
|
6150
|
-
registrant: {
|
|
6151
|
-
/** Connection ID */
|
|
6152
|
-
id: string;
|
|
6153
|
-
/** Connection Name */
|
|
6154
|
-
name: string;
|
|
6155
|
-
/** Associated Credential ID */
|
|
6156
|
-
credentialId?: string;
|
|
6157
|
-
/** Connection Type (platform, telemetry, collaboration) */
|
|
6158
|
-
type: string;
|
|
6159
|
-
/** Connection Subtype (cloud, identity, metrics, chat, git, orchestration) */
|
|
6160
|
-
subType: string;
|
|
6161
|
-
/** Connection Kind (meshery, kubernetes, prometheus, grafana, gke, aws, azure, slack, github) */
|
|
6162
|
-
kind: string;
|
|
6163
|
-
/** Additional connection metadata */
|
|
6164
|
-
metadata?: object;
|
|
6165
|
-
/** Connection Status */
|
|
6166
|
-
status: "discovered" | "registered" | "connected" | "ignored" | "maintenance" | "disconnected" | "deleted" | "not found";
|
|
6167
|
-
/** User ID who owns this connection */
|
|
6168
|
-
user_id?: string;
|
|
6169
|
-
created_at?: string;
|
|
6170
|
-
updated_at?: string;
|
|
6171
|
-
/** SQL null Timestamp to handle null values of time. */
|
|
6172
|
-
deleted_at?: string;
|
|
6173
|
-
/** Associated environments for this connection */
|
|
6174
|
-
environments?: {
|
|
6175
|
-
/** ID */
|
|
6176
|
-
id: string;
|
|
6177
|
-
/** Specifies the version of the schema to which the environment conforms. */
|
|
6178
|
-
schemaVersion: string;
|
|
6179
|
-
/** Environment name */
|
|
6180
|
-
name: string;
|
|
6181
|
-
/** Environment description */
|
|
6182
|
-
description: string;
|
|
6183
|
-
/** Environment organization ID */
|
|
6184
|
-
organization_id: string;
|
|
6185
|
-
/** Environment owner */
|
|
6186
|
-
owner?: string;
|
|
6187
|
-
/** Timestamp when the resource was created. */
|
|
6188
|
-
created_at?: string;
|
|
6189
|
-
/** Additional metadata associated with the environment. */
|
|
6190
|
-
metadata?: object;
|
|
6191
|
-
/** Timestamp when the resource was updated. */
|
|
6192
|
-
updated_at?: string;
|
|
6193
|
-
/** Timestamp when the environment was soft deleted. Null while the environment remains active. */
|
|
6194
|
-
deleted_at?: string | null;
|
|
6195
|
-
}[];
|
|
6196
|
-
/** Specifies the version of the schema used for the definition. */
|
|
6197
|
-
schemaVersion: string;
|
|
6198
|
-
};
|
|
6199
|
-
/** ID of the registrant. */
|
|
6200
|
-
registrantId: string;
|
|
6201
|
-
/** ID of the category. */
|
|
6202
|
-
categoryId: string;
|
|
6203
|
-
/** Category of the model. */
|
|
6204
|
-
category: {
|
|
6205
|
-
/** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
|
|
6206
|
-
id: string;
|
|
6207
|
-
/** The category of the model that determines the main grouping. */
|
|
6208
|
-
name: "Analytics" | "App Definition and Development" | "Cloud Native Network" | "Cloud Native Storage" | "Database" | "Machine Learning" | "Observability and Analysis" | "Orchestration & Management" | "Platform" | "Provisioning" | "Runtime" | "Security & Compliance" | "Serverless" | "Tools" | "Uncategorized";
|
|
6209
|
-
/** Additional metadata associated with the category. */
|
|
6210
|
-
metadata: object;
|
|
6211
|
-
};
|
|
6212
|
-
/** Sub category of the model determines the secondary grouping. */
|
|
6213
|
-
subCategory: "API Gateway" | "API Integration" | "Application Definition & Image Build" | "Automation & Configuration" | "Certified Kubernetes - Distribution" | "Chaos Engineering" | "Cloud Native Storage" | "Cloud Provider" | "CNI" | "Compute" | "Container Registry" | "Container Runtime" | "Container Security" | "Container" | "Content Delivery Network" | "Continuous Integration & Delivery" | "Coordination & Service Discovery" | "Database" | "Flowchart" | "Framework" | "Installable Platform" | "Key Management" | "Key Management Service" | "Kubernetes" | "Logging" | "Machine Learning" | "Management Governance" | "Metrics" | "Monitoring" | "Networking Content Delivery" | "Operating System" | "Query" | "Remote Procedure Call" | "Scheduling & Orchestration" | "Secrets Management" | "Security Identity & Compliance" | "Service Mesh" | "Service Proxy" | "Source Version Control" | "Storage" | "Specifications" | "Streaming & Messaging" | "Tools" | "Tracing" | "Uncategorized" | "Video Conferencing";
|
|
6214
|
-
/** Metadata containing additional information associated with the model. */
|
|
6215
|
-
metadata?: {
|
|
6216
|
-
/** Capabilities associated with the model */
|
|
6217
|
-
capabilities?: {
|
|
6218
|
-
/** Specifies the version of the schema to which the capability definition conforms. */
|
|
6219
|
-
schemaVersion: string;
|
|
6220
|
-
/** Version of the capability definition. */
|
|
6221
|
-
version: string;
|
|
6222
|
-
/** Name of the capability in human-readible format. */
|
|
6223
|
-
displayName: string;
|
|
6224
|
-
/** A written representation of the purpose and characteristics of the capability. */
|
|
6225
|
-
description: string;
|
|
6226
|
-
/** Top-level categorization of the capability */
|
|
6227
|
-
kind: "action" | "mutate" | "view" | "interaction";
|
|
6228
|
-
/** Classification of capabilities. Used to group capabilities similar in nature. */
|
|
6229
|
-
type: string;
|
|
6230
|
-
/** Most granular unit of capability classification. The combination of Kind, Type and SubType together uniquely identify a Capability. */
|
|
6231
|
-
subType: string;
|
|
6232
|
-
/** Key that backs the capability. */
|
|
6233
|
-
key: string;
|
|
6234
|
-
/** State of the entity in which the capability is applicable. */
|
|
6235
|
-
entityState: ("declaration" | "instance")[];
|
|
6236
|
-
/** Status of the capability */
|
|
6237
|
-
status: "enabled" | "disabled";
|
|
6238
|
-
/** Metadata contains additional information associated with the capability. Extension point. */
|
|
6239
|
-
metadata?: {
|
|
6240
|
-
[key: string]: any;
|
|
6241
|
-
};
|
|
6242
|
-
}[];
|
|
6243
|
-
/** Indicates whether the model and its entities should be treated as deployable entities or as logical representations. */
|
|
6244
|
-
isAnnotation?: boolean;
|
|
6245
|
-
/** Primary color associated with the model. */
|
|
6246
|
-
primaryColor?: string;
|
|
6247
|
-
/** Secondary color associated with the model. */
|
|
6248
|
-
secondaryColor?: string;
|
|
6249
|
-
/** SVG representation of the model in white color. */
|
|
6250
|
-
svgWhite: string;
|
|
6251
|
-
/** SVG representation of the model in colored format. */
|
|
6252
|
-
svgColor: string;
|
|
6253
|
-
/** SVG representation of the complete model. */
|
|
6254
|
-
svgComplete?: string;
|
|
6255
|
-
/** The shape of the node's body. Note that each shape fits within the specified width and height, and so you may have to adjust width and height if you desire an equilateral shape (i.e. width !== height for several equilateral shapes) */
|
|
6256
|
-
shape?: "ellipse" | "triangle" | "round-triangle" | "rectangle" | "round-rectangle" | "bottom-round-rectangle" | "cut-rectangle" | "barrel" | "rhomboid" | "diamond" | "round-diamond" | "pentagon" | "round-pentagon" | "hexagon" | "round-hexagon" | "concave-hexagon" | "heptagon" | "round-heptagon" | "octagon" | "round-octagon" | "star" | "tag" | "round-tag" | "vee" | "polygon";
|
|
6257
|
-
[key: string]: any;
|
|
6258
|
-
};
|
|
6259
|
-
/** Registrant-defined data associated with the model. Properties pertain to the software being managed (e.g. Kubernetes v1.31). */
|
|
6260
|
-
model: {
|
|
6261
|
-
/** Version of the model as defined by the registrant. */
|
|
6262
|
-
version: string;
|
|
6263
|
-
};
|
|
6264
|
-
/** The relationships of the model. */
|
|
6265
|
-
relationships: any;
|
|
6266
|
-
/** The components of the model. */
|
|
6267
|
-
components: any;
|
|
6268
|
-
/** Number of components associated with the model. */
|
|
6269
|
-
componentsCount: number;
|
|
6270
|
-
/** Number of relationships associated with the model. */
|
|
6271
|
-
relationshipsCount: number;
|
|
6272
|
-
/** Timestamp when the resource was created. */
|
|
6273
|
-
created_at?: string;
|
|
6274
|
-
/** Timestamp when the resource was updated. */
|
|
6275
|
-
updated_at?: string;
|
|
6276
|
-
};
|
|
6277
|
-
/** Reference to the specific registered model to which the component belongs and from which model version, category, and other properties may be referenced. Learn more at https://docs.meshery.io/concepts/models */
|
|
6278
5680
|
modelReference?: {
|
|
6279
5681
|
/** A Universally Unique Identifier used to uniquely identify entities in Meshery. The UUID core definition is used across different schemas. */
|
|
6280
5682
|
id: string;
|
|
@@ -6294,8 +5696,6 @@ type UpdateConnectionApiResponse = {
|
|
|
6294
5696
|
kind: string;
|
|
6295
5697
|
};
|
|
6296
5698
|
};
|
|
6297
|
-
/** Foreign key to the model to which the component belongs. Populated by the ORM from the `model_id` column and suppressed on the JSON wire; consumers use the nested `model` object for wire-level access. */
|
|
6298
|
-
modelId?: string;
|
|
6299
5699
|
/** Additional connection metadata */
|
|
6300
5700
|
metadata?: object;
|
|
6301
5701
|
/** Schema for the credential Associated with the connection */
|