Change host aggregates id type to integer

This PS sets host aggregate id to integer type instead of string

Change-Id: I22724c7c4df0b23952eae639d9ac576f6fc7e203
This commit is contained in:
Alexander Chadin 2016-09-01 14:42:30 +03:00
parent eee5bab139
commit ce371ef2c0

View File

@ -70,9 +70,9 @@ an array of resource uuid(s):
"scope": [
{"host_aggregates": [
{"id": "1"},
{"id": "2"},
{"id": "3"}
{"id": 1},
{"id": 2},
{"id": 3}
]},
{"availability_zones": [
{"name": "AZ1"},
@ -174,11 +174,11 @@ Zones and some objects to exclude:
"goal": "MINIMIZE_ENERGY",
"scope": [{
"host_aggregates": [{
"id": "1"
"id": 1
}, {
"id": "2"
"id": 2
}, {
"id": "3"
"id": 3
}]
}, {
"availability_zones": [{
@ -244,6 +244,9 @@ Other deployer impact
The operator may have to configure the frequency of the periodic task that
regularly checks the validity of all the audit scopes.
The operator may specify not only Host Aggregates IDs,
but Host Aggregate names too (will be provided in future).
Developer impact
----------------