-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeployments.json
87 lines (87 loc) · 2.3 KB
/
deployments.json
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[
{
"name":"projects/PROJECT_ID/locations/LOCATION/deployments/deployment1",
"displayName":"Deployment 1",
"description":"Deployment 1",
"documentation":{
"externalUri":"https://api-test.docs.example.com"
},
"deploymentType": {
"attribute": "projects/PROJECT_ID/locations/LOCATION/attributes/system-deployment-type",
"enumValues": {
"values": [
{
"id": "apigee-hybrid"
}
]
}
},
"resourceUri":"https://api-test.example.com",
"endpoints":[
"https://foo.com",
"https://bar.com"
],
"slo": {
"attribute": "projects/PROJECT_ID/locations/LOCATION/attributes/system-slo",
"enumValues": {
"values": [
{
"id":"99-95"
}
]
}
},
"environment": {
"attribute": "projects/PROJECT_ID/locations/LOCATION/attributes/system-environment",
"enumValues": {
"values": [
{
"id":"test"
}
]
}
},
"attributes":{
"projects/PROJECT_ID/locations/LOCATION/attributes/sample-attribute3":{
"stringValues":{
"values":[
"Test"
]
}
}
}
},
{
"name":"projects/PROJECT_ID/locations/LOCATION/deployments/deployment2",
"displayName":"Deployment 2",
"description":"Deployment 2",
"documentation":{
"externalUri":"https://api-staging.docs.example.com"
},
"deploymentType": {
"attribute": "projects/PROJECT_ID/locations/LOCATION/attributes/system-deployment-type",
"enumValues": {
"values": [
{
"id": "apigee"
}
]
}
},
"environment": {
"attribute": "projects/PROJECT_ID/locations/LOCATION/attributes/system-environment",
"enumValues": {
"values": [
{
"id":"staging"
}
]
}
},
"resourceUri":"https://api-staging.example.com",
"endpoints":[
"https://foo.com",
"https://bar.com"
]
}
]