hcs-cli 0.1.318__py3-none-any.whl → 0.1.320__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (119) hide show
  1. hcs_cli/__init__.py +2 -2
  2. hcs_cli/cmds/advisor/html_utils.py +30 -26
  3. hcs_cli/cmds/advisor/recommendation_engine.py +7 -10
  4. hcs_cli/cmds/daas/tenant/plan.py +1 -1
  5. hcs_cli/cmds/debug/start.py +0 -1
  6. hcs_cli/cmds/dev/fs/clear.py +8 -0
  7. hcs_cli/cmds/dev/fs/helper/credential_helper.py +2 -0
  8. hcs_cli/cmds/dev/fs/helper/k8s_util.py +0 -1
  9. hcs_cli/cmds/dev/fs/init.py +38 -5
  10. hcs_cli/cmds/dev/fs/profiler.py +0 -1
  11. hcs_cli/cmds/dev/fs/provided_files/akka.plan.yml +94 -250
  12. hcs_cli/cmds/dev/fs/provided_files/azsim.plan.yml +27 -34
  13. hcs_cli/cmds/dev/fs/provided_files/azure.plan.yml +294 -322
  14. hcs_cli/cmds/dev/fs/provided_files/mqtt-secret.yaml +188 -93
  15. hcs_cli/cmds/dev/fs/provided_files/mqtt-server-external.yaml +4 -5
  16. hcs_cli/cmds/dev/fs/provided_files/patch-mqtt-hostname.yml +3 -3
  17. hcs_cli/cmds/dev/fs/provided_files/patch-vernemq-ssl-depth.json +1 -1
  18. hcs_cli/cmds/dev/fs/tailor.py +7 -12
  19. hcs_cli/cmds/dev/mqtt.py +1 -2
  20. hcs_cli/cmds/dev/util/mqtt_helper.py +0 -1
  21. hcs_cli/cmds/hoc/search.py +39 -9
  22. hcs_cli/cmds/hoc/stats.py +46 -0
  23. hcs_cli/cmds/hst/clean.py +2 -1
  24. hcs_cli/cmds/inventory/assign.py +1 -3
  25. hcs_cli/cmds/inventory/deassign.py +1 -1
  26. hcs_cli/cmds/inventory/delete.py +48 -0
  27. hcs_cli/cmds/lcm/provider/create.py +11 -2
  28. hcs_cli/cmds/lcm/template/expand.py +46 -0
  29. hcs_cli/cmds/lcm/vm/delete.py +3 -2
  30. hcs_cli/cmds/scm/plan.py +131 -3
  31. hcs_cli/cmds/task.py +2 -4
  32. hcs_cli/cmds/template/expand.py +64 -19
  33. hcs_cli/cmds/template/list_usage.py +2 -2
  34. hcs_cli/cmds/template/update.py +2 -2
  35. hcs_cli/cmds/template/usage.py +20 -7
  36. hcs_cli/cmds/vm/delete.py +3 -2
  37. hcs_cli/cmds/vm/list.py +51 -40
  38. hcs_cli/cmds/vmm/rootca_migrate.py +1 -1
  39. hcs_cli/config/hcs-deployments.yaml +52 -52
  40. hcs_cli/main.py +0 -2
  41. hcs_cli/payload/akka.blueprint.yml +95 -243
  42. hcs_cli/payload/app/manual.json +19 -19
  43. hcs_cli/payload/edge/akka.json +6 -6
  44. hcs_cli/payload/edge/vsphere.json +6 -6
  45. hcs_cli/payload/hoc/lcm-capcalc.json.template +43 -0
  46. hcs_cli/payload/hoc/no-spare.json.template +1 -1
  47. hcs_cli/payload/inventory/assign.json +14 -16
  48. hcs_cli/payload/inventory/deassign.json +11 -11
  49. hcs_cli/payload/lcm/akka.json +31 -33
  50. hcs_cli/payload/lcm/azure-dummy.json +64 -66
  51. hcs_cli/payload/lcm/azure-real.json +13 -11
  52. hcs_cli/payload/lcm/edge-proxy.json +34 -36
  53. hcs_cli/payload/lcm/zero-dedicated.json +34 -36
  54. hcs_cli/payload/lcm/zero-delay-1m-per-vm.json +53 -69
  55. hcs_cli/payload/lcm/zero-fail-delete-template.json +43 -0
  56. hcs_cli/payload/lcm/zero-fail-destroy-onthread.json +38 -40
  57. hcs_cli/payload/lcm/zero-fail-destroy.json +38 -40
  58. hcs_cli/payload/lcm/zero-fail-prepare-onthread.json +38 -40
  59. hcs_cli/payload/lcm/zero-fail-prepare.json +38 -40
  60. hcs_cli/payload/lcm/zero-fail-vm-onthread.json +58 -74
  61. hcs_cli/payload/lcm/zero-fail-vm.json +58 -74
  62. hcs_cli/payload/lcm/zero-floating.json +34 -36
  63. hcs_cli/payload/lcm/zero-manual.json +33 -35
  64. hcs_cli/payload/lcm/zero-multisession.json +34 -36
  65. hcs_cli/payload/lcm/zero-nanw.json +31 -33
  66. hcs_cli/payload/lcm/zero-new-5k-delay.json +69 -78
  67. hcs_cli/payload/lcm/zero-new-5k.json +36 -38
  68. hcs_cli/payload/lcm/zero-new-snapshot.json +37 -39
  69. hcs_cli/payload/lcm/zero-new.json +37 -39
  70. hcs_cli/payload/lcm/zero-reuse-vm-id.json +33 -35
  71. hcs_cli/payload/lcm/zero-with-max-id-offset.json +32 -34
  72. hcs_cli/payload/lcm/zero.json +59 -73
  73. hcs_cli/payload/provider/ad-stes-vsphere.json +26 -26
  74. hcs_cli/payload/provider/akka.json +12 -12
  75. hcs_cli/payload/provider/azure.json +14 -14
  76. hcs_cli/payload/provider/edgeproxy.json +12 -12
  77. hcs_cli/payload/provider/vsphere.json +14 -14
  78. hcs_cli/payload/scm/starter.json +22 -23
  79. hcs_cli/payload/synt/core/p01-dummy-success.json +11 -15
  80. hcs_cli/payload/synt/core/p02-dummy-fail.json +12 -15
  81. hcs_cli/payload/synt/core/p03-dummy-exception.json +12 -15
  82. hcs_cli/payload/synt/core/p04-dummy-success-repeat.json +12 -15
  83. hcs_cli/payload/synt/core/p05-dummy-fail-repeat.json +13 -16
  84. hcs_cli/payload/synt/core/p06-dummy-exception-repeat.json +13 -16
  85. hcs_cli/payload/synt/core/p07-dummy-delay.json +12 -15
  86. hcs_cli/payload/synt/core/p08-dummy-property.json +12 -15
  87. hcs_cli/payload/synt/ext/p20-connect-success.json +12 -15
  88. hcs_cli/payload/synt/ext/p21-connect-fail.json +12 -15
  89. hcs_cli/payload/synt/ext/p30-ssl-success.json +12 -15
  90. hcs_cli/payload/synt/ext/p31-ssl-fail.json +13 -16
  91. hcs_cli/payload/synt/ext/p40-http-success.json +12 -15
  92. hcs_cli/payload/synt/ext/p41-http-fail.json +12 -15
  93. hcs_cli/payload/synt/ext/p42-http-status-code.json +14 -20
  94. hcs_cli/payload/synt/ext1/p10-ping-success.json +13 -16
  95. hcs_cli/payload/synt/ext1/p11-ping-fail.json +12 -15
  96. hcs_cli/payload/synt/ext1/p12-ping-success-repeat.json +14 -17
  97. hcs_cli/provider/hcs/cert.py +0 -1
  98. hcs_cli/provider/hcs/edge.py +1 -1
  99. hcs_cli/provider/hcs/uag.py +1 -1
  100. hcs_cli/service/admin/template.py +10 -1
  101. hcs_cli/service/hoc/diagnostic.py +11 -3
  102. hcs_cli/service/inventory/__init__.py +15 -2
  103. hcs_cli/service/inventory/vm.py +12 -0
  104. hcs_cli/service/lcm/template.py +9 -6
  105. hcs_cli/service/lcm/vm.py +0 -1
  106. hcs_cli/service/task.py +0 -1
  107. hcs_cli/service/template.py +1 -1
  108. hcs_cli/support/debug_util.py +0 -1
  109. hcs_cli/support/plan_util.py +0 -1
  110. hcs_cli/support/predefined_payload.py +4 -1
  111. hcs_cli/support/template_util.py +0 -1
  112. hcs_cli/support/test_utils.py +2 -2
  113. hcs_cli/support/test_utils2.py +536 -0
  114. hcs_cli/support/vm_table.py +2 -2
  115. {hcs_cli-0.1.318.dist-info → hcs_cli-0.1.320.dist-info}/METADATA +24 -17
  116. {hcs_cli-0.1.318.dist-info → hcs_cli-0.1.320.dist-info}/RECORD +118 -113
  117. hcs_cli/payload/lcm/azure-dummy-nt.json +0 -69
  118. {hcs_cli-0.1.318.dist-info → hcs_cli-0.1.320.dist-info}/WHEEL +0 -0
  119. {hcs_cli-0.1.318.dist-info → hcs_cli-0.1.320.dist-info}/entry_points.txt +0 -0
