hcs-cli 0.1.317__py3-none-any.whl → 0.1.319__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 (112) hide show
  1. hcs_cli/__init__.py +1 -1
  2. hcs_cli/cmds/advisor/html_utils.py +30 -26
  3. hcs_cli/cmds/advisor/recommendation_engine.py +7 -10
  4. hcs_cli/cmds/api.py +5 -3
  5. hcs_cli/cmds/daas/tenant/plan.py +1 -1
  6. hcs_cli/cmds/debug/start.py +2 -3
  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/helper/license_info.py +36 -12
  10. hcs_cli/cmds/dev/fs/init.py +38 -5
  11. hcs_cli/cmds/dev/fs/profiler.py +0 -1
  12. hcs_cli/cmds/dev/fs/provided_files/akka.plan.yml +94 -250
  13. hcs_cli/cmds/dev/fs/provided_files/azsim.plan.yml +27 -34
  14. hcs_cli/cmds/dev/fs/provided_files/azure.plan.yml +294 -322
  15. hcs_cli/cmds/dev/fs/provided_files/mqtt-secret.yaml +188 -93
  16. hcs_cli/cmds/dev/fs/provided_files/mqtt-server-external.yaml +4 -5
  17. hcs_cli/cmds/dev/fs/provided_files/patch-mqtt-hostname.yml +3 -3
  18. hcs_cli/cmds/dev/fs/provided_files/patch-vernemq-ssl-depth.json +1 -1
  19. hcs_cli/cmds/dev/fs/tailor.py +7 -12
  20. hcs_cli/cmds/dev/mqtt.py +1 -2
  21. hcs_cli/cmds/dev/onboard.py +35 -1
  22. hcs_cli/cmds/dev/util/mqtt_helper.py +0 -1
  23. hcs_cli/cmds/hoc/search.py +39 -9
  24. hcs_cli/cmds/hst/clean.py +2 -1
  25. hcs_cli/cmds/inventory/assign.py +72 -28
  26. hcs_cli/cmds/inventory/deassign.py +35 -18
  27. hcs_cli/cmds/inventory/logoff.py +86 -8
  28. hcs_cli/cmds/inventory/session.py +2 -2
  29. hcs_cli/cmds/scm/operator.py +2 -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 +65 -0
  33. hcs_cli/cmds/template/list_usage.py +2 -2
  34. hcs_cli/cmds/template/usage.py +20 -7
  35. hcs_cli/cmds/vm/list.py +0 -1
  36. hcs_cli/config/hcs-deployments.yaml +52 -52
  37. hcs_cli/main.py +0 -2
  38. hcs_cli/payload/akka.blueprint.yml +95 -243
  39. hcs_cli/payload/app/manual.json +19 -19
  40. hcs_cli/payload/edge/akka.json +6 -6
  41. hcs_cli/payload/edge/vsphere.json +6 -6
  42. hcs_cli/payload/hoc/lcm-capcalc.json.template +43 -0
  43. hcs_cli/payload/hoc/no-spare.json.template +1 -1
  44. hcs_cli/payload/inventory/assign.json +14 -16
  45. hcs_cli/payload/inventory/deassign.json +11 -11
  46. hcs_cli/payload/lcm/akka.json +31 -33
  47. hcs_cli/payload/lcm/azure-dummy-nt.json +64 -66
  48. hcs_cli/payload/lcm/azure-dummy.json +64 -66
  49. hcs_cli/payload/lcm/azure-real.json +13 -11
  50. hcs_cli/payload/lcm/edge-proxy.json +34 -36
  51. hcs_cli/payload/lcm/zero-dedicated.json +34 -36
  52. hcs_cli/payload/lcm/zero-delay-1m-per-vm.json +53 -69
  53. hcs_cli/payload/lcm/zero-fail-delete-template.json +43 -0
  54. hcs_cli/payload/lcm/zero-fail-destroy-onthread.json +38 -40
  55. hcs_cli/payload/lcm/zero-fail-destroy.json +38 -40
  56. hcs_cli/payload/lcm/zero-fail-prepare-onthread.json +38 -40
  57. hcs_cli/payload/lcm/zero-fail-prepare.json +38 -40
  58. hcs_cli/payload/lcm/zero-fail-vm-onthread.json +58 -74
  59. hcs_cli/payload/lcm/zero-fail-vm.json +58 -74
  60. hcs_cli/payload/lcm/zero-floating.json +34 -36
  61. hcs_cli/payload/lcm/zero-manual.json +33 -35
  62. hcs_cli/payload/lcm/zero-multisession.json +34 -36
  63. hcs_cli/payload/lcm/zero-nanw.json +31 -33
  64. hcs_cli/payload/lcm/zero-new-5k-delay.json +69 -78
  65. hcs_cli/payload/lcm/zero-new-5k.json +36 -38
  66. hcs_cli/payload/lcm/zero-new-snapshot.json +37 -39
  67. hcs_cli/payload/lcm/zero-new.json +37 -39
  68. hcs_cli/payload/lcm/zero-reuse-vm-id.json +33 -35
  69. hcs_cli/payload/lcm/zero-with-max-id-offset.json +32 -34
  70. hcs_cli/payload/lcm/zero.json +59 -73
  71. hcs_cli/payload/provider/ad-stes-vsphere.json +26 -26
  72. hcs_cli/payload/provider/akka.json +12 -12
  73. hcs_cli/payload/provider/azure.json +14 -14
  74. hcs_cli/payload/provider/edgeproxy.json +12 -12
  75. hcs_cli/payload/provider/vsphere.json +14 -14
  76. hcs_cli/payload/scm/starter.json +22 -23
  77. hcs_cli/payload/synt/core/p01-dummy-success.json +11 -15
  78. hcs_cli/payload/synt/core/p02-dummy-fail.json +12 -15
  79. hcs_cli/payload/synt/core/p03-dummy-exception.json +12 -15
  80. hcs_cli/payload/synt/core/p04-dummy-success-repeat.json +12 -15
  81. hcs_cli/payload/synt/core/p05-dummy-fail-repeat.json +13 -16
  82. hcs_cli/payload/synt/core/p06-dummy-exception-repeat.json +13 -16
  83. hcs_cli/payload/synt/core/p07-dummy-delay.json +12 -15
  84. hcs_cli/payload/synt/core/p08-dummy-property.json +12 -15
  85. hcs_cli/payload/synt/ext/p20-connect-success.json +12 -15
  86. hcs_cli/payload/synt/ext/p21-connect-fail.json +12 -15
  87. hcs_cli/payload/synt/ext/p30-ssl-success.json +12 -15
  88. hcs_cli/payload/synt/ext/p31-ssl-fail.json +13 -16
  89. hcs_cli/payload/synt/ext/p40-http-success.json +12 -15
  90. hcs_cli/payload/synt/ext/p41-http-fail.json +12 -15
  91. hcs_cli/payload/synt/ext/p42-http-status-code.json +14 -20
  92. hcs_cli/payload/synt/ext1/p10-ping-success.json +13 -16
  93. hcs_cli/payload/synt/ext1/p11-ping-fail.json +12 -15
  94. hcs_cli/payload/synt/ext1/p12-ping-success-repeat.json +14 -17
  95. hcs_cli/provider/hcs/cert.py +0 -1
  96. hcs_cli/provider/hcs/edge.py +1 -1
  97. hcs_cli/provider/hcs/uag.py +6 -1
  98. hcs_cli/service/hoc/diagnostic.py +0 -3
  99. hcs_cli/service/inventory/__init__.py +1 -1
  100. hcs_cli/service/inventory/session.py +23 -7
  101. hcs_cli/service/lcm/vm.py +0 -1
  102. hcs_cli/service/task.py +0 -1
  103. hcs_cli/support/debug_util.py +0 -1
  104. hcs_cli/support/plan_util.py +0 -1
  105. hcs_cli/support/predefined_payload.py +4 -1
  106. hcs_cli/support/template_util.py +0 -1
  107. hcs_cli/support/test_utils.py +2 -2
  108. hcs_cli/support/test_utils2.py +536 -0
  109. {hcs_cli-0.1.317.dist-info → hcs_cli-0.1.319.dist-info}/METADATA +24 -17
  110. {hcs_cli-0.1.317.dist-info → hcs_cli-0.1.319.dist-info}/RECORD +112 -108
  111. {hcs_cli-0.1.317.dist-info → hcs_cli-0.1.319.dist-info}/WHEEL +0 -0
  112. {hcs_cli-0.1.317.dist-info → hcs_cli-0.1.319.dist-info}/entry_points.txt +0 -0
