action visualstudio_put_api_v1_prebuilds_pools_pool_id_instances { label: "put_api_v1_Prebuilds_pools_poolId_instances" provider: visualstudio method: PUT path: "/api/v1/Prebuilds/pools/{poolId}/instances" encoding: json input: { type: "object" properties: { environmentOptions: { type: "object" properties: { correlationId: { type: "string" } } additionalProperties: false } poolId: { type: "string" } secrets: { type: "array" items: { type: "object" properties: { name: { type: "string" } type: { type: "integer" format: "int32" enum: ["1 (EnvironmentVariable)", "2 (ContainerRegistry)"] } value: { type: "string" } } additionalProperties: false } } } required: ["poolId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }