Bump up base_message_registry to version Base.1.11.0

Tested by:
 Code compiles

Signed-off-by: Sunitha Harish <sunharis@in.ibm.com>
Change-Id: I229e5662eb20889e6da5575de31dc3c27c63ecd2
diff --git a/redfish-core/include/registries/base_message_registry.hpp b/redfish-core/include/registries/base_message_registry.hpp
index 87c515c..702cd6f 100644
--- a/redfish-core/include/registries/base_message_registry.hpp
+++ b/redfish-core/include/registries/base_message_registry.hpp
@@ -11,18 +11,18 @@
 const Header header = {
     "Copyright 2014-2021 DMTF. All rights reserved.",
     "#MessageRegistry.v1_4_0.MessageRegistry",
-    "Base.1.10.0",
+    "Base.1.11.0",
     "Base Message Registry",
     "en",
     "This registry defines the base messages for Redfish",
     "Base",
-    "1.10.0",
+    "1.11.0",
     "DMTF",
 };
 constexpr const char* url =
-    "https://redfish.dmtf.org/registries/Base.1.10.0.json";
+    "https://redfish.dmtf.org/registries/Base.1.11.0.json";
 
-constexpr std::array<MessageEntry, 87> registry = {
+constexpr std::array<MessageEntry, 93> registry = {
     MessageEntry{
         "AccessDenied",
         {
@@ -176,6 +176,21 @@
             "operation failed.",
         }},
     MessageEntry{
+        "ActionParameterValueError",
+        {
+            "Indicates that a parameter was given an invalid value.",
+            "The value for the parameter %1 in the action %2 is invalid.",
+            "Warning",
+            "Warning",
+            2,
+            {
+                "string",
+                "string",
+            },
+            "Correct the value for the parameter in the request body and "
+            "resubmit the request if the operation failed.",
+        }},
+    MessageEntry{
         "ActionParameterValueFormatError",
         {
             "Indicates that a parameter was given the correct value type but "
@@ -490,6 +505,33 @@
             "Resolve other reported errors and retry the current operation.",
         }},
     MessageEntry{
+        "NetworkNameResolutionNotConfigured",
+        {
+            "Indicates that network-based name resolution has not been "
+            "configured on the service.",
+            "Network name resolution has not been configured on this service.",
+            "Warning",
+            "Warning",
+            0,
+            {},
+            "Configure the network name resolution protocol support on this "
+            "service, or update any URI values to include an IP address "
+            "instead of a network name and resubmit the request.",
+        }},
+    MessageEntry{"NetworkNameResolutionNotSupported",
+                 {
+                     "Indicates the service does not support network-based "
+                     "name resolution.",
+                     "Resolution of network-based names is not supported by "
+                     "this service.",
+                     "Warning",
+                     "Warning",
+                     0,
+                     {},
+                     "Update any URI values to include an IP address instead "
+                     "of a network name and resubmit the request.",
+                 }},
+    MessageEntry{
         "NoOperation",
         {
             "Indicates that the requested operation will not perform any "
@@ -694,6 +736,19 @@
                      },
                      "Refer to the schema guide for more information.",
                  }},
+    MessageEntry{"PropertyValueError",
+                 {
+                     "Indicates that a property was given an invalid value.",
+                     "The value provided for the property %1 is not valid.",
+                     "Warning",
+                     "Warning",
+                     1,
+                     {
+                         "string",
+                     },
+                     "Correct the value for the property in the request body "
+                     "and resubmit the request if the operation failed.",
+                 }},
     MessageEntry{
         "PropertyValueExternalConflict",
         {
@@ -891,6 +946,20 @@
             "is within the range of valid pages.",
         }},
     MessageEntry{
+        "QueryParameterValueError",
+        {
+            "Indicates that a query parameter was given an invalid value.",
+            "The value for the parameter %1 is invalid.",
+            "Warning",
+            "Warning",
+            1,
+            {
+                "string",
+            },
+            "Correct the value for the query parameter in the request and "
+            "resubmit the request if the operation failed.",
+        }},
+    MessageEntry{
         "QueryParameterValueFormatError",
         {
             "Indicates that a query parameter was given the correct value type "
@@ -1158,6 +1227,22 @@
                      "in the Role resource.",
                  }},
     MessageEntry{
+        "ServiceDisabled",
+        {
+            "Indicates that the operation failed because the service, such as "
+            "the account service, is disabled and cannot accept requests.",
+            "The operation failed because the service at %1 is disabled and "
+            "cannot accept requests.",
+            "Warning",
+            "Warning",
+            1,
+            {
+                "string",
+            },
+            "Enable the service and resubmit the request if the operation "
+            "failed.",
+        }},
+    MessageEntry{
         "ServiceInUnknownState",
         {
             "Indicates that the operation failed because the service is in an "
@@ -1307,7 +1392,9 @@
             "Critical",
             "Critical",
             1,
-            {},
+            {
+                "string",
+            },
             "None.",
         }},
     MessageEntry{
diff --git a/scripts/parse_registries.py b/scripts/parse_registries.py
index 0a7464b..7694e52 100755
--- a/scripts/parse_registries.py
+++ b/scripts/parse_registries.py
@@ -54,7 +54,7 @@
 
 
 files = []
-files.append(make_getter('Base.1.10.0.json',
+files.append(make_getter('Base.1.11.0.json',
                          'base_message_registry.hpp',
                          'base'))
 files.append(make_getter('TaskEvent.1.0.3.json',