action visualstudio_put_api_v1_environments_environment_id_ports_port { label: "put_api_v1_Environments_environmentId_ports_port" provider: visualstudio method: PUT path: "/api/v1/Environments/{environmentId}/ports/{port}" encoding: json input: { type: "object" properties: { environmentId: { type: "string" } port: { type: "integer" format: "int32" } privacy: { type: "integer" format: "int32" enum: ["0 (Private)", "1 (Public)", "2 (Org)"] } tunnelType: { type: "integer" format: "int32" enum: ["0 (Basis)", "1 (Liveshare)"] } } required: ["environmentId", "port"] additionalProperties: false } output: { type: "object" additionalProperties: true } }