From ce371ef2c0d1b53213eadca45f728375fd586d6c Mon Sep 17 00:00:00 2001 From: Alexander Chadin Date: Thu, 1 Sep 2016 14:42:30 +0300 Subject: [PATCH] Change host aggregates id type to integer This PS sets host aggregate id to integer type instead of string Change-Id: I22724c7c4df0b23952eae639d9ac576f6fc7e203 --- specs/newton/approved/define-the-audit-scope.rst | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/specs/newton/approved/define-the-audit-scope.rst b/specs/newton/approved/define-the-audit-scope.rst index 44d429b..8414613 100644 --- a/specs/newton/approved/define-the-audit-scope.rst +++ b/specs/newton/approved/define-the-audit-scope.rst @@ -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 ----------------