-
Notifications
You must be signed in to change notification settings - Fork 5.8k
Expand file tree
/
Copy pathEnvironments_GetEnvironmentDefinition.json
More file actions
58 lines (58 loc) · 2.35 KB
/
Copy pathEnvironments_GetEnvironmentDefinition.json
File metadata and controls
58 lines (58 loc) · 2.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"title": "Get an environment definition from a catalog.",
"operationId": "Environments_GetEnvironmentDefinition",
"parameters": {
"api-version": "2024-02-01",
"endpoint": "https://8a40af38-3b4c-4672-a6a4-5e964b1870ed-contosodevcenter.centralus.devcenter.azure.com",
"projectName": "myProject",
"catalogName": "myCatalog",
"definitionName": "foo"
},
"responses": {
"200": {
"body": {
"uri": "https://8a40af38-3b4c-4672-a6a4-5e964b1870ed-contosodevcenter.centralus.devcenter.azure.com/projects/myProject/catalogs/myCatalog/environmentDefinitions/foo",
"id": "/projects/myProject/catalogs/myCatalog/environmentDefinitions/foo",
"name": "foo",
"catalogName": "myCatalog",
"description": "This environment definition is just for example purposes.",
"parameters": [
{
"id": "functionAppRuntime",
"name": "Function App Runtime",
"type": "string",
"required": true,
"default": "dotnet",
"allowed": [
"node",
"dotnet",
"java"
]
},
{
"id": "storageAccountType",
"name": "Storage Account Type",
"type": "string",
"required": true,
"default": "Standard_LRS",
"allowed": [
"Standard_LRS",
"Standard_GRS",
"Standard_RAGRS"
]
},
{
"id": "httpsOnly",
"name": "HTTPS only",
"type": "boolean",
"default": "true",
"readOnly": true,
"required": true
}
],
"parametersSchema": "{\"type\":\"object\",\"properties\":{\"functionAppRuntime\":{\"$id\":\"functionAppRuntime\",\"value\":\"dotnet\",\"displayName\":\"Function App Runtime\",\"type\":\"string\",\"enum\":[\"node\",\"dotnet\",\"java\"]},\"storageAccountType\":{\"$id\":\"storageAccountType\",\"value\":\"Standard_LRS\",\"displayName\":\"Storage Account Type\",\"type\":\"string\",\"enum\":[\"Standard_LRS\",\"Standard_GRS\",\"Standard_RAGRS\"]},\"httpsOnly\":{\"$id\":\"httpsOnly\",\"value\":true,\"displayName\":\"HTTPS only\",\"type\":\"boolean\"}},\"required\":[\"functionAppRuntime\",\"storageAccountType\"]}",
"templatePath": "azuredeploy.json"
}
}
}
}