@@ -1,35 +1,33 @@
1
1
  {
2
- "region": "westus2",
3
- "id": "${id}",
4
- "name": "nanw-test1",
5
- "templateType" : "FLOATING",
6
- "provisionWithAgentReady": false,
7
- "vmNamePattern": "z-s",
8
- "provider": {
9
- "providerAccessId": "${providerId}"
10
- },
11
- "sparePolicy": {
12
- "increment": 200,
13
- "limit": 5,
14
- "max": 3,
15
- "min": 3
16
- },
17
- "providerType": "ZEROCLOUD",
18
- "hdc": {
19
- "vmHubName": "westus2",
20
- "vmHubURL": ""
21
- },
22
- "edgeGateway": {
23
- "id": "abcdefghijklmnopqrstuvwx",
24
- "iotDeviceName": "syntheticIotDeviceName",
25
- "adTwinId": "syntheticAdTwinId"
26
- },
27
- "orgId" : "aecd10d9-ca4f-4af8-97fa-9d7b6f25e285",
28
- "agentCustomization": {
29
- "sessionsPerVm": 1
30
- },
31
- "location": "US",
32
- "getMaxVMIdOffset": 5
33
- }
34
-
35
-
2
+ "region": "westus2",
3
+ "id": "${id}",
4
+ "name": "nanw-test1",
5
+ "templateType": "FLOATING",
6
+ "provisionWithAgentReady": false,
7
+ "vmNamePattern": "z-s",
8
+ "provider": {
9
+ "providerAccessId": "${providerId}"
10
+ },
11
+ "sparePolicy": {
12
+ "increment": 200,
13
+ "limit": 5,
14
+ "max": 3,
15
+ "min": 3
16
+ },
17
+ "providerType": "ZEROCLOUD",
18
+ "hdc": {
19
+ "vmHubName": "westus2",
20
+ "vmHubURL": ""
21
+ },
22
+ "edgeGateway": {
23
+ "id": "abcdefghijklmnopqrstuvwx",
24
+ "iotDeviceName": "syntheticIotDeviceName",
25
+ "adTwinId": "syntheticAdTwinId"
26
+ },
27
+ "orgId": "aecd10d9-ca4f-4af8-97fa-9d7b6f25e285",
28
+ "agentCustomization": {
29
+ "sessionsPerVm": 1
30
+ },
31
+ "location": "US",
32
+ "getMaxVMIdOffset": 5
33
+ }
@@ -1,77 +1,63 @@
1
1
  {
2
- "region": "westus2",
3
- "id": "${id}",
4
- "name": "nanw-test1",
5
- "templateType" : "FLOATING",
6
- "vmRefreshType": "DELETE_VM",
7
- "provisionWithAgentReady": false,
8
- "vmNamePattern": "zvm",
9
- "provider": {
10
- "providerAccessId": "${providerId}"
11
- },
12
- "sparePolicy": {
13
- "increment": 200,
14
- "limit": 3,
15
- "max": 2,
16
- "min": 1
17
- },
18
- "providerType": "ZEROCLOUD",
19
- "hdc": {
20
- "vmHubName": "westus2",
21
- "vmHubURL": ""
22
- },
23
- "edgeGateway": {
24
- "id": "abcdefghijklmnopqrstuvwx",
25
- "iotDeviceName": "syntheticIotDeviceName",
26
- "adTwinId": "syntheticAdTwinId"
27
- },
28
- "orgId" : "aecd10d9-ca4f-4af8-97fa-9d7b6f25e285",
29
- "agentCustomization": {
30
- "sessionsPerVm": 1
31
- },
32
- "location": "US",
33
- "monkey": {
34
- "defaults": {
35
- },
36
- "onDeletePool": {
37
- },
38
- "onList": {
39
- },
40
- "onPrepare": {
41
- },
42
- "vms": {
43
- "#default": {
44
- "onCreate": {
45
- "delayAsyncMs": 0,
46
- "delayOnThreadMs": 0,
47
- "errAsync": 0,
48
- "errOnThread": 0,
49
- "sequence": []
50
- },
51
- "onDelete": {
52
- },
53
- "onPowerOff": {
54
- },
55
- "onPowerOn": {
56
- },
57
- "onRestart": {
58
- },
59
- "onShutdown": {
60
- },
61
- "onRefresh": {
62
- },
63
- "onRevertSnapshot": {
64
- },
65
- "onTakeSnapshot": {
66
- }
67
- }
2
+ "region": "westus2",
3
+ "id": "${id}",
4
+ "name": "nanw-test1",
5
+ "templateType": "FLOATING",
6
+ "vmRefreshType": "DELETE_VM",
7
+ "provisionWithAgentReady": false,
8
+ "vmNamePattern": "zvm",
9
+ "provider": {
10
+ "providerAccessId": "${providerId}"
11
+ },
12
+ "sparePolicy": {
13
+ "increment": 200,
14
+ "limit": 3,
15
+ "max": 2,
16
+ "min": 1
17
+ },
18
+ "providerType": "ZEROCLOUD",
19
+ "hdc": {
20
+ "vmHubName": "westus2",
21
+ "vmHubURL": ""
22
+ },
23
+ "edgeGateway": {
24
+ "id": "abcdefghijklmnopqrstuvwx",
25
+ "iotDeviceName": "syntheticIotDeviceName",
26
+ "adTwinId": "syntheticAdTwinId"
27
+ },
28
+ "orgId": "aecd10d9-ca4f-4af8-97fa-9d7b6f25e285",
29
+ "agentCustomization": {
30
+ "sessionsPerVm": 1
31
+ },
32
+ "location": "US",
33
+ "monkey": {
34
+ "defaults": {},
35
+ "onDeletePool": {},
36
+ "onList": {},
37
+ "onPrepare": {},
38
+ "vms": {
39
+ "#default": {
40
+ "onCreate": {
41
+ "delayAsyncMs": 0,
42
+ "delayOnThreadMs": 0,
43
+ "errAsync": 0,
44
+ "errOnThread": 0,
45
+ "sequence": []
46
+ },
47
+ "onDelete": {},
48
+ "onPowerOff": {},
49
+ "onPowerOn": {},
50
+ "onRestart": {},
51
+ "onShutdown": {},
52
+ "onRefresh": {},
53
+ "onRevertSnapshot": {},
54
+ "onTakeSnapshot": {}
68
55
  }
69
- },
70
- "properties": {
71
- "new-task-engine": false,
72
- "sg-lcm-enforced-provision": true,
73
- "autonomous": true
74
56
  }
57
+ },
58
+ "properties": {
59
+ "new-task-engine": false,
60
+ "sg-lcm-enforced-provision": true,
61
+ "autonomous": true
62
+ }
75
63
  }
76
-
77
-
@@ -1,29 +1,29 @@
1
1
  {
2
- "orgId": "",
3
- "name": "ad-dev",
4
- "defaultOU": "OU=HV2-Desktops",
5
- "dnsDomainName": "pod30.hcs.steslabs.net",
6
- "netBIOSName": "pod30",
7
- "joinAccounts": {
8
- "primary": {
9
- "username": "vdiadmin",
10
- "password": ["p", "a", "s", "s", "w", "o", "r", "d"]
11
- },
12
- "auxiliary": {
13
- "username": "vdiadmin2",
14
- "password": ["p", "a", "s", "s", "w", "o", "r", "d"]
15
- }
2
+ "orgId": "",
3
+ "name": "ad-dev",
4
+ "defaultOU": "OU=HV2-Desktops",
5
+ "dnsDomainName": "pod30.hcs.steslabs.net",
6
+ "netBIOSName": "pod30",
7
+ "joinAccounts": {
8
+ "primary": {
9
+ "username": "vdiadmin",
10
+ "password": ["p", "a", "s", "s", "w", "o", "r", "d"]
16
11
  },
17
- "bindAccounts": {
18
- "primary": {
19
- "username": "vdiadmin",
20
- "password": ["p", "a", "s", "s", "w", "o", "r", "d"]
21
- },
22
- "auxiliary": {
23
- "username": "vdiadmin2",
24
- "password": ["p", "a", "s", "s", "w", "o", "r", "d"]
25
- }
12
+ "auxiliary": {
13
+ "username": "vdiadmin2",
14
+ "password": ["p", "a", "s", "s", "w", "o", "r", "d"]
15
+ }
16
+ },
17
+ "bindAccounts": {
18
+ "primary": {
19
+ "username": "vdiadmin",
20
+ "password": ["p", "a", "s", "s", "w", "o", "r", "d"]
26
21
  },
27
- "primaryDNS": "10.202.143.41",
28
- "secondaryDNS": "10.202.143.42"
29
- }
22
+ "auxiliary": {
23
+ "username": "vdiadmin2",
24
+ "password": ["p", "a", "s", "s", "w", "o", "r", "d"]
25
+ }
26
+ },
27
+ "primaryDNS": "10.202.143.41",
28
+ "secondaryDNS": "10.202.143.42"
29
+ }
@@ -1,13 +1,13 @@
1
1
  {
2
- "name": "nanw-akka-test",
3
- "edgeGatewayNeeded" : true,
4
- "providerDetails": {
5
- "method": "ByEndpoint",
6
- "data": {
7
- "endpoint": "http://20.114.50.188",
8
- "applicationId": "dummy-app-id",
9
- "applicationKey": "dummy-app-key"
10
- }
11
- },
12
- "providerLabel": "akka"
13
- }
2
+ "name": "nanw-akka-test",
3
+ "edgeGatewayNeeded": true,
4
+ "providerDetails": {
5
+ "method": "ByEndpoint",
6
+ "data": {
7
+ "endpoint": "http://20.114.50.188",
8
+ "applicationId": "dummy-app-id",
9
+ "applicationKey": "dummy-app-key"
10
+ }
11
+ },
12
+ "providerLabel": "akka"
13
+ }
@@ -1,16 +1,16 @@
1
1
  {
2
- "orgId": "",
3
- "providerLabel": "azure",
4
- "name": "cli-test",
5
- "edgeGatewayNeeded": true,
6
- "providerDetails": {
7
- "method": "ByAppRegistration",
8
- "data": {
9
- "subscriptionId": "a2ef2de8-f2b5-43da-bf68-2b182dd5f928",
10
- "directoryId": "45a54f44-5305-4388-97a6-aa39bc8b451b",
11
- "applicationId": "867e83c1-5d9c-4f93-a0c5-e010a04e720c",
12
- "applicationKey": "replaceme",
13
- "region": "westus2"
14
- }
2
+ "orgId": "",
3
+ "providerLabel": "azure",
4
+ "name": "cli-test",
5
+ "edgeGatewayNeeded": true,
6
+ "providerDetails": {
7
+ "method": "ByAppRegistration",
8
+ "data": {
9
+ "subscriptionId": "a2ef2de8-f2b5-43da-bf68-2b182dd5f928",
10
+ "directoryId": "45a54f44-5305-4388-97a6-aa39bc8b451b",
11
+ "applicationId": "867e83c1-5d9c-4f93-a0c5-e010a04e720c",
12
+ "applicationKey": "replaceme",
13
+ "region": "westus2"
15
14
  }
16
- }
15
+ }
16
+ }
@@ -1,13 +1,13 @@
1
1
  {
2
- "name": "nanw-edgeproxy-test",
3
- "edgeGatewayNeeded" : true,
4
- "providerDetails": {
5
- "method": "ByEndpoint",
6
- "data": {
7
- "endpoint": "http://20.114.50.188",
8
- "applicationId": "dummy-app-id",
9
- "applicationKey": "dummy-app-key"
10
- }
11
- },
12
- "providerLabel": "edgeproxy"
13
- }
2
+ "name": "nanw-edgeproxy-test",
3
+ "edgeGatewayNeeded": true,
4
+ "providerDetails": {
5
+ "method": "ByEndpoint",
6
+ "data": {
7
+ "endpoint": "http://20.114.50.188",
8
+ "applicationId": "dummy-app-id",
9
+ "applicationKey": "dummy-app-key"
10
+ }
11
+ },
12
+ "providerLabel": "edgeproxy"
13
+ }
@@ -1,16 +1,16 @@
1
1
  {
2
- "orgId": "",
3
- "name": "cli-1",
4
- "providerLabel": "vsphere",
5
- "providerDetails": {
6
- "method": "ByVSphereCredentials",
7
- "data": {
8
- "vSphereProviderType": "ON_PREM",
9
- "geoLocation": "-122.143936,37.468319",
10
- "vCenterUrl": "https://pseudo-vc.eng.omnissa.com",
11
- "username": "invalidusername",
12
- "password": "invalidpassword",
13
- "thumbprint": "<<vcenter thumbprint (see steps mentioned below)>>"
14
- }
2
+ "orgId": "",
3
+ "name": "cli-1",
4
+ "providerLabel": "vsphere",
5
+ "providerDetails": {
6
+ "method": "ByVSphereCredentials",
7
+ "data": {
8
+ "vSphereProviderType": "ON_PREM",
9
+ "geoLocation": "-122.143936,37.468319",
10
+ "vCenterUrl": "https://pseudo-vc.eng.omnissa.com",
11
+ "username": "invalidusername",
12
+ "password": "invalidpassword",
13
+ "thumbprint": "<<vcenter thumbprint (see steps mentioned below)>>"
15
14
  }
16
- }
15
+ }
16
+ }
@@ -1,26 +1,25 @@
1
1
  {
2
- "name": "starter",
3
- "task": "com.vmware.horizon.sg.scm.task.Demo",
4
- "namespace": "scm",
5
- "data": {
6
- "nickname": "peggi",
7
- "target": 33
2
+ "name": "starter",
3
+ "task": "com.vmware.horizon.sg.scm.task.Demo",
4
+ "namespace": "scm",
5
+ "data": {
6
+ "nickname": "peggi",
7
+ "target": 33
8
+ },
9
+ "calendar": {
10
+ "monday/13:00": {
11
+ "nickname": "makabaka"
8
12
  },
9
- "calendar": {
10
- "monday/13:00": {
11
- "nickname": "makabaka"
12
- },
13
- "monday/13:30": {
14
- "target": 44
15
- },
16
- "monday/14:00": {
17
- },
18
- "monday/14:30": {
19
- "delayMs": 10000
20
- },
21
- "monday/15:00": {
22
- "error": "bad-one"
23
- }
13
+ "monday/13:30": {
14
+ "target": 44
24
15
  },
25
- "timezone": "Asia/Shanghai"
26
- }
16
+ "monday/14:00": {},
17
+ "monday/14:30": {
18
+ "delayMs": 10000
19
+ },
20
+ "monday/15:00": {
21
+ "error": "bad-one"
22
+ }
23
+ },
24
+ "timezone": "Asia/Shanghai"
25
+ }
@@ -1,16 +1,12 @@
1
1
  {
2
- "alertPolicy": {
3
- },
4
- "notificationConfig": {
5
- },
6
- "outpostIds": [],
7
- "testConfig": {
8
- "data": {
9
- },
10
- "enabled": true,
11
- "labels": {
12
- },
13
- "name": "probe01-dummy-success",
14
- "type": "TEST_DUMMY"
15
- }
16
- }
2
+ "alertPolicy": {},
3
+ "notificationConfig": {},
4
+ "outpostIds": [],
5
+ "testConfig": {
6
+ "data": {},
7
+ "enabled": true,
8
+ "labels": {},
9
+ "name": "probe01-dummy-success",
10
+ "type": "TEST_DUMMY"
11
+ }
12
+ }
@@ -1,17 +1,14 @@
1
1
  {
2
- "alertPolicy": {
2
+ "alertPolicy": {},
3
+ "notificationConfig": {},
4
+ "outpostIds": [],
5
+ "testConfig": {
6
+ "data": {
7
+ "returnCode": 123
3
8
  },
4
- "notificationConfig": {
5
- },
6
- "outpostIds": [],
7
- "testConfig": {
8
- "data": {
9
- "returnCode": 123
10
- },
11
- "enabled": true,
12
- "labels": {
13
- },
14
- "name": "probe02-dummy-fail",
15
- "type": "TEST_DUMMY"
16
- }
17
- }
9
+ "enabled": true,
10
+ "labels": {},
11
+ "name": "probe02-dummy-fail",
12
+ "type": "TEST_DUMMY"
13
+ }
14
+ }
@@ -1,17 +1,14 @@
1
1
  {
2
- "alertPolicy": {
2
+ "alertPolicy": {},
3
+ "notificationConfig": {},
4
+ "outpostIds": [],
5
+ "testConfig": {
6
+ "data": {
7
+ "exception": "simulated-error"
3
8
  },
4
- "notificationConfig": {
5
- },
6
- "outpostIds": [],
7
- "testConfig": {
8
- "data": {
9
- "exception": "simulated-error"
10
- },
11
- "enabled": true,
12
- "labels": {
13
- },
14
- "name": "probe03-dummy-exception",
15
- "type": "TEST_DUMMY"
16
- }
17
- }
9
+ "enabled": true,
10
+ "labels": {},
11
+ "name": "probe03-dummy-exception",
12
+ "type": "TEST_DUMMY"
13
+ }
14
+ }
@@ -1,17 +1,14 @@
1
1
  {
2
- "alertPolicy": {
2
+ "alertPolicy": {},
3
+ "notificationConfig": {},
4
+ "outpostIds": [],
5
+ "testConfig": {
6
+ "data": {
7
+ "repeat": "PT2S"
3
8
  },
4
- "notificationConfig": {
5
- },
6
- "outpostIds": [],
7
- "testConfig": {
8
- "data": {
9
- "repeat": "PT2S"
10
- },
11
- "enabled": true,
12
- "labels": {
13
- },
14
- "name": "probe04-dummy-success-repeat",
15
- "type": "TEST_DUMMY"
16
- }
17
- }
9
+ "enabled": true,
10
+ "labels": {},
11
+ "name": "probe04-dummy-success-repeat",
12
+ "type": "TEST_DUMMY"
13
+ }
14
+ }
@@ -1,18 +1,15 @@
1
1
  {
2
- "alertPolicy": {
2
+ "alertPolicy": {},
3
+ "notificationConfig": {},
4
+ "outpostIds": [],
5
+ "testConfig": {
6
+ "data": {
7
+ "returnCode": "123",
8
+ "repeat": "PT2S"
3
9
  },
4
- "notificationConfig": {
5
- },
6
- "outpostIds": [],
7
- "testConfig": {
8
- "data": {
9
- "returnCode": "123",
10
- "repeat": "PT2S"
11
- },
12
- "enabled": true,
13
- "labels": {
14
- },
15
- "name": "probe05-dummy-fail-repeat",
16
- "type": "TEST_DUMMY"
17
- }
18
- }
10
+ "enabled": true,
11
+ "labels": {},
12
+ "name": "probe05-dummy-fail-repeat",
13
+ "type": "TEST_DUMMY"
14
+ }
15
+ }
@@ -1,18 +1,15 @@
1
1
  {
2
- "alertPolicy": {
2
+ "alertPolicy": {},
3
+ "notificationConfig": {},
4
+ "outpostIds": [],
5
+ "testConfig": {
6
+ "data": {
7
+ "exception": "simulated-error",
8
+ "repeat": "PT2S"
3
9
  },
4
- "notificationConfig": {
5
- },
6
- "outpostIds": [],
7
- "testConfig": {
8
- "data": {
9
- "exception": "simulated-error",
10
- "repeat": "PT2S"
11
- },
12
- "enabled": true,
13
- "labels": {
14
- },
15
- "name": "probe06-dummy-exception-repeat",
16
- "type": "TEST_DUMMY"
17
- }
18
- }
10
+ "enabled": true,
11
+ "labels": {},
12
+ "name": "probe06-dummy-exception-repeat",
13
+ "type": "TEST_DUMMY"
14
+ }
15
+ }
@@ -1,17 +1,14 @@
1
1
  {
2
- "alertPolicy": {
2
+ "alertPolicy": {},
3
+ "notificationConfig": {},
4
+ "outpostIds": [],
5
+ "testConfig": {
6
+ "data": {
7
+ "delay": "PT5S"
3
8
  },
4
- "notificationConfig": {
5
- },
6
- "outpostIds": [],
7
- "testConfig": {
8
- "data": {
9
- "delay": "PT5S"
10
- },
11
- "enabled": true,
12
- "labels": {
13
- },
14
- "name": "probe07-dummy-delay",
15
- "type": "TEST_DUMMY"
16
- }
17
- }
9
+ "enabled": true,
10
+ "labels": {},
11
+ "name": "probe07-dummy-delay",
12
+ "type": "TEST_DUMMY"
13
+ }
14
+ }