Thanks for your feedback!
EDIT
.yaml
de ApiEnvironmentLink (comando apply
)apiVersion: api-management.sensedia.com/v1 kind: ApiEnvironmentLink metadata: # Descripción de texto libre que sólo incluye valores de ejemplo type: production owner: engineering spec: # Campos de identificación apiRef: name: "Open Banking API" version: "1.0.0" environmentRef: name: "Production"
apply
){ "$schema": "https://json-schema.org/draft/2019-09/schema", "$id": "https://sensedia.com/cli/api-management/apienvironmentlink", "type": "object", "properties": { "apiVersion": { "type": "string", "enum": [ "api-management.sensedia.com/v1" ] }, "kind": { "type": "string", "enum": [ "ApiEnvironmentLink" ] }, "metadata": { "type": "object", "additionalProperties": { "type": "string" } }, "spec": { "additionalProperties": false, "type": "object", "required": [ "apiRef", "environmentRef" ], "properties": { "apiRef": { "$ref": "#/$defs/apiRef" }, "environmentRef": { "$ref": "#/$defs/namedRef" } } } }, "required": [ "apiVersion", "kind", "spec" ], "$defs": { "namedRef": { "additionalProperties": false, "type": "object", "properties": { "name": { "type": "string" } }, "required": [ "name" ] }, "apiRef": { "additionalProperties": false, "type": "object", "properties": { "name": { "type": "string" }, "version": { "type": "string" } }, "required": [ "name", "version" ] } } }
Share your suggestions with us!
Click here and then [+ Submit idea]