@@ -1,38 +1,36 @@
1
1
  {
2
- "region": "westus2",
3
- "id": "zero-floating-1",
4
- "name": "zero-floating-1",
5
- "templateType" : "FLOATING",
6
- "provisionWithAgentReady": false,
7
- "vmNamePattern": "zvm",
8
- "provider": {
9
- "providerAccessId": "${providerId}"
10
- },
11
- "sparePolicy": {
12
- "increment": 200,
13
- "limit": 10,
14
- "max": 3,
15
- "min": 2
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
- "properties": {
33
- "new-task-engine": false,
34
- "sg-lcm-enforced-provision": true
35
- }
2
+ "region": "westus2",
3
+ "id": "zero-floating-1",
4
+ "name": "zero-floating-1",
5
+ "templateType": "FLOATING",
6
+ "provisionWithAgentReady": false,
7
+ "vmNamePattern": "zvm",
8
+ "provider": {
9
+ "providerAccessId": "${providerId}"
10
+ },
11
+ "sparePolicy": {
12
+ "increment": 200,
13
+ "limit": 10,
14
+ "max": 3,
15
+ "min": 2
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
+ "properties": {
33
+ "new-task-engine": false,
34
+ "sg-lcm-enforced-provision": true
35
+ }
36
36
  }
37
-
38
-
@@ -1,37 +1,35 @@
1
1
  {
2
- "region": "westus2",
3
- "id": "${id}",
4
- "name": "nanw-zero-manual",
5
- "templateType" : "FLOATING",
6
- "provisionWithAgentReady": false,
7
- "vmNamePattern": "zvm",
8
- "provider": {
9
- "providerAccessId": "${providerId}"
10
- },
11
- "sparePolicy": {
12
- "increment": 200,
13
- "limit": 3,
14
- "max": 2,
15
- "min": 1
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
- "properties": {
33
- "managementFlag#automation": false
34
- }
2
+ "region": "westus2",
3
+ "id": "${id}",
4
+ "name": "nanw-zero-manual",
5
+ "templateType": "FLOATING",
6
+ "provisionWithAgentReady": false,
7
+ "vmNamePattern": "zvm",
8
+ "provider": {
9
+ "providerAccessId": "${providerId}"
10
+ },
11
+ "sparePolicy": {
12
+ "increment": 200,
13
+ "limit": 3,
14
+ "max": 2,
15
+ "min": 1
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
+ "properties": {
33
+ "managementFlag#automation": false
35
34
  }
36
-
37
-
35
+ }
@@ -1,38 +1,36 @@
1
1
  {
2
- "region": "westus2",
3
- "id": "zero-multisession-1",
4
- "name": "zero-multisession-1",
5
- "templateType" : "FLOATING",
6
- "provisionWithAgentReady": false,
7
- "vmNamePattern": "zvm",
8
- "provider": {
9
- "providerAccessId": "${providerId}"
10
- },
11
- "sparePolicy": {
12
- "increment": 200,
13
- "limit": 10,
14
- "max": 3,
15
- "min": 2
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
- "properties": {
33
- "new-task-engine": false,
34
- "sg-lcm-enforced-provision": true
35
- }
2
+ "region": "westus2",
3
+ "id": "zero-multisession-1",
4
+ "name": "zero-multisession-1",
5
+ "templateType": "FLOATING",
6
+ "provisionWithAgentReady": false,
7
+ "vmNamePattern": "zvm",
8
+ "provider": {
9
+ "providerAccessId": "${providerId}"
10
+ },
11
+ "sparePolicy": {
12
+ "increment": 200,
13
+ "limit": 10,
14
+ "max": 3,
15
+ "min": 2
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
+ "properties": {
33
+ "new-task-engine": false,
34
+ "sg-lcm-enforced-provision": true
35
+ }
36
36
  }
37
-
38
-
@@ -1,34 +1,32 @@
1
1
  {
2
- "region": "westus2",
3
- "id": "${id}",
4
- "name": "nanw-test1",
5
- "templateType" : "FLOATING",
6
- "provisionWithAgentReady": false,
7
- "vmNamePattern": "zvm",
8
- "provider": {
9
- "providerAccessId": "${providerId}"
10
- },
11
- "sparePolicy": {
12
- "increment": 200,
13
- "limit": 3,
14
- "max": 2,
15
- "min": 1
16
- },
17
- "providerType": "ZEROCLOUD",
18
- "hdc": {
19
- "vmHubName": "westus2",
20
- "vmHubURL": "https://nanw.fs.devframe.cp.horizon.omnissa.com"
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
- }
33
-
34
-
2
+ "region": "westus2",
3
+ "id": "${id}",
4
+ "name": "nanw-test1",
5
+ "templateType": "FLOATING",
6
+ "provisionWithAgentReady": false,
7
+ "vmNamePattern": "zvm",
8
+ "provider": {
9
+ "providerAccessId": "${providerId}"
10
+ },
11
+ "sparePolicy": {
12
+ "increment": 200,
13
+ "limit": 3,
14
+ "max": 2,
15
+ "min": 1
16
+ },
17
+ "providerType": "ZEROCLOUD",
18
+ "hdc": {
19
+ "vmHubName": "westus2",
20
+ "vmHubURL": "https://nanw.fs.devframe.cp.horizon.omnissa.com"
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
+ }
@@ -1,82 +1,73 @@
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": 5000,
15
- "max": 5000,
16
- "min": 5000
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": 120000,
46
- "delayOnThreadMs": 0,
47
- "errAsync": 0,
48
- "errOnThread": 0,
49
- "sequence": []
50
- },
51
- "onDelete": {
52
- "delayAsyncMs": 60000
53
- },
54
- "onPowerOff": {
55
- "delayAsyncMs": 60000
56
- },
57
- "onPowerOn": {
58
- "delayAsyncMs": 60000
59
- },
60
- "onRestart": {
61
- },
62
- "onShutdown": {
63
- "delayAsyncMs": 60000
64
- },
65
- "onRefresh": {
66
- "delayAsyncMs": 60000
67
- },
68
- "onRevertSnapshot": {
69
- },
70
- "onTakeSnapshot": {
71
- }
72
- }
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": 5000,
15
+ "max": 5000,
16
+ "min": 5000
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": 120000,
42
+ "delayOnThreadMs": 0,
43
+ "errAsync": 0,
44
+ "errOnThread": 0,
45
+ "sequence": []
46
+ },
47
+ "onDelete": {
48
+ "delayAsyncMs": 60000
49
+ },
50
+ "onPowerOff": {
51
+ "delayAsyncMs": 60000
52
+ },
53
+ "onPowerOn": {
54
+ "delayAsyncMs": 60000
55
+ },
56
+ "onRestart": {},
57
+ "onShutdown": {
58
+ "delayAsyncMs": 60000
59
+ },
60
+ "onRefresh": {
61
+ "delayAsyncMs": 60000
62
+ },
63
+ "onRevertSnapshot": {},
64
+ "onTakeSnapshot": {}
73
65
  }
74
- },
75
- "properties": {
76
- "new-task-engine": true,
77
- "sg-lcm-enforced-provision": true,
78
- "autonomous": true
79
66
  }
67
+ },
68
+ "properties": {
69
+ "new-task-engine": true,
70
+ "sg-lcm-enforced-provision": true,
71
+ "autonomous": true
72
+ }
80
73
  }
81
-
82
-
@@ -1,40 +1,38 @@
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": 5000,
15
- "max": 5000,
16
- "min": 5000
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
- "properties": {
34
- "new-task-engine": true,
35
- "sg-lcm-enforced-provision": true,
36
- "autonomous": true
37
- }
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": 5000,
15
+ "max": 5000,
16
+ "min": 5000
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
+ "properties": {
34
+ "new-task-engine": true,
35
+ "sg-lcm-enforced-provision": true,
36
+ "autonomous": true
37
+ }
38
38
  }
39
-
40
-
@@ -1,41 +1,39 @@
1
1
  {
2
- "region": "westus2",
3
- "id": "${id}",
4
- "name": "nanw-test1",
5
- "templateType" : "FLOATING",
6
- "vmRefreshType": "REVERT_TO_SNAPSHOT",
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
- "properties": {
34
- "new-task-engine": true,
35
- "sg-lcm-enforced-provision": true,
36
- "autonomous": true,
37
- "floating-pool-no-snapshot-but-always-delete": false
38
- }
2
+ "region": "westus2",
3
+ "id": "${id}",
4
+ "name": "nanw-test1",
5
+ "templateType": "FLOATING",
6
+ "vmRefreshType": "REVERT_TO_SNAPSHOT",
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
+ "properties": {
34
+ "new-task-engine": true,
35
+ "sg-lcm-enforced-provision": true,
36
+ "autonomous": true,
37
+ "floating-pool-no-snapshot-but-always-delete": false
38
+ }
39
39
  }
40
-
41
-