From 7b2f3719d4d9cfc27fd608e3f3c21a54ebb16d11 Mon Sep 17 00:00:00 2001 From: crountre Date: Thu, 25 Oct 2018 15:12:22 -0500 Subject: [PATCH 1/6] Add log message to show the actual weblogic version --- core/src/main/python/wlsdeploy/tool/create/domain_typedef.py | 2 ++ .../oracle/weblogic/deploy/messages/wlsdeploy_rb.properties | 1 + 2 files changed, 3 insertions(+) diff --git a/core/src/main/python/wlsdeploy/tool/create/domain_typedef.py b/core/src/main/python/wlsdeploy/tool/create/domain_typedef.py index 3d1483f205..0c4fed7685 100644 --- a/core/src/main/python/wlsdeploy/tool/create/domain_typedef.py +++ b/core/src/main/python/wlsdeploy/tool/create/domain_typedef.py @@ -197,6 +197,8 @@ def __match_version_typedef(self, versions_dict): wls_helper = WebLogicHelper(self._logger) wls_version = wls_helper.get_actual_weblogic_version() + self._logger.fine('', wls_version, self._model_context.get_domain_home(), + class_name=self.__class_name, method_name=_method_name) result = None if wls_version in versions_dict: diff --git a/core/src/main/resources/oracle/weblogic/deploy/messages/wlsdeploy_rb.properties b/core/src/main/resources/oracle/weblogic/deploy/messages/wlsdeploy_rb.properties index 5ed6a636e7..adf5236411 100644 --- a/core/src/main/resources/oracle/weblogic/deploy/messages/wlsdeploy_rb.properties +++ b/core/src/main/resources/oracle/weblogic/deploy/messages/wlsdeploy_rb.properties @@ -972,6 +972,7 @@ WLSDPLY-12307=Domain type {0} type definition in file {1} contains an empty vers WLSDPLY-12308=Domain type {0} type definition in file {1} contained version {2} which most closely \ matches WebLogic version {3} WLSDPLY-12309=Domain type {0} type definition in file {1} did not contain a version that matched WebLogic version {2} +WLSDPLY-12310=Version {0} returned from the domain home {1} # create.py WLSDPLY-12400={0} got the JAVA_HOME {1} from the environment variable but it was not a valid location: {2} From 827b7904770114dbe59c40e3aa3bd7b72f87c280 Mon Sep 17 00:00:00 2001 From: crountre Date: Thu, 25 Oct 2018 16:02:31 -0500 Subject: [PATCH 2/6] Prevent exception when attempting to find the base version in create --- core/src/main/python/wlsdeploy/util/weblogic_helper.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/src/main/python/wlsdeploy/util/weblogic_helper.py b/core/src/main/python/wlsdeploy/util/weblogic_helper.py index fc4caf4283..89023964bb 100644 --- a/core/src/main/python/wlsdeploy/util/weblogic_helper.py +++ b/core/src/main/python/wlsdeploy/util/weblogic_helper.py @@ -241,7 +241,9 @@ def get_next_higher_order_version_number(self, version_number): periods = version_number.count('.') result = None if periods > 0: - result = string_utils.rsplit(version_number, '.', 1)[0] + rsplit = string_utils.rsplit(version_number, '.', 1) + if len(rsplit) > 0: + result = rsplit[0] return result def encrypt(self, plain_text, domain_directory): From 15015a8893608e4d969a5114a2c4b48991734357 Mon Sep 17 00:00:00 2001 From: crountre Date: Thu, 25 Oct 2018 16:14:08 -0500 Subject: [PATCH 3/6] Prevent exception when attempting to find the base version in create --- core/src/main/python/wlsdeploy/tool/create/domain_typedef.py | 3 +-- .../oracle/weblogic/deploy/messages/wlsdeploy_rb.properties | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/core/src/main/python/wlsdeploy/tool/create/domain_typedef.py b/core/src/main/python/wlsdeploy/tool/create/domain_typedef.py index 0c4fed7685..67f445a5dd 100644 --- a/core/src/main/python/wlsdeploy/tool/create/domain_typedef.py +++ b/core/src/main/python/wlsdeploy/tool/create/domain_typedef.py @@ -197,8 +197,7 @@ def __match_version_typedef(self, versions_dict): wls_helper = WebLogicHelper(self._logger) wls_version = wls_helper.get_actual_weblogic_version() - self._logger.fine('', wls_version, self._model_context.get_domain_home(), - class_name=self.__class_name, method_name=_method_name) + self._logger.fine('WLSDPLY-12310', wls_version, class_name=self.__class_name, method_name=_method_name) result = None if wls_version in versions_dict: diff --git a/core/src/main/resources/oracle/weblogic/deploy/messages/wlsdeploy_rb.properties b/core/src/main/resources/oracle/weblogic/deploy/messages/wlsdeploy_rb.properties index adf5236411..ea41adbf73 100644 --- a/core/src/main/resources/oracle/weblogic/deploy/messages/wlsdeploy_rb.properties +++ b/core/src/main/resources/oracle/weblogic/deploy/messages/wlsdeploy_rb.properties @@ -972,7 +972,7 @@ WLSDPLY-12307=Domain type {0} type definition in file {1} contains an empty vers WLSDPLY-12308=Domain type {0} type definition in file {1} contained version {2} which most closely \ matches WebLogic version {3} WLSDPLY-12309=Domain type {0} type definition in file {1} did not contain a version that matched WebLogic version {2} -WLSDPLY-12310=Version {0} returned from the domain home {1} +WLSDPLY-12310=Version {0} returned from the domain home # create.py WLSDPLY-12400={0} got the JAVA_HOME {1} from the environment variable but it was not a valid location: {2} From ba193de496e627c38d823425e41095197096fdd3 Mon Sep 17 00:00:00 2001 From: crountre Date: Thu, 25 Oct 2018 17:53:25 -0500 Subject: [PATCH 4/6] Temporary versioning for 19c - remove when version returns expected --- core/src/main/typedefs/JRF.json | 13 ++++++++++++- core/src/main/typedefs/RestrictedJRF.json | 9 ++++++++- core/src/main/typedefs/WLS.json | 9 ++++++++- 3 files changed, 28 insertions(+), 3 deletions(-) diff --git a/core/src/main/typedefs/JRF.json b/core/src/main/typedefs/JRF.json index 5a1e76dc8e..acb275f66d 100644 --- a/core/src/main/typedefs/JRF.json +++ b/core/src/main/typedefs/JRF.json @@ -7,7 +7,8 @@ "12.1.2": "JRF_1212", "12.1.3": "JRF_1213", "12.2.1": "JRF_12CR2", - "12.2.1.3": "JRF_12213" + "12.2.1.3": "JRF_12213", + "19.1": "JRF_19CR1" }, "definitions": { "JRF_1212" : { @@ -51,6 +52,16 @@ ], "serverGroupsToTarget": [ "JRF-MAN-SVR", "WSMPM-MAN-SVR" ], "rcuSchemas": [ "WLS", "MDS", "IAU", "IAU_VIEWER", "IAU_APPEND", "OPSS" ] + }, + "JRF_19CR1": { + "baseTemplate": "Basic WebLogic Server Domain", + "extensionTemplates": [ + "Oracle JRF WebServices Asynchronous services", + "Oracle WSM Policy Manager", + "Oracle Enterprise Manager" + ], + "serverGroupsToTarget": [ "JRF-MAN-SVR", "WSMPM-MAN-SVR" ], + "rcuSchemas": [ "WLS", "MDS", "IAU", "IAU_VIEWER", "IAU_APPEND", "OPSS" ] } } } diff --git a/core/src/main/typedefs/RestrictedJRF.json b/core/src/main/typedefs/RestrictedJRF.json index 92227d04f4..f09e5414b3 100644 --- a/core/src/main/typedefs/RestrictedJRF.json +++ b/core/src/main/typedefs/RestrictedJRF.json @@ -4,7 +4,8 @@ "name": "RestrictedJRF", "description": "Restricted JRF type domain definitions", "versions": { - "12.2.1": "RJRF_12CR2" + "12.2.1": "RJRF_12CR2", + "19.1": "RJRF_19CR1" }, "definitions": { "RJRF_12CR2": { @@ -12,6 +13,12 @@ "extensionTemplates": [ "Oracle Enterprise Manager-Restricted JRF" ], "serverGroupsToTarget": [ "JRF-MAN-SVR" ], "rcuSchemas": [ "MDS", "IAU", "IAU_VIEWER", "IAU_APPEND", "OPSS"] + }, + "RJRF_19CR1": { + "baseTemplate": "Basic WebLogic Server Domain", + "extensionTemplates": [ "Oracle Enterprise Manager-Restricted JRF" ], + "serverGroupsToTarget": [ "JRF-MAN-SVR" ], + "rcuSchemas": [ "MDS", "IAU", "IAU_VIEWER", "IAU_APPEND", "OPSS"] } } } diff --git a/core/src/main/typedefs/WLS.json b/core/src/main/typedefs/WLS.json index 0945574c52..51920ab66c 100644 --- a/core/src/main/typedefs/WLS.json +++ b/core/src/main/typedefs/WLS.json @@ -8,7 +8,8 @@ "12.1.1": "WLS_11G", "12.1.2": "WLS_12CR1", "12.1.3": "WLS_12CR1", - "12.2.1": "WLS_12CR2" + "12.2.1": "WLS_12CR2", + "19.1": "WLS_19CR1" }, "definitions": { "WLS_11G": { @@ -28,6 +29,12 @@ "extensionTemplates": [ ], "serverGroupsToTarget": [ ], "rcuSchemas": [ ] + }, + "WLS_19CR1": { + "baseTemplate": "Basic WebLogic Server Domain", + "extensionTemplates": [ ], + "serverGroupsToTarget": [ ], + "rcuSchemas": [ ] } } } From 4b279390f8e8b8249a759ace55a1e6fdaaa429b2 Mon Sep 17 00:00:00 2001 From: crountre Date: Tue, 30 Oct 2018 09:23:23 -0500 Subject: [PATCH 5/6] Changes to attributes and mbeans for 19c --- .../category_modules/AppDeployment.json | 96 +++++++++--------- .../aliases/category_modules/Cluster.json | 74 +++++++------- .../CoherenceClusterSystemResource.json | 3 +- .../category_modules/JMSSystemResource.json | 33 ++++--- .../deploy/aliases/category_modules/JTA.json | 8 +- .../aliases/category_modules/Library.json | 99 ++++++++++--------- .../aliases/category_modules/Partition.json | 14 +-- .../aliases/category_modules/Server.json | 11 ++- .../category_modules/ServerTemplate.json | 11 ++- 9 files changed, 188 insertions(+), 161 deletions(-) diff --git a/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/AppDeployment.json b/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/AppDeployment.json index 1f94e96a9f..556efb4eb5 100644 --- a/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/AppDeployment.json +++ b/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/AppDeployment.json @@ -5,53 +5,55 @@ "child_folders_type": "multiple", "folders": {}, "attributes": { - "AbsoluteAltDescriptorDir": [ {"version": "[12.2.1,)", "wlst_mode": "online", "wlst_name": "AbsoluteAltDescriptorDir", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "access": "RO", "uses_path_tokens": "true" } ], - "AbsoluteAltDescriptorPath": [ {"version": "[12.2.1,)", "wlst_mode": "online", "wlst_name": "AbsoluteAltDescriptorPath", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "access": "RO", "uses_path_tokens": "true" } ], - "AbsoluteInstallDir": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "AbsoluteInstallDir", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "access": "RO", "uses_path_tokens": "true" } ], - "AbsolutePlanDir": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "AbsolutePlanDir", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "access": "RO", "uses_path_tokens": "true" } ], - "AbsolutePlanPath": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "AbsolutePlanPath", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "access": "RO", "uses_path_tokens": "true" } ], - "AbsoluteSourcePath": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "AbsoluteSourcePath", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "access": "RO", "uses_path_tokens": "true" } ], - "AltDescriptorDir": [ {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "AltDescriptorDir", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "access": "RO", "uses_path_tokens": "true" } ], - "AltDescriptorPath": [ {"version": "[10,)", "wlst_mode": "offline", "wlst_name": "AltDescriptorPath", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "uses_path_tokens": "true" } ], - "AltWLSDescriptorPath": [ {"version": "[10,10.3.6)", "wlst_mode": "offline", "wlst_name": "AltWlsDescriptorPath", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "uses_path_tokens": "true" }, - {"version": "[10.3.6,)", "wlst_mode": "offline", "wlst_name": "AltWLSDescriptorPath", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "uses_path_tokens": "true" } ], - "ApplicationIdentifier": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "ApplicationIdentifier", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "access": "RO" } ], - "ApplicationName": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "ApplicationName", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "access": "RO" } ], - "AutoDeployedApp": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "AutoDeployedApp", "wlst_path": "WP001", "value": {"default": "false"}, "wlst_type": "boolean", "get_method": "GET", "access": "RO" } ], - "BackgroundDeployment": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "BackgroundDeployment", "wlst_path": "WP001", "value": {"default": "false"}, "wlst_type": "boolean", "get_method": "GET", "access": "RO" } ], - "CacheInAppDirectory": [ {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "CacheInAppDirectory", "wlst_path": "WP001", "value": {"default": "false"}, "wlst_type": "boolean" } ], - "CompatibilityName": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "CompatibilityName", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" } ], - "DeploymentOrder": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "DeploymentOrder", "wlst_path": "WP001", "value": {"default": 100 }, "wlst_type": "integer" } ], - "DeploymentPlan": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "DeploymentPlan", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "access": "RO" } ], - "DeploymentPlanExternalDescriptors": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "DeploymentPlanExternalDescriptors", "wlst_path": "WP001", "value": {"default": "None"},"wlst_type": "string", "access": "RO" } ], - "DeploymentPrincipalName": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "DeploymentPrincipalName", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" } ], - "InstallDir": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "InstallDir", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "access": "${:RO}", "uses_path_tokens": "true" } ], - "InternalApp": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "InternalApp", "wlst_path": "WP001", "value": {"default": "false"}, "wlst_type": "boolean", "get_method": "GET", "access": "RO" } ], - "LocalAltDescriptorPath": [ {"version": "[12.2.1,)", "wlst_mode": "online", "wlst_name": "LocalAltDescriptorPath", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "get_method": "GET", "uses_path_tokens": "true", "access": "RO" } ], - "LocalInstallDir": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "LocalInstallDir", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "get_method": "GET", "uses_path_tokens": "true", "access": "RO" } ], - "LocalPlanDir": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "LocalPlanDir", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "get_method": "GET", "uses_path_tokens": "true", "access": "RO" } ], - "LocalPlanPath": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "LocalPlanPath", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "get_method": "GET", "uses_path_tokens": "true", "access": "RO" } ], - "LocalSourcePath": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "LocalSourcePath", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "get_method": "GET", "uses_path_tokens": "true", "access": "RO" } ], - "ModuleType": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "ModuleType", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" } ], - "Notes": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "Notes", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" } ], - "OnDemandContextPaths": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "OnDemandContextPaths", "wlst_path": "WP001", "value": {"default": "[]" }, "wlst_type": "jarray", "get_method": "GET", "access": "RO" } ], - "OnDemandDisplayRefresh": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "OnDemandDisplayRefresh", "wlst_path": "WP001", "value": {"default": "false"}, "wlst_type": "boolean", "get_method": "GET", "access": "RO" } ], - "ParallelDeployModules": [ {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "ParallelDeployModules", "wlst_path": "WP001", "value": {"default": "false"}, "wlst_type": "boolean" } ], - "PartitionName": [ {"version": "[12.2.1,)", "wlst_mode": "online", "wlst_name": "PartitionName", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" , "get_method": "GET", "access": "RO" } ], - "PlanDir": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "PlanDir", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "access": "${:RO}", "uses_path_tokens": "true" } ], - "PlanPath": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "PlanPath", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "access": "${:RO}", "uses_path_tokens": "true" } ], - "PlanStagingMode": [ {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "PlanStagingMode", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "access": "${:RO}"} ], - "RootStagingDir": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "RootStagingDir", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "get_method": "GET", "uses_path_tokens": "true", "access": "RO" } ], - "SecurityDDModel": [ {"version": "[10,12.1.2)", "wlst_mode": "both", "wlst_name": "Security${Dd:DD}Model", "wlst_path": "WP001", "value": {"default": "DDOnly"}, "wlst_type": "string", "access": "${:RO}" }, - {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "SecurityDDModel", "wlst_path": "WP001", "value": {"default": "DDOnly"}, "wlst_type": "string", "access": "${:RO}" }], - "SourcePath": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "SourcePath", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "access": "${:RO}", "uses_path_tokens": "true" } ], - "StagingMode": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "StagingMode", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "access": "${:RO}" }], - "Target": [ {"version": "[10,)", "wlst_mode": "offline", "wlst_name": "Target", "wlst_path": "WP001", "value": {"default": "None"}, "wlst_type": "delimited_string" }, - {"version": "[10,)", "wlst_mode": "online", "wlst_name": "Targets", "wlst_path": "WP002", "value": {"default": "None"}, "wlst_type": "jarray", "get_method": "GET", "preferred_model_type": "delimited_string", "set_method": "MBEAN.set_target_mbeans", "set_mbean_type": "weblogic.management.configuration.TargetMBean"} ], - "Untargeted": [ {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "Untargeted", "wlst_path": "WP001", "value": {"default": "false" }, "wlst_type": "boolean" }], - "ValidateDDSecurityData": [ {"version": "[10,12.1.2)", "wlst_mode": "both", "wlst_name": "Validate${Dd:DD}SecurityData", "wlst_path": "WP001", "value": {"default": "false"}, "wlst_type": "boolean", "get_method": "${LSA:GET}"}, - {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "ValidateDDSecurityData", "wlst_path": "WP001", "value": {"default": "false"}, "wlst_type": "boolean" } ], - "VersionIdentifier": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "VersionIdentifier", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "access": "RO" } ] + "AbsoluteAltDescriptorDir": [ {"version": "[12.2.1,)", "wlst_mode": "online", "wlst_name": "AbsoluteAltDescriptorDir", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "access": "RO", "uses_path_tokens": "true" } ], + "AbsoluteAltDescriptorPath": [ {"version": "[12.2.1,)", "wlst_mode": "online", "wlst_name": "AbsoluteAltDescriptorPath", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "access": "RO", "uses_path_tokens": "true" } ], + "AbsoluteInstallDir": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "AbsoluteInstallDir", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "access": "RO", "uses_path_tokens": "true" } ], + "AbsolutePlanDir": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "AbsolutePlanDir", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "access": "RO", "uses_path_tokens": "true" } ], + "AbsolutePlanPath": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "AbsolutePlanPath", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "access": "RO", "uses_path_tokens": "true" } ], + "AbsoluteSourcePath": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "AbsoluteSourcePath", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "access": "RO", "uses_path_tokens": "true" } ], + "AltDescriptorDir": [ {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "AltDescriptorDir", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "access": "RO", "uses_path_tokens": "true" } ], + "AltDescriptorPath": [ {"version": "[10,)", "wlst_mode": "offline", "wlst_name": "AltDescriptorPath", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "uses_path_tokens": "true" } ], + "AltWLSDescriptorPath": [ {"version": "[10,10.3.6)", "wlst_mode": "offline", "wlst_name": "AltWlsDescriptorPath", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "uses_path_tokens": "true" }, + {"version": "[10.3.6,)", "wlst_mode": "offline", "wlst_name": "AltWLSDescriptorPath", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "uses_path_tokens": "true" } ], + "ApplicationIdentifier": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "ApplicationIdentifier", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "access": "RO" } ], + "ApplicationName": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "ApplicationName", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "access": "RO" } ], + "AutoDeployedApp": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "AutoDeployedApp", "wlst_path": "WP001", "value": {"default": "false"}, "wlst_type": "boolean", "get_method": "GET", "access": "RO" } ], + "BackgroundDeployment": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "BackgroundDeployment", "wlst_path": "WP001", "value": {"default": "false"}, "wlst_type": "boolean", "get_method": "GET", "access": "RO" } ], + "CacheInAppDirectory": [ {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "CacheInAppDirectory", "wlst_path": "WP001", "value": {"default": "false"}, "wlst_type": "boolean" } ], + "CompatibilityName": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "CompatibilityName", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" } ], + "ConfiguredApplicationIdentifier": [ {"version": "[12.2.1.4,)", "wlst_mode": "online", "wlst_name": "ConfiguredApplicationIdentifier", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "get_method": "GET" } ], + "DeploymentOrder": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "DeploymentOrder", "wlst_path": "WP001", "value": {"default": 100 }, "wlst_type": "integer" } ], + "DeploymentPlan": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "DeploymentPlan", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "access": "RO" } ], + "DeploymentPlanExternalDescriptors": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "DeploymentPlanExternalDescriptors", "wlst_path": "WP001", "value": {"default": "None"}, "wlst_type": "string", "access": "RO" } ], + "DeploymentPrincipalName": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "DeploymentPrincipalName", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" } ], + "InstallDir": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "InstallDir", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "access": "${:RO}", "uses_path_tokens": "true" } ], + "InternalApp": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "InternalApp", "wlst_path": "WP001", "value": {"default": "false"}, "wlst_type": "boolean", "get_method": "GET", "access": "RO" } ], + "LocalAltDescriptorPath": [ {"version": "[12.2.1,)", "wlst_mode": "online", "wlst_name": "LocalAltDescriptorPath", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "get_method": "GET", "uses_path_tokens": "true", "access": "RO" } ], + "LocalInstallDir": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "LocalInstallDir", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "get_method": "GET", "uses_path_tokens": "true", "access": "RO" } ], + "LocalPlanDir": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "LocalPlanDir", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "get_method": "GET", "uses_path_tokens": "true", "access": "RO" } ], + "LocalPlanPath": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "LocalPlanPath", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "get_method": "GET", "uses_path_tokens": "true", "access": "RO" } ], + "LocalSourcePath": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "LocalSourcePath", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "get_method": "GET", "uses_path_tokens": "true", "access": "RO" } ], + "ModuleType": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "ModuleType", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" } ], + "MultiVersionApp": [ {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "MultiVersionApp", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "get_method": "GET" } ], + "Notes": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "Notes", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" } ], + "OnDemandContextPaths": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "OnDemandContextPaths", "wlst_path": "WP001", "value": {"default": "[]" }, "wlst_type": "jarray", "get_method": "GET", "access": "RO" } ], + "OnDemandDisplayRefresh": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "OnDemandDisplayRefresh", "wlst_path": "WP001", "value": {"default": "false"}, "wlst_type": "boolean", "get_method": "GET", "access": "RO" } ], + "ParallelDeployModules": [ {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "ParallelDeployModules", "wlst_path": "WP001", "value": {"default": "false"}, "wlst_type": "boolean" } ], + "PartitionName": [ {"version": "[12.2.1,)", "wlst_mode": "online", "wlst_name": "PartitionName", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" , "get_method": "GET", "access": "RO" } ], + "PlanDir": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "PlanDir", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "access": "${:RO}", "uses_path_tokens": "true" } ], + "PlanPath": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "PlanPath", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "access": "${:RO}", "uses_path_tokens": "true" } ], + "PlanStagingMode": [ {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "PlanStagingMode", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "access": "${:RO}"} ], + "RootStagingDir": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "RootStagingDir", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "get_method": "GET", "uses_path_tokens": "true", "access": "RO" } ], + "SecurityDDModel": [ {"version": "[10,12.1.2)", "wlst_mode": "both", "wlst_name": "Security${Dd:DD}Model", "wlst_path": "WP001", "value": {"default": "DDOnly"}, "wlst_type": "string", "access": "${:RO}" }, + {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "SecurityDDModel", "wlst_path": "WP001", "value": {"default": "DDOnly"}, "wlst_type": "string", "access": "${:RO}" }], + "SourcePath": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "SourcePath", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "access": "${:RO}", "uses_path_tokens": "true" } ], + "StagingMode": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "StagingMode", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "access": "${:RO}" }], + "Target": [ {"version": "[10,)", "wlst_mode": "offline", "wlst_name": "Target", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "delimited_string" }, + {"version": "[10,)", "wlst_mode": "online", "wlst_name": "Targets", "wlst_path": "WP002", "value": {"default": "None" }, "wlst_type": "jarray", "get_method": "GET", "preferred_model_type": "delimited_string", "set_method": "MBEAN.set_target_mbeans", "set_mbean_type": "weblogic.management.configuration.TargetMBean"} ], + "Untargeted": [ {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "Untargeted", "wlst_path": "WP001", "value": {"default": "false"}, "wlst_type": "boolean" }], + "ValidateDDSecurityData": [ {"version": "[10,12.1.2)", "wlst_mode": "both", "wlst_name": "Validate${Dd:DD}SecurityData", "wlst_path": "WP001", "value": {"default": "false"}, "wlst_type": "boolean", "get_method": "${LSA:GET}"}, + {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "ValidateDDSecurityData", "wlst_path": "WP001", "value": {"default": "false"}, "wlst_type": "boolean" } ], + "VersionIdentifier": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "VersionIdentifier", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "access": "RO" } ] }, "wlst_attributes_path": "WP001", "wlst_paths": { diff --git a/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/Cluster.json b/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/Cluster.json index 1453b998bf..d81403a71e 100644 --- a/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/Cluster.json +++ b/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/Cluster.json @@ -75,42 +75,44 @@ "child_folders_type": "single", "folders" : {}, "attributes" : { - "AbandonTimeoutSeconds": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "AbandonTimeoutSeconds", "wlst_path": "WP001", "value": {"default": 86400 }, "wlst_type": "integer" } ], - "BeforeCompletionIterationLimit": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "BeforeCompletionIterationLimit", "wlst_path": "WP001", "value": {"default": 10 }, "wlst_type": "integer" } ], - "CheckpointIntervalSeconds": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "CheckpointIntervalSeconds", "wlst_path": "WP001", "value": {"default": 300 }, "wlst_type": "integer" } ], - "ClusterwideRecoveryEnabled": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "ClusterwideRecoveryEnabled", "wlst_path": "WP001", "value": {"default": "false" }, "wlst_type": "boolean" } ], - "CompletionTimeoutSeconds": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "CompletionTimeoutSeconds", "wlst_path": "WP001", "value": {"default": 0 }, "wlst_type": "integer" } ], - "CrossDomainRecoveryRetryInterval": [ {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "CrossDomainRecoveryRetryInterval", "wlst_path": "WP001", "value": {"default": 60 }, "wlst_type": "integer" } ], - "CrossSiteRecoveryLeaseExpiration": [ {"version": "[12.2.1.1,)", "wlst_mode": "both", "wlst_name": "CrossSiteRecoveryLeaseExpiration", "wlst_path": "WP001", "value": {"default": 30 }, "wlst_type": "integer" } ], - "CrossSiteRecoveryLeaseUpdate": [ {"version": "[12.2.1.1,)", "wlst_mode": "both", "wlst_name": "CrossSiteRecoveryLeaseUpdate", "wlst_path": "WP001", "value": {"default": 10 }, "wlst_type": "integer" } ], - "CrossSiteRecoveryRetryInterval": [ {"version": "[12.2.1.1,)", "wlst_mode": "both", "wlst_name": "CrossSiteRecoveryRetryInterval", "wlst_path": "WP001", "value": {"default": 60 }, "wlst_type": "integer" } ], - "Determiner": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "Determiner${:s}", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" } ], - "DeterminerCandidateResourceInfoList": [ {"version": "[12.2.1,)", "wlst_mode": "online", "wlst_name": "DeterminerCandidateResourceInfoList", "wlst_path": "WP001", "value": {"default": "" }, "wlst_type": "jarray", "access": "RO" } ], - "ForgetHeuristics": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "ForgetHeuristics", "wlst_path": "WP001", "value": {"default": "true" }, "wlst_type": "boolean" } ], - "MaxResourceRequestsOnServer": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "MaxResourceRequestsOnServer", "wlst_path": "WP001", "value": {"default": 50 }, "wlst_type": "integer" } ], - "MaxResourceUnavailableMillis": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "MaxResourceUnavailableMillis", "wlst_path": "WP001", "value": {"default": 1800000 }, "wlst_type": "long" } ], - "MaxRetrySecondsBeforeDeterminerFail": [ {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "MaxRetrySecondsBeforeDeterminerFail", "wlst_path": "WP001", "value": {"default": 300 }, "wlst_type": "integer" } ], - "MaxTransactions": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "MaxTransactions", "wlst_path": "WP001", "value": {"default": 10000 }, "wlst_type": "integer" } ], - "MaxTransactionsHealthIntervalMillis": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "MaxTransactionsHealthIntervalMillis", "wlst_path": "WP001", "value": {"default": 60000 }, "wlst_type": "long" } ], - "MaxUniqueNameStatistics": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "MaxUniqueNameStatistics", "wlst_path": "WP001", "value": {"default": 1000 }, "wlst_type": "integer" } ], - "MaxXACallMillis": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "MaxXACallMillis", "wlst_path": "WP001", "value": {"default": 120000 }, "wlst_type": "long" } ], - "MigrationCheckpointIntervalSeconds": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "MigrationCheckpointIntervalSeconds", "wlst_path": "WP001", "value": {"default": 60 }, "wlst_type": "integer" } ], - "Notes": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "Notes", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" } ], - "ParallelXADispatchPolicy": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "ParallelXADispatchPolicy", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" } ], - "ParallelXAEnabled": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "ParallelXAEnabled", "wlst_path": "WP001", "value": {"default": "true" }, "wlst_type": "boolean" } ], - "PurgeResourceFromCheckpointIntervalSeconds": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "PurgeResourceFromCheckpointIntervalSeconds", "wlst_path": "WP001", "value": {"default": 86400 }, "wlst_type": "integer" } ], - "RecoverySiteName": [ {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "RecoverySiteName", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" } ], - "RecoveryThresholdMillis": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "RecoveryThresholdMillis", "wlst_path": "WP001", "value": {"default": 300000 }, "wlst_type": "long" } ], - "SecurityInteropMode": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "SecurityInteropMode", "wlst_path": "WP001", "value": {"default": "${None:default}"}, "wlst_type": "string" } ], - "SerializeEnlistmentsGCIntervalMillis": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "SerializeEnlistmentsGCIntervalMillis", "wlst_path": "WP001", "value": {"default": 30000 }, "wlst_type": "long" } ], - "ShutdownGracePeriod": [ {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "ShutdownGracePeriod", "wlst_path": "WP001", "value": {"default": 180 }, "wlst_type": "integer" } ], - "TightlyCoupledTransactionsEnabled": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "TightlyCoupledTransactionsEnabled", "wlst_path": "WP001", "value": {"default": "false" }, "wlst_type": "boolean" } ], - "TimeoutSeconds": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "TimeoutSeconds", "wlst_path": "WP001", "value": {"default": 30 }, "wlst_type": "integer" } ], - "TlogWriteWhenDeterminerExistsEnabled": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "T${log:LOG}WriteWhenDeterminerExistsEnabled", "wlst_path": "WP001", "value": {"default": "false"}, "wlst_type": "boolean" } ], - "TwoPhaseEnabled": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "TwoPhaseEnabled", "wlst_path": "WP001", "value": {"default": "true" }, "wlst_type": "boolean" } ], - "UnregisterResourceGracePeriod": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "UnregisterResourceGracePeriod", "wlst_path": "WP001", "value": {"default": 30 }, "wlst_type": "integer" } ], - "WsatIssuedTokenEnabled": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "W${sat:SAT}IssuedTokenEnabled", "wlst_path": "WP001", "value": {"default": "false" }, "wlst_type": "boolean" } ], - "WsatTransportSecurityMode": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "W${sat:SAT}TransportSecurityMode", "wlst_path": "WP001", "value": {"default": "${None:SSLNotRequired}" }, "wlst_type": "string", "get_method": "LSA" } ] + "AbandonTimeoutSeconds": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "AbandonTimeoutSeconds", "wlst_path": "WP001", "value": {"default": 86400 }, "wlst_type": "integer" } ], + "BeforeCompletionIterationLimit": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "BeforeCompletionIterationLimit", "wlst_path": "WP001", "value": {"default": 10 }, "wlst_type": "integer" } ], + "CheckpointIntervalSeconds": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "CheckpointIntervalSeconds", "wlst_path": "WP001", "value": {"default": 300 }, "wlst_type": "integer" } ], + "ClusterwideRecoveryEnabled": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "ClusterwideRecoveryEnabled", "wlst_path": "WP001", "value": {"default": "false" }, "wlst_type": "boolean" } ], + "CompletionTimeoutSeconds": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "CompletionTimeoutSeconds", "wlst_path": "WP001", "value": {"default": 0 }, "wlst_type": "integer" } ], + "CrossDomainRecoveryRetryInterval": [ {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "CrossDomainRecoveryRetryInterval", "wlst_path": "WP001", "value": {"default": 60 }, "wlst_type": "integer" } ], + "CrossSiteRecoveryLeaseExpiration": [ {"version": "[12.2.1.1,)", "wlst_mode": "both", "wlst_name": "CrossSiteRecoveryLeaseExpiration", "wlst_path": "WP001", "value": {"default": 30 }, "wlst_type": "integer" } ], + "CrossSiteRecoveryLeaseUpdate": [ {"version": "[12.2.1.1,)", "wlst_mode": "both", "wlst_name": "CrossSiteRecoveryLeaseUpdate", "wlst_path": "WP001", "value": {"default": 10 }, "wlst_type": "integer" } ], + "CrossSiteRecoveryRetryInterval": [ {"version": "[12.2.1.1,)", "wlst_mode": "both", "wlst_name": "CrossSiteRecoveryRetryInterval", "wlst_path": "WP001", "value": {"default": 60 }, "wlst_type": "integer" } ], + "Determiner": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "Determiner${:s}", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" } ], + "DeterminerCandidateResourceInfoList": [ {"version": "[12.2.1,)", "wlst_mode": "online", "wlst_name": "DeterminerCandidateResourceInfoList", "wlst_path": "WP001", "value": {"default": "" }, "wlst_type": "jarray", "access": "RO" } ], + "ForgetHeuristics": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "ForgetHeuristics", "wlst_path": "WP001", "value": {"default": "true" }, "wlst_type": "boolean" } ], + "MaxResourceRequestsOnServer": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "MaxResourceRequestsOnServer", "wlst_path": "WP001", "value": {"default": 50 }, "wlst_type": "integer" } ], + "MaxResourceUnavailableMillis": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "MaxResourceUnavailableMillis", "wlst_path": "WP001", "value": {"default": 1800000 }, "wlst_type": "long" } ], + "MaxRetrySecondsBeforeDeterminerFail": [ {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "MaxRetrySecondsBeforeDeterminerFail", "wlst_path": "WP001", "value": {"default": 300 }, "wlst_type": "integer" } ], + "MaxTransactions": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "MaxTransactions", "wlst_path": "WP001", "value": {"default": 10000 }, "wlst_type": "integer" } ], + "MaxTransactionsHealthIntervalMillis": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "MaxTransactionsHealthIntervalMillis", "wlst_path": "WP001", "value": {"default": 60000 }, "wlst_type": "long" } ], + "MaxUniqueNameStatistics": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "MaxUniqueNameStatistics", "wlst_path": "WP001", "value": {"default": 1000 }, "wlst_type": "integer" } ], + "MaxXACallMillis": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "MaxXACallMillis", "wlst_path": "WP001", "value": {"default": 120000 }, "wlst_type": "long" } ], + "MigrationCheckpointIntervalSeconds": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "MigrationCheckpointIntervalSeconds", "wlst_path": "WP001", "value": {"default": 60 }, "wlst_type": "integer" } ], + "Notes": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "Notes", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" } ], + "ParallelXADispatchPolicy": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "ParallelXADispatchPolicy", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" } ], + "ParallelXAEnabled": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "ParallelXAEnabled", "wlst_path": "WP001", "value": {"default": "true" }, "wlst_type": "boolean" } ], + "PurgeResourceFromCheckpointIntervalSeconds": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "PurgeResourceFromCheckpointIntervalSeconds", "wlst_path": "WP001", "value": {"default": 86400 }, "wlst_type": "integer" } ], + "RecoverySiteName": [ {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "RecoverySiteName", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" } ], + "RecoveryThresholdMillis": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "RecoveryThresholdMillis", "wlst_path": "WP001", "value": {"default": 300000 }, "wlst_type": "long" } ], + "SecurityInteropMode": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "SecurityInteropMode", "wlst_path": "WP001", "value": {"default": "${None:default}"}, "wlst_type": "string" } ], + "SerializeEnlistmentsGCIntervalMillis": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "SerializeEnlistmentsGCIntervalMillis", "wlst_path": "WP001", "value": {"default": 30000 }, "wlst_type": "long" } ], + "ShutdownGracePeriod": [ {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "ShutdownGracePeriod", "wlst_path": "WP001", "value": {"default": 180 }, "wlst_type": "integer" } ], + "TightlyCoupledTransactionsEnabled": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "TightlyCoupledTransactionsEnabled", "wlst_path": "WP001", "value": {"default": "false" }, "wlst_type": "boolean" } ], + "TimeoutSeconds": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "TimeoutSeconds", "wlst_path": "WP001", "value": {"default": 30 }, "wlst_type": "integer" } ], + "TlogWriteWhenDeterminerExistsEnabled": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "T${log:LOG}WriteWhenDeterminerExistsEnabled", "wlst_path": "WP001", "value": {"default": "false"}, "wlst_type": "boolean" } ], + "TwoPhaseEnabled": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "TwoPhaseEnabled", "wlst_path": "WP001", "value": {"default": "true" }, "wlst_type": "boolean" } ], + "UnregisterResourceGracePeriod": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "UnregisterResourceGracePeriod", "wlst_path": "WP001", "value": {"default": 30 }, "wlst_type": "integer" } ], + "UseNonSecureAddressesForDomain": [ {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "UseNonSecureAddressesForDomain${:s}", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "${delimited_string:jarray}", "get_method": "${LSA:GET}", "preferred_model_type": "delimited_string" } ], + "UsePublicAddressesForRemoteDomain": [ {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "UsePublicAddressesForRemoteDomain${:s}", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "${delimited_string:jarray}", "get_method": "${LSA:GET}", "preferred_model_type": "delimited_string" } ], + "WsatIssuedTokenEnabled": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "W${sat:SAT}IssuedTokenEnabled", "wlst_path": "WP001", "value": {"default": "false" }, "wlst_type": "boolean" } ], + "WsatTransportSecurityMode": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "W${sat:SAT}TransportSecurityMode", "wlst_path": "WP001", "value": {"default": "${None:SSLNotRequired}" }, "wlst_type": "string", "get_method": "LSA" } ] }, "wlst_attributes_path": "WP001", "wlst_paths": { diff --git a/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/CoherenceClusterSystemResource.json b/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/CoherenceClusterSystemResource.json index 94b30ed292..8590c8246f 100644 --- a/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/CoherenceClusterSystemResource.json +++ b/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/CoherenceClusterSystemResource.json @@ -85,7 +85,8 @@ } }, "attributes": { - "ClassName": [ {"version": "[12.2.1.1,)", "wlst_mode": "online", "wlst_name": "ClassName", "wlst_path": "WP001", "value": {"default": "None"}, "wlst_type": "string", "get_method": "GET" } ] + "ClassName": [ {"version": "[12.2.1.1,12.2.1.4)", "wlst_mode": "online", "wlst_name": "ClassName", "wlst_path": "WP001", "value": {"default": "None"}, "wlst_type": "string", "get_method": "GET" } , + {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "ClassName", "wlst_path": "WP001", "value": {"default": "None"}, "wlst_type": "string" } ] }, "wlst_attributes_path": "WP001", "wlst_paths": { diff --git a/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/JMSSystemResource.json b/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/JMSSystemResource.json index 6c144050e0..d5556542af 100644 --- a/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/JMSSystemResource.json +++ b/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/JMSSystemResource.json @@ -226,12 +226,13 @@ "child_folders_type": "multiple", "folders": {}, "attributes": { - "ConnectionHealthChecking": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "ConnectionHealthChecking", "wlst_path": "WP001", "value": {"default": "enabled"}, "wlst_type": "string" } ], - "LocalJNDIName": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "LocalJNDIName", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "restart_required": "true" } ], - "Notes": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "Notes", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" } ], - "PasswordEncrypted": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "PasswordEncrypted", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "password", "get_method": "GET"} ], - "RemoteJndiName": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "Remote${Jndi:JNDI}Name", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "get_method": "LSA", "restart_required": "true"} ], - "Username": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "Username", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "credential"} ] + "ConnectionHealthChecking": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "ConnectionHealthChecking", "wlst_path": "WP001", "value": {"default": "enabled"}, "wlst_type": "string" } ], + "LocalJNDIName": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "LocalJNDIName", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "restart_required": "true" } ], + "Notes": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "Notes", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" } ], + "PasswordEncrypted": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "PasswordEncrypted", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "password", "get_method": "GET"} ], + "RemoteJndiName": [ {"version": "[10,12.2.1.4)", "wlst_mode": "both", "wlst_name": "Remote${Jndi:JNDI}Name", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "get_method": "LSA", "restart_required": "true"} , + {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "Remote${Jndi:JNDI}Name", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "get_method": "LSA" } ], + "Username": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "Username", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "credential"} ] }, "wlst_attributes_path": "WP001", "wlst_paths": { @@ -243,9 +244,10 @@ "child_folders_type": "multiple", "folders": {}, "attributes": { - "LocalJNDIName": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "LocalJNDIName", "wlst_path": "WP001", "value": {"default": "None"}, "wlst_type": "string", "restart_required": "true" } ], - "Notes": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "Notes", "wlst_path": "WP001", "value": {"default": "None"}, "wlst_type": "string" } ], - "RemoteJndiName": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "Remote${Jndi:JNDI}Name", "wlst_path": "WP001", "value": {"default": "None"}, "wlst_type": "string", "get_method": "LSA", "restart_required": "true"} ] + "LocalJNDIName": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "LocalJNDIName", "wlst_path": "WP001", "value": {"default": "None"}, "wlst_type": "string", "restart_required": "true" } ], + "Notes": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "Notes", "wlst_path": "WP001", "value": {"default": "None"}, "wlst_type": "string" } ], + "RemoteJndiName": [ {"version": "[10,12.2.1.4)", "wlst_mode": "both", "wlst_name": "Remote${Jndi:JNDI}Name", "wlst_path": "WP001", "value": {"default": "None"}, "wlst_type": "string", "get_method": "LSA", "restart_required": "true" } , + {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "Remote${Jndi:JNDI}Name", "wlst_path": "WP001", "value": {"default": "None"}, "wlst_type": "string", "get_method": "LSA" } ] }, "wlst_attributes_path": "WP001", "wlst_paths": { @@ -267,12 +269,13 @@ } }, "attributes": { - "ConnectionURL": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "ConnectionURL", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "restart_required": "true" } ], - "DefaultTargetingEnabled": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "DefaultTargetingEnabled", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "boolean", "restart_required": "true" } ], - "InitialContextFactory": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "InitialContextFactory", "wlst_path": "WP001", "value": {"default": "${None:weblogic.jndi.WLInitialContextFactory}" }, "wlst_type": "string" } ], - "JNDIPropertiesCredentialEncrypted": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "JNDIPropertiesCredentialEncrypted", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "password", "get_method": "GET" } ], - "Notes": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "Notes", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" } ], - "SubDeploymentName": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "SubDeploymentName", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "restart_required": "true" } ] + "ConnectionURL": [ {"version": "[10,12.2.1.4)", "wlst_mode": "both", "wlst_name": "ConnectionURL", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "restart_required": "true" } , + {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "ConnectionURL", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" } ], + "DefaultTargetingEnabled": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "DefaultTargetingEnabled", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "boolean", "restart_required": "true" } ], + "InitialContextFactory": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "InitialContextFactory", "wlst_path": "WP001", "value": {"default": "${None:weblogic.jndi.WLInitialContextFactory}" }, "wlst_type": "string" } ], + "JNDIPropertiesCredentialEncrypted": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "JNDIPropertiesCredentialEncrypted", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "password", "get_method": "GET" } ], + "Notes": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "Notes", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" } ], + "SubDeploymentName": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "SubDeploymentName", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "restart_required": "true" } ] }, "wlst_attributes_path": "WP001", "wlst_paths": { diff --git a/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/JTA.json b/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/JTA.json index 53ff671d17..2d3aba2b1b 100644 --- a/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/JTA.json +++ b/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/JTA.json @@ -30,7 +30,7 @@ "PurgeResourceFromCheckpointIntervalSeconds": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "PurgeResourceFromCheckpointIntervalSeconds", "wlst_path": "WP001", "value": {"default": 86400 }, "wlst_type": "integer", "get_method": "${LSA:GET}" } ], "RecoverySiteName": [ {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "RecoverySiteName", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" } ], "RecoveryThresholdMillis": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "RecoveryThresholdMillis", "wlst_path": "WP001", "value": {"default": 300000 }, "wlst_type": "long", "get_method": "${LSA:GET}" } ], - "SecurityInteropMode": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "SecurityInteropMode", "wlst_path": "WP001", "value": {"default": "${None:default}" }, "wlst_type": "string", "restart_required": "true"} ], + "SecurityInteropMode": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "SecurityInteropMode", "wlst_path": "WP001", "value": {"default": "${None:default}" }, "wlst_type": "string", "restart_required": "true"} ], "SerializeEnlistmentsGCIntervalMillis": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "SerializeEnlistmentsGCIntervalMillis", "wlst_path": "WP001", "value": {"default": 30000 }, "wlst_type": "long" } ], "ShutdownGracePeriod": [ {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "ShutdownGracePeriod", "wlst_path": "WP001", "value": {"default": 180 }, "wlst_type": "integer" } ], "TightlyCoupledTransactionsEnabled": [ {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "TightlyCoupledTransactionsEnabled", "wlst_path": "WP001", "value": {"default": "false" }, "wlst_type": "boolean" } ], @@ -38,9 +38,11 @@ "TlogWriteWhenDeterminerExistsEnabled": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "${Tlog:TLOG}WriteWhenDeterminerExistsEnabled", "wlst_path": "WP001", "value": {"default": "false" }, "wlst_type": "boolean" } ], "TwoPhaseEnabled": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "TwoPhaseEnabled", "wlst_path": "WP001", "value": {"default": "true" }, "wlst_type": "boolean" } ], "UnregisterResourceGracePeriod": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "UnregisterResourceGracePeriod", "wlst_path": "WP001", "value": {"default": 30 }, "wlst_type": "integer" } ], + "UseNonSecureAddressesForDomain": [ {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "UseNonSecureAddressesForDomain${:s}", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "${delimited_string:jarray}", "get_method": "${LSA:GET}", "preferred_model_type": "delimited_string" } ], + "UsePublicAddressesForRemoteDomain": [ {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "UseNonSecureAddressesForDomain${:s}", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "${delimited_string:jarray}", "get_method": "${LSA:GET}", "preferred_model_type": "delimited_string" } ], "WsatIssuedTokenEnabled": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "${Wsat:WSAT}IssuedTokenEnabled", "wlst_path": "WP001", "value": {"default": "false" }, "wlst_type": "boolean", "get_method": "LSA" } ], - "WsatTransportSecurityMode": [ {"version": "[10,12.2.1)", "wlst_mode": "both", "wlst_name": "${Wsat:WSAT}TransportSecurityMode", "wlst_path": "WP001", "value": {"default": "${None:SSLNotRequired}" }, "wlst_type": "string", "restart_required": "true" }, - {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "${Wsat:WSAT}TransportSecurityMode", "wlst_path": "WP001", "value": {"default": "${None:SSLNotRequired}" }, "wlst_type": "string" } ] + "WsatTransportSecurityMode": [ {"version": "[10,12.2.1)", "wlst_mode": "both", "wlst_name": "${Wsat:WSAT}TransportSecurityMode", "wlst_path": "WP001", "value": {"default": "${None:SSLNotRequired}" }, "wlst_type": "string", "restart_required": "true" }, + {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "${Wsat:WSAT}TransportSecurityMode", "wlst_path": "WP001", "value": {"default": "${None:SSLNotRequired}" }, "wlst_type": "string" } ] }, "wlst_attributes_path": "WP001", "wlst_paths": { diff --git a/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/Library.json b/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/Library.json index 3754ff216c..e8f9725ca8 100644 --- a/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/Library.json +++ b/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/Library.json @@ -24,55 +24,56 @@ } }, "attributes": { - "AbsoluteAltDescriptorDir": [ {"version": "[12.2.1,)", "wlst_mode": "online", "wlst_name": "AbsoluteAltDescriptorDir", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "uses_path_tokens": "true", "access": "RO"} ], - "AbsoluteAltDescriptorPath": [ {"version": "[12.2.1,)", "wlst_mode": "online", "wlst_name": "AbsoluteAltDescriptorPath", "wlst_path": "WP001", "value": { "default": "None"}, "wlst_type": "string", "uses_path_tokens": "true", "access": "RO"} ], - "AbsoluteInstallDir": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "AbsoluteInstallDir", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "uses_path_tokens": "true", "access": "RO"} ], - "AbsolutePlanDir": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "AbsolutePlanDir", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "uses_path_tokens": "true", "access": "RO"} ], - "AbsolutePlanPath": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "AbsolutePlanPath", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "uses_path_tokens": "true", "access": "RO"} ], - "AbsoluteSourcePath": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "AbsoluteSourcePath", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "uses_path_tokens": "true", "access": "RO"} ], - "AltDescriptorDir": [ {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "AltDescriptorDir", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "uses_path_tokens": "true", "access": "RO"} ], - "AltDescriptorPath": [ {"version": "[10,12.2.1.1)", "wlst_mode": "offline", "wlst_name": "AltDescriptorPath", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "uses_path_tokens": "true"} , - {"version": "[12.2.1.1,)", "wlst_mode": "both", "wlst_name": "AltDescriptorPath", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "uses_path_tokens": "true"} ], - "AltWLSDescriptorPath": [ {"version": "[10,)", "wlst_mode": "offline", "wlst_name": "AltWLSDescriptorPath", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "uses_path_tokens": "true"} ], - "ApplicationIdentifier": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "ApplicationIdentifier", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "access": "RO" } ], - "ApplicationName": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "ApplicationName", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "access": "RO" } ], - "AutoDeployedApp": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "AutoDeployedApp", "wlst_path": "WP001", "value": { "default": "false" }, "wlst_type": "boolean", "get_method": "GET", "access": "RO" } ], - "BackgroundDeployment": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "BackgroundDeployment", "wlst_path": "WP001", "value": { "default": "false" }, "wlst_type": "boolean", "get_method": "GET", "access": "RO" } ], - "CacheInAppDirectory": [ {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "CacheInAppDirectory", "wlst_path": "WP001", "value": { "default": "false" }, "wlst_type": "boolean" } ], - "CompatibilityName": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "CompatibilityName", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string" } ], - "DeploymentOrder": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "DeploymentOrder", "wlst_path": "WP001", "value": { "default": 100 }, "wlst_type": "integer" } ], - "DeploymentPlan": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "DeploymentPlan", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "access": "RO"} ], - "DeploymentPlanExternalDescriptors": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "DeploymentPlanExternalDescriptors", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "access": "RO"} ], - "DeploymentPrincipalName": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "DeploymentPrincipalName", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string" } ], - "InstallDir": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "InstallDir", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "access": "${:RO}", "uses_path_tokens": "true"} ], - "InternalApp": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "InternalApp", "wlst_path": "WP001", "value": { "default": "false" }, "wlst_type": "boolean", "get_method": "GET", "access": "RO" } ], - "LocalAltDescriptorPath": [ {"version": "[12.2.1,)", "wlst_mode": "online", "wlst_name": "LocalAltDescriptorPath", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "get_method": "GET", "access": "RO", "uses_path_tokens": "true" } ], - "LocalInstallDir": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "LocalInstallDir", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "get_method": "GET", "access": "RO", "uses_path_tokens": "true" } ], - "LocalPlanDir": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "LocalPlanDir", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "get_method": "GET", "access": "RO", "uses_path_tokens": "true" } ], - "LocalPlanPath": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "LocalPlanPath", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "get_method": "GET", "access": "RO", "uses_path_tokens": "true" } ], - "LocalSourcePath": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "LocalSourcePath", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "get_method": "GET", "access": "RO", "uses_path_tokens": "true" } ], - "ModuleType": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "ModuleType", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string" } ], - "Notes": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "Notes", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string" } ], - "OnDemandContextPaths": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "OnDemandContextPaths", "wlst_path": "WP001", "value": { "default": "[]" }, "wlst_type": "jarray", "get_method": "GET", "access": "RO" } ], - "OnDemandDisplayRefresh": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "OnDemandDisplayRefresh", "wlst_path": "WP001", "value": { "default": "false" }, "wlst_type": "boolean", "get_method": "GET", "access": "RO" } ], - "ParallelDeployModules": [ {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "ParallelDeployModules", "wlst_path": "WP001", "value": { "default": "false" }, "wlst_type": "boolean" } ], - "PartitionName": [ {"version": "[12.2.1,)", "wlst_mode": "online", "wlst_name": "PartitionName", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "get_method": "GET", "access": "RO" } ], - "PlanDir": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "PlanDir", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "access": "${:RO}", "uses_path_tokens": "true" } ], - "PlanPath": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "PlanPath", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "access": "${:RO}", "uses_path_tokens": "true"} ], - "PlanStagingMode": [ {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "PlanStagingMode", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "access": "${:RO}" } ], - "RootStagingDir": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "RootStagingDir", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "get_method": "GET", "access": "RO", "uses_path_tokens": "true"} ], - "SecurityDDModel": [ {"version": "[10,12.1.2)", "wlst_mode": "offline", "wlst_name": "SecurityDdModel", "wlst_path": "WP001", "value": { "default": "DDOnly"}, "wlst_type": "string" }, - {"version": "[12.1.2,12.2.1)", "wlst_mode": "offline", "wlst_name": "SecurityDDModel", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string" }, - {"version": "[12.2.1,)", "wlst_mode": "offline", "wlst_name": "SecurityDDModel", "wlst_path": "WP001", "value": { "default": "DDOnly"}, "wlst_type": "string" }, - {"version": "[10,)", "wlst_mode": "online", "wlst_name": "SecurityDDModel", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "access": "${:RO}"} ], - "SourcePath": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "SourcePath", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "access": "${:RO}", "uses_path_tokens": "true"} ], - "StagingMode": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "StagingMode", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "access": "${:RO}"} ], - "Target": [ {"version": "[10,)", "wlst_mode": "offline", "wlst_name": "Target", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "delimited_string" }, - {"version": "[10,)", "wlst_mode": "online", "wlst_name": "Targets", "wlst_path": "WP002", "value": { "default": "None" }, "wlst_type": "jarray", "get_method": "GET", "preferred_model_type": "delimited_string", "set_method": "MBEAN.set_target_mbeans", "set_mbean_type": "weblogic.management.configuration.TargetMBean"} ], - "ValidateDDSecurityData": [ {"version": "[10,12.1.2)", "wlst_mode": "both", "wlst_name": "Validate${Dd:DD}SecurityData", "wlst_path": "WP001", "value": { "default": "false" }, "wlst_type": "boolean", "get_method": "LSA"}, - {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "ValidateDDSecurityData", "wlst_path": "WP001", "value": { "default": "false" }, "wlst_type": "boolean" } ], - "Untargeted": [ {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "Untargeted", "wlst_path": "WP001", "value": { "default": "false" }, "wlst_type": "boolean" } ], - "VersionIdentifier": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "VersionIdentifier", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "access": "RO" } ] + "AbsoluteAltDescriptorDir": [ {"version": "[12.2.1,)", "wlst_mode": "online", "wlst_name": "AbsoluteAltDescriptorDir", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "uses_path_tokens": "true", "access": "RO"} ], + "AbsoluteAltDescriptorPath": [ {"version": "[12.2.1,)", "wlst_mode": "online", "wlst_name": "AbsoluteAltDescriptorPath", "wlst_path": "WP001", "value": { "default": "None"}, "wlst_type": "string", "uses_path_tokens": "true", "access": "RO"} ], + "AbsoluteInstallDir": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "AbsoluteInstallDir", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "uses_path_tokens": "true", "access": "RO"} ], + "AbsolutePlanDir": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "AbsolutePlanDir", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "uses_path_tokens": "true", "access": "RO"} ], + "AbsolutePlanPath": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "AbsolutePlanPath", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "uses_path_tokens": "true", "access": "RO"} ], + "AbsoluteSourcePath": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "AbsoluteSourcePath", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "uses_path_tokens": "true", "access": "RO"} ], + "AltDescriptorDir": [ {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "AltDescriptorDir", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "uses_path_tokens": "true", "access": "RO"} ], + "AltDescriptorPath": [ {"version": "[10,)", "wlst_mode": "offline", "wlst_name": "AltDescriptorPath", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "uses_path_tokens": "true"} ], + "AltWLSDescriptorPath": [ {"version": "[10,)", "wlst_mode": "offline", "wlst_name": "AltWLSDescriptorPath", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "uses_path_tokens": "true"} ], + "ApplicationIdentifier": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "ApplicationIdentifier", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "access": "RO" } ], + "ApplicationName": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "ApplicationName", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "access": "RO" } ], + "AutoDeployedApp": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "AutoDeployedApp", "wlst_path": "WP001", "value": { "default": "false" }, "wlst_type": "boolean", "get_method": "GET", "access": "RO" } ], + "BackgroundDeployment": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "BackgroundDeployment", "wlst_path": "WP001", "value": { "default": "false" }, "wlst_type": "boolean", "get_method": "GET", "access": "RO" } ], + "CacheInAppDirectory": [ {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "CacheInAppDirectory", "wlst_path": "WP001", "value": { "default": "false" }, "wlst_type": "boolean" } ], + "CompatibilityName": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "CompatibilityName", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string" } ], + "ConfiguredApplicationIdentifier": [ {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "ConfiguredApplicationIdentifier", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "get_method": "GET" } ], + "DeploymentOrder": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "DeploymentOrder", "wlst_path": "WP001", "value": { "default": 100 }, "wlst_type": "integer" } ], + "DeploymentPlan": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "DeploymentPlan", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "access": "RO"} ], + "DeploymentPlanExternalDescriptors": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "DeploymentPlanExternalDescriptors", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "access": "RO"} ], + "DeploymentPrincipalName": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "DeploymentPrincipalName", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string" } ], + "InstallDir": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "InstallDir", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "access": "${:RO}", "uses_path_tokens": "true"} ], + "InternalApp": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "InternalApp", "wlst_path": "WP001", "value": { "default": "false" }, "wlst_type": "boolean", "get_method": "GET", "access": "RO" } ], + "LocalAltDescriptorPath": [ {"version": "[12.2.1,)", "wlst_mode": "online", "wlst_name": "LocalAltDescriptorPath", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "get_method": "GET", "access": "RO", "uses_path_tokens": "true" } ], + "LocalInstallDir": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "LocalInstallDir", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "get_method": "GET", "access": "RO", "uses_path_tokens": "true" } ], + "LocalPlanDir": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "LocalPlanDir", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "get_method": "GET", "access": "RO", "uses_path_tokens": "true" } ], + "LocalPlanPath": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "LocalPlanPath", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "get_method": "GET", "access": "RO", "uses_path_tokens": "true" } ], + "LocalSourcePath": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "LocalSourcePath", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "get_method": "GET", "access": "RO", "uses_path_tokens": "true" } ], + "ModuleType": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "ModuleType", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string" } ], + "MultiVersionApp": [ {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "MultiVersionApp", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "get_method": "GET" } ], + "Notes": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "Notes", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string" } ], + "OnDemandContextPaths": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "OnDemandContextPaths", "wlst_path": "WP001", "value": { "default": "[]" }, "wlst_type": "jarray", "get_method": "GET", "access": "RO" } ], + "OnDemandDisplayRefresh": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "OnDemandDisplayRefresh", "wlst_path": "WP001", "value": { "default": "false" }, "wlst_type": "boolean", "get_method": "GET", "access": "RO" } ], + "ParallelDeployModules": [ {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "ParallelDeployModules", "wlst_path": "WP001", "value": { "default": "false" }, "wlst_type": "boolean" } ], + "PartitionName": [ {"version": "[12.2.1,)", "wlst_mode": "online", "wlst_name": "PartitionName", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "get_method": "GET", "access": "RO" } ], + "PlanDir": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "PlanDir", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "access": "${:RO}", "uses_path_tokens": "true" } ], + "PlanPath": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "PlanPath", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "access": "${:RO}", "uses_path_tokens": "true"} ], + "PlanStagingMode": [ {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "PlanStagingMode", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "access": "${:RO}" } ], + "RootStagingDir": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "RootStagingDir", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "get_method": "GET", "access": "RO", "uses_path_tokens": "true"} ], + "SecurityDDModel": [ {"version": "[10,12.1.2)", "wlst_mode": "offline", "wlst_name": "SecurityDdModel", "wlst_path": "WP001", "value": { "default": "DDOnly"}, "wlst_type": "string" }, + {"version": "[12.1.2,12.2.1)", "wlst_mode": "offline", "wlst_name": "SecurityDDModel", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string" }, + {"version": "[12.2.1,)", "wlst_mode": "offline", "wlst_name": "SecurityDDModel", "wlst_path": "WP001", "value": { "default": "DDOnly"}, "wlst_type": "string" }, + {"version": "[10,)", "wlst_mode": "online", "wlst_name": "SecurityDDModel", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "access": "${:RO}"} ], + "SourcePath": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "SourcePath", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "access": "${:RO}", "uses_path_tokens": "true"} ], + "StagingMode": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "StagingMode", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "access": "${:RO}"} ], + "Target": [ {"version": "[10,)", "wlst_mode": "offline", "wlst_name": "Target", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "delimited_string" }, + {"version": "[10,)", "wlst_mode": "online", "wlst_name": "Targets", "wlst_path": "WP002", "value": { "default": "None" }, "wlst_type": "jarray", "get_method": "GET", "preferred_model_type": "delimited_string", "set_method": "MBEAN.set_target_mbeans", "set_mbean_type": "weblogic.management.configuration.TargetMBean"} ], + "ValidateDDSecurityData": [ {"version": "[10,12.1.2)", "wlst_mode": "both", "wlst_name": "Validate${Dd:DD}SecurityData", "wlst_path": "WP001", "value": { "default": "false" }, "wlst_type": "boolean", "get_method": "LSA"}, + {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "ValidateDDSecurityData", "wlst_path": "WP001", "value": { "default": "false" }, "wlst_type": "boolean" } ], + "Untargeted": [ {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "Untargeted", "wlst_path": "WP001", "value": { "default": "false" }, "wlst_type": "boolean" } ], + "VersionIdentifier": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "VersionIdentifier", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "access": "RO" } ] }, "wlst_attributes_path": "WP001", "wlst_paths": { diff --git a/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/Partition.json b/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/Partition.json index a0371f2d07..ca0e17a29b 100644 --- a/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/Partition.json +++ b/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/Partition.json @@ -171,10 +171,11 @@ "child_folders_type": "multiple", "folders": {}, "attributes": { - "Notes": [ {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "Notes", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string" } ], - "PasswordEncrypted": [ {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "PasswordEncrypted", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "password", "get_method": "GET" } ], - "RemoteJNDIName": [ {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "RemoteJNDIName", "wlst_path": "WP001", "value": { "default": "No-Override" }, "wlst_type": "string" } ], - "Username": [ {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "Username", "wlst_path": "WP001", "value": { "default": "No-Override" }, "wlst_type": "credential" } ] + "Notes": [ {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "Notes", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string" } ], + "PasswordEncrypted": [ {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "PasswordEncrypted", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "password", "get_method": "GET" } ], + "RemoteJNDIName": [ {"version": "[12.2.1,12.2.1.4)", "wlst_mode": "both", "wlst_name": "RemoteJNDIName", "wlst_path": "WP001", "value": { "default": "No-Override" }, "wlst_type": "string" } , + {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "RemoteJNDIName", "wlst_path": "WP001", "value": { "default": "${None:No-Override}" }, "wlst_type": "string" } ], + "Username": [ {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "Username", "wlst_path": "WP001", "value": { "default": "No-Override" }, "wlst_type": "credential" } ] }, "wlst_attributes_path": "WP001", "wlst_paths": { @@ -187,8 +188,9 @@ "child_folders_type": "multiple", "folders": {}, "attributes": { - "Notes": [ {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "Notes", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string" } ], - "RemoteJNDIName": [ {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "RemoteJNDIName", "wlst_path": "WP001", "value": { "default": "No-Override" }, "wlst_type": "string" } ] + "Notes": [ {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "Notes", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string" } ], + "RemoteJNDIName": [ {"version": "[12.2.1,12.2.1.4)", "wlst_mode": "both", "wlst_name": "RemoteJNDIName", "wlst_path": "WP001", "value": { "default": "No-Override" }, "wlst_type": "string" } , + {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "RemoteJNDIName", "wlst_path": "WP001", "value": { "default": "${None:No-Override}" }, "wlst_type": "string" } ] }, "wlst_attributes_path": "WP001", "wlst_paths": { diff --git a/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/Server.json b/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/Server.json index da3b8baa97..124378cc1c 100644 --- a/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/Server.json +++ b/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/Server.json @@ -793,6 +793,7 @@ "DebugServerStartStatistics": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "DebugServerStartStatistics", "wlst_path": "WP001", "value": {"default": "false"}, "wlst_type": "boolean"} ], "DebugServerStartupTimer": [ {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "DebugServerStartupTimer", "wlst_path": "WP001", "value": {"default": "false"}, "wlst_type": "boolean", "get_method": "${LSA:GET}"} ], "DebugSingletonServices": [ {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "DebugSingletonServices", "wlst_path": "WP001", "value": {"default": "false"}, "wlst_type": "boolean", "get_method": "${LSA:GET}"} ], + "DebugSituationalConfig": [ {"version": "[12.2.1.4,)","wlst_mode": "both","wlst_name": "DebugSituationalConfig", "wlst_path": "WP001", "value": {"default": "false"}, "wlst_type": "boolean"} ], "DebugSnmpAgent": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "Debug${Snmp:SNMP}Agent", "wlst_path": "WP001", "value": {"default": "false"}, "wlst_type": "boolean"} ], "DebugSnmpExtensionProvider": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "Debug${Snmp:SNMP}ExtensionProvider", "wlst_path": "WP001", "value": {"default": "false"}, "wlst_type": "boolean"} ], "DebugSnmpMib": [ {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "DebugS${nmp:NMP}Mib", "wlst_path": "WP001", "value": {"default": "false"}, "wlst_type": "boolean", "get_method": "${LSA:GET}"} ], @@ -900,7 +901,8 @@ "DiagnosticJdbcSchemaName": [ {"version": "[12.1.3,)" , "wlst_mode": "both", "wlst_name": "DiagnosticJ${dbc:DBC}SchemaName", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "restart_required": "true" } ], "DiagnosticStoreBlockSize": [ {"version": "[10,)" , "wlst_mode": "both", "wlst_name": "DiagnosticStoreBlockSize", "wlst_path": "WP001", "value": {"default": -1 }, "wlst_type": "integer", "restart_required": "true" } ], "DiagnosticStoreDir": [ {"version": "[10,)" , "wlst_mode": "both", "wlst_name": "DiagnosticStoreDir", "wlst_path": "WP001", "value": {"default": "data/store/diagnostics"}, "wlst_type": "string" , "restart_required": "true" } ], - "DiagnosticStoreFileLockingEnabled": [ {"version": "[10,)" , "wlst_mode": "both", "wlst_name": "DiagnosticStoreFileLockingEnabled", "wlst_path": "WP001", "value": {"default": "true" }, "wlst_type": "boolean", "restart_required": "true" } ], + "DiagnosticStoreFileLockingEnabled": [ {"version": "[10,12.2.1.4)", "wlst_mode": "both", "wlst_name": "DiagnosticStoreFileLockingEnabled", "wlst_path": "WP001", "value": {"default": "true" }, "wlst_type": "boolean", "restart_required": "true" } , + {"version": "[12.2.1.4,)" , "wlst_mode": "both", "wlst_name": "DiagnosticStoreFileLockingEnabled", "wlst_path": "WP001", "value": {"default": "false" }, "wlst_type": "boolean", "restart_required": "true" } ], "DiagnosticStoreIoBufferSize": [ {"version": "[10,)" , "wlst_mode": "both", "wlst_name": "DiagnosticStoreIoBufferSize", "wlst_path": "WP001", "value": {"default": -1 }, "wlst_type": "integer", "restart_required": "true" } ], "DiagnosticStoreMaxFileSize": [ {"version": "[10,)" , "wlst_mode": "both", "wlst_name": "DiagnosticStoreMaxFileSize", "wlst_path": "WP001", "value": {"default": 1342177280 }, "wlst_type": "long", "restart_required": "true" } ], "DiagnosticStoreMaxWindowBufferSize": [ {"version": "[10,12.1.2)" , "wlst_mode": "both", "wlst_name": "DiagnosticStoreMaxWindowBufferSize", "wlst_path": "WP001", "value": {"default": -1 }, "wlst_type": "integer", "restart_required": "true" } , @@ -1497,6 +1499,7 @@ "ServerTemplate": [ {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "ServerTemplate", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "set_method": "${:MBEAN.set_server_template_mbean}", "set_mbean_type": "${:weblogic.management.configuration.ServerTemplateMBean}" } ], "ServerVersion": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "ServerVersion", "wlst_path": "WP001", "value": {"default": "unknown" }, "wlst_type": "string" } ], "SitConfigPollingInterval": [ {"version": "[12.2.1.3,)", "wlst_mode": "both", "wlst_name": "SitConfigPollingInterval", "wlst_path": "WP001", "value": {"default": 5 }, "wlst_type": "integer" } ], + "SitConfigRequired": [ {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "SitConfigRequired", "wlst_path": "WP001", "value": {"default": "false" }, "wlst_type": "boolean" } ], "SocketBufferSizeAsChunkSize": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "SocketBufferSizeAsChunkSize", "wlst_path": "WP001", "value": {"default": "false" }, "wlst_type": "boolean" } ], "SocketReaderTimeoutMaxMillis": [ {"version": "[10,)", "wlst_mode": "offline", "wlst_name": "SocketReaderTimeoutMaxMillis", "wlst_path": "WP001", "value": {"default": 100 }, "wlst_type": "integer" } ], "SocketReaderTimeoutMinMillis": [ {"version": "[10,)", "wlst_mode": "offline", "wlst_name": "SocketReaderTimeoutMinMillis", "wlst_path": "WP001", "value": {"default": 10 }, "wlst_type": "integer" } ], @@ -1518,7 +1521,11 @@ "TimedOutRefIsolationTime": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "TimedOutRefIsolationTime", "wlst_path": "WP001", "value": {"default": 0 }, "wlst_type": "long", "get_method": "${LSA:GET}", "restart_required": "true" } ], "TracingEnabled": [ {"version": "[10,)", "wlst_mode": "offline", "wlst_name": "TracingEnabled", "wlst_path": "WP001", "value": {"default": "false" }, "wlst_type": "boolean" } ], "TransactionLogFilePrefix": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "TransactionLogFilePrefix", "wlst_path": "WP001", "value": {"default": "./" }, "wlst_type": "string" } ], - "TransactionLogFileWritePolicy": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "TransactionLogFileWritePolicy", "wlst_path": "WP001", "value": {"default": "${None:Direct-Write}"}, "wlst_type": "string" } ], + "TransactionLogFileWritePolicy": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "TransactionLogFileWritePolicy", "wlst_path": "WP001", "value": {"default": "${None:Direct-Write}"}, "wlst_type": "string" } ], + "TransactionPrimaryChannelName": [ {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "TransactionPrimaryChannelName", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" } ], + "TransactionPublicChannelName": [ {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "TransactionPublicChannelName", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" } ], + "TransactionPublicSecureChannelName": [ {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "TransactionPublicSecureChannelName", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" } ], + "TransactionSecureChannelName": [ {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "TransactionSecureChannelName", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" } ], "TunnelingClientPingSecs": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "TunnelingClientPingSecs", "wlst_path": "WP001", "value": {"default": 45 }, "wlst_type": "integer" } ], "TunnelingClientTimeoutSecs": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "TunnelingClientTimeoutSecs", "wlst_path": "WP001", "value": {"default": 40 }, "wlst_type": "integer" } ], "TunnelingEnabled": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "TunnelingEnabled", "wlst_path": "WP001", "value": {"default": "false" }, "wlst_type": "boolean" } ], diff --git a/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/ServerTemplate.json b/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/ServerTemplate.json index b511a37fc4..8a51472948 100644 --- a/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/ServerTemplate.json +++ b/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/ServerTemplate.json @@ -799,6 +799,7 @@ "DebugServerStartStatistics": [ {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "DebugServerStartStatistics", "wlst_path": "WP001", "value": {"default": "false"}, "wlst_type": "boolean"} ], "DebugServerStartupTimer": [ {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "DebugServerStartupTimer", "wlst_path": "WP001", "value": {"default": "false"}, "wlst_type": "boolean", "get_method": "${LSA:GET}"} ], "DebugSingletonServices": [ {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "DebugSingletonServices", "wlst_path": "WP001", "value": {"default": "false"}, "wlst_type": "boolean", "get_method": "${LSA:GET}"} ], + "DebugSituationalConfig": [ {"version": "[12.2.1.4,)","wlst_mode": "both","wlst_name": "DebugSituationalConfig", "wlst_path": "WP001", "value": {"default": "false"}, "wlst_type": "boolean"} ], "DebugSnmpAgent": [ {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "Debug${Snmp:SNMP}Agent", "wlst_path": "WP001", "value": {"default": "false"}, "wlst_type": "boolean"} ], "DebugSnmpExtensionProvider": [ {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "Debug${Snmp:SNMP}ExtensionProvider", "wlst_path": "WP001", "value": {"default": "false"}, "wlst_type": "boolean"} ], "DebugSnmpMib": [ {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "DebugS${nmp:NMP}Mib", "wlst_path": "WP001", "value": {"default": "false"}, "wlst_type": "boolean", "get_method": "${LSA:GET}"} ], @@ -907,7 +908,8 @@ "DiagnosticJdbcSchemaName": [ {"version": "[12.1.3,)", "wlst_mode": "both", "wlst_name": "DiagnosticJ${dbc:DBC}SchemaName", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "restart_required": "true" } ], "DiagnosticStoreBlockSize": [ {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "DiagnosticStoreBlockSize", "wlst_path": "WP001", "value": {"default": -1 }, "wlst_type": "integer", "restart_required": "true" } ], "DiagnosticStoreDir": [ {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "DiagnosticStoreDir", "wlst_path": "WP001", "value": {"default": "data/store/diagnostics" }, "wlst_type": "string", "restart_required": "true" } ], - "DiagnosticStoreFileLockingEnabled": [ {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "DiagnosticStoreFileLockingEnabled", "wlst_path": "WP001", "value": {"default": "true" }, "wlst_type": "boolean", "restart_required": "true" } ], + "DiagnosticStoreFileLockingEnabled": [ {"version": "[12.1.2,12.2.1.4)", "wlst_mode": "both", "wlst_name": "DiagnosticStoreFileLockingEnabled", "wlst_path": "WP001", "value": {"default": "true" }, "wlst_type": "boolean", "restart_required": "true" } , + {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "DiagnosticStoreFileLockingEnabled", "wlst_path": "WP001", "value": {"default": "false" }, "wlst_type": "boolean", "restart_required": "true" } ], "DiagnosticStoreIoBufferSize": [ {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "DiagnosticStoreIoBufferSize", "wlst_path": "WP001", "value": {"default": -1 }, "wlst_type": "integer", "restart_required": "true" } ], "DiagnosticStoreMaxFileSize": [ {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "DiagnosticStoreMaxFileSize", "wlst_path": "WP001", "value": {"default": 1342177280 }, "wlst_type": "long", "restart_required": "true" } ], "DiagnosticStoreMaxWindowBufferSize": [ {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "DiagnosticStoreMaxWindowBufferSize", "wlst_path": "WP001", "value": {"default": 4194304 }, "wlst_type": "integer", "restart_required": "true" } ], @@ -1505,6 +1507,7 @@ {"version": "[12.2.1.3,)", "wlst_mode": "both", "wlst_name": "ServerLifeCycleTimeoutVal", "wlst_path": "WP001", "value": {"default": "${30:120}" }, "wlst_type": "integer" } ], "ServerVersion": [ {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "ServerVersion", "wlst_path": "WP001", "value": {"default": "unknown" }, "wlst_type": "string" } ], "SitConfigPollingInterval": [ {"version": "[12.2.1.3,)", "wlst_mode": "both", "wlst_name": "SitConfigPollingInterval", "wlst_path": "WP001", "value": {"default": 5 }, "wlst_type": "integer" } ], + "SitConfigRequired": [ {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "SitConfigRequired", "wlst_path": "WP001", "value": {"default": "false" }, "wlst_type": "boolean" } ], "SocketBufferSizeAsChunkSize": [ {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "SocketBufferSizeAsChunkSize", "wlst_path": "WP001", "value": {"default": "false" }, "wlst_type": "boolean" } ], "SocketReaderTimeoutMaxMillis": [ {"version": "[12.1.2,)", "wlst_mode": "offline", "wlst_name": "SocketReaderTimeoutMaxMillis", "wlst_path": "WP001", "value": {"default": 100 }, "wlst_type": "integer" } ], "SocketReaderTimeoutMinMillis": [ {"version": "[12.1.2,)", "wlst_mode": "offline", "wlst_name": "SocketReaderTimeoutMinMillis", "wlst_path": "WP001", "value": {"default": 10 }, "wlst_type": "integer" } ], @@ -1526,7 +1529,11 @@ "TimedOutRefIsolationTime": [ {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "TimedOutRefIsolationTime", "wlst_path": "WP001", "value": {"default": 0 }, "wlst_type": "long", "get_method": "${LSA:GET}", "restart_required": "true" } ], "TracingEnabled": [ {"version": "[12.1.2,)", "wlst_mode": "offline", "wlst_name": "TracingEnabled", "wlst_path": "WP001", "value": {"default": "false" }, "wlst_type": "boolean" } ], "TransactionLogFilePrefix": [ {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "TransactionLogFilePrefix", "wlst_path": "WP001", "value": {"default": "./" }, "wlst_type": "string" } ], - "TransactionLogFileWritePolicy": [ {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "TransactionLogFileWritePolicy", "wlst_path": "WP001", "value": {"default": "${None:Direct-Write}"}, "wlst_type": "string" } ], + "TransactionLogFileWritePolicy": [ {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "TransactionLogFileWritePolicy", "wlst_path": "WP001", "value": {"default": "${None:Direct-Write}"}, "wlst_type": "string" } ], + "TransactionPrimaryChannelName": [ {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "TransactionPrimaryChannelName", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" } ], + "TransactionPublicChannelName": [ {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "TransactionPublicChannelName", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" } ], + "TransactionPublicSecureChannelName": [ {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "TransactionPublicSecureChannelName", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" } ], + "TransactionSecureChannelName": [ {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "TransactionSecureChannelName", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" } ], "TunnelingClientPingSecs": [ {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "TunnelingClientPingSecs", "wlst_path": "WP001", "value": {"default": 45 }, "wlst_type": "integer" } ], "TunnelingClientTimeoutSecs": [ {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "TunnelingClientTimeoutSecs", "wlst_path": "WP001", "value": {"default": 40 }, "wlst_type": "integer" } ], "TunnelingEnabled": [ {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "TunnelingEnabled", "wlst_path": "WP001", "value": {"default": "false" }, "wlst_type": "boolean" } ], From f5994ab299e4a7b14b0cffac13b68906eddbac97 Mon Sep 17 00:00:00 2001 From: crountre Date: Tue, 30 Oct 2018 09:53:09 -0500 Subject: [PATCH 6/6] Changes to attributes and mbeans for 19c --- .../deploy/aliases/category_modules/AppDeployment.json | 2 +- .../weblogic/deploy/aliases/category_modules/JTA.json | 2 +- .../weblogic/deploy/aliases/category_modules/Library.json | 4 ++-- .../deploy/aliases/category_modules/Partition.json | 4 ++-- .../weblogic/deploy/aliases/category_modules/Server.json | 8 ++++---- .../deploy/aliases/category_modules/ServerTemplate.json | 8 ++++---- 6 files changed, 14 insertions(+), 14 deletions(-) diff --git a/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/AppDeployment.json b/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/AppDeployment.json index 556efb4eb5..a912b77802 100644 --- a/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/AppDeployment.json +++ b/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/AppDeployment.json @@ -34,7 +34,7 @@ "LocalPlanPath": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "LocalPlanPath", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "get_method": "GET", "uses_path_tokens": "true", "access": "RO" } ], "LocalSourcePath": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "LocalSourcePath", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "get_method": "GET", "uses_path_tokens": "true", "access": "RO" } ], "ModuleType": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "ModuleType", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" } ], - "MultiVersionApp": [ {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "MultiVersionApp", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "get_method": "GET" } ], + "MultiVersionApp": [ {"version": "[12.2.1.4,)", "wlst_mode": "online", "wlst_name": "MultiVersionApp", "wlst_path": "WP001", "value": {"default": "false" }, "wlst_type": "boolean", "get_method": "GET" } ], "Notes": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "Notes", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" } ], "OnDemandContextPaths": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "OnDemandContextPaths", "wlst_path": "WP001", "value": {"default": "[]" }, "wlst_type": "jarray", "get_method": "GET", "access": "RO" } ], "OnDemandDisplayRefresh": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "OnDemandDisplayRefresh", "wlst_path": "WP001", "value": {"default": "false"}, "wlst_type": "boolean", "get_method": "GET", "access": "RO" } ], diff --git a/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/JTA.json b/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/JTA.json index 2d3aba2b1b..ea0967983c 100644 --- a/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/JTA.json +++ b/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/JTA.json @@ -39,7 +39,7 @@ "TwoPhaseEnabled": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "TwoPhaseEnabled", "wlst_path": "WP001", "value": {"default": "true" }, "wlst_type": "boolean" } ], "UnregisterResourceGracePeriod": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "UnregisterResourceGracePeriod", "wlst_path": "WP001", "value": {"default": 30 }, "wlst_type": "integer" } ], "UseNonSecureAddressesForDomain": [ {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "UseNonSecureAddressesForDomain${:s}", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "${delimited_string:jarray}", "get_method": "${LSA:GET}", "preferred_model_type": "delimited_string" } ], - "UsePublicAddressesForRemoteDomain": [ {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "UseNonSecureAddressesForDomain${:s}", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "${delimited_string:jarray}", "get_method": "${LSA:GET}", "preferred_model_type": "delimited_string" } ], + "UsePublicAddressesForRemoteDomain": [ {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "UsePublicAddressesForRemoteDomain${:s}", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "${delimited_string:jarray}", "get_method": "${LSA:GET}", "preferred_model_type": "delimited_string" } ], "WsatIssuedTokenEnabled": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "${Wsat:WSAT}IssuedTokenEnabled", "wlst_path": "WP001", "value": {"default": "false" }, "wlst_type": "boolean", "get_method": "LSA" } ], "WsatTransportSecurityMode": [ {"version": "[10,12.2.1)", "wlst_mode": "both", "wlst_name": "${Wsat:WSAT}TransportSecurityMode", "wlst_path": "WP001", "value": {"default": "${None:SSLNotRequired}" }, "wlst_type": "string", "restart_required": "true" }, {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "${Wsat:WSAT}TransportSecurityMode", "wlst_path": "WP001", "value": {"default": "${None:SSLNotRequired}" }, "wlst_type": "string" } ] diff --git a/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/Library.json b/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/Library.json index e8f9725ca8..7c16e5d193 100644 --- a/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/Library.json +++ b/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/Library.json @@ -39,7 +39,7 @@ "BackgroundDeployment": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "BackgroundDeployment", "wlst_path": "WP001", "value": { "default": "false" }, "wlst_type": "boolean", "get_method": "GET", "access": "RO" } ], "CacheInAppDirectory": [ {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "CacheInAppDirectory", "wlst_path": "WP001", "value": { "default": "false" }, "wlst_type": "boolean" } ], "CompatibilityName": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "CompatibilityName", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string" } ], - "ConfiguredApplicationIdentifier": [ {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "ConfiguredApplicationIdentifier", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "get_method": "GET" } ], + "ConfiguredApplicationIdentifier": [ {"version": "[12.2.1.4,)", "wlst_mode": "online", "wlst_name": "ConfiguredApplicationIdentifier", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "get_method": "GET" } ], "DeploymentOrder": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "DeploymentOrder", "wlst_path": "WP001", "value": { "default": 100 }, "wlst_type": "integer" } ], "DeploymentPlan": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "DeploymentPlan", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "access": "RO"} ], "DeploymentPlanExternalDescriptors": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "DeploymentPlanExternalDescriptors", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "access": "RO"} ], @@ -52,7 +52,7 @@ "LocalPlanPath": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "LocalPlanPath", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "get_method": "GET", "access": "RO", "uses_path_tokens": "true" } ], "LocalSourcePath": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "LocalSourcePath", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "get_method": "GET", "access": "RO", "uses_path_tokens": "true" } ], "ModuleType": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "ModuleType", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string" } ], - "MultiVersionApp": [ {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "MultiVersionApp", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string", "get_method": "GET" } ], + "MultiVersionApp": [ {"version": "[12.2.1.4,)", "wlst_mode": "online", "wlst_name": "MultiVersionApp", "wlst_path": "WP001", "value": { "default": "false" }, "wlst_type": "boolean", "get_method": "GET" } ], "Notes": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "Notes", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string" } ], "OnDemandContextPaths": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "OnDemandContextPaths", "wlst_path": "WP001", "value": { "default": "[]" }, "wlst_type": "jarray", "get_method": "GET", "access": "RO" } ], "OnDemandDisplayRefresh": [ {"version": "[10,)", "wlst_mode": "online", "wlst_name": "OnDemandDisplayRefresh", "wlst_path": "WP001", "value": { "default": "false" }, "wlst_type": "boolean", "get_method": "GET", "access": "RO" } ], diff --git a/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/Partition.json b/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/Partition.json index ca0e17a29b..1a50419006 100644 --- a/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/Partition.json +++ b/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/Partition.json @@ -174,7 +174,7 @@ "Notes": [ {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "Notes", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string" } ], "PasswordEncrypted": [ {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "PasswordEncrypted", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "password", "get_method": "GET" } ], "RemoteJNDIName": [ {"version": "[12.2.1,12.2.1.4)", "wlst_mode": "both", "wlst_name": "RemoteJNDIName", "wlst_path": "WP001", "value": { "default": "No-Override" }, "wlst_type": "string" } , - {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "RemoteJNDIName", "wlst_path": "WP001", "value": { "default": "${None:No-Override}" }, "wlst_type": "string" } ], + {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "RemoteJNDIName", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string" } ], "Username": [ {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "Username", "wlst_path": "WP001", "value": { "default": "No-Override" }, "wlst_type": "credential" } ] }, "wlst_attributes_path": "WP001", @@ -190,7 +190,7 @@ "attributes": { "Notes": [ {"version": "[12.2.1,)", "wlst_mode": "both", "wlst_name": "Notes", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string" } ], "RemoteJNDIName": [ {"version": "[12.2.1,12.2.1.4)", "wlst_mode": "both", "wlst_name": "RemoteJNDIName", "wlst_path": "WP001", "value": { "default": "No-Override" }, "wlst_type": "string" } , - {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "RemoteJNDIName", "wlst_path": "WP001", "value": { "default": "${None:No-Override}" }, "wlst_type": "string" } ] + {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "RemoteJNDIName", "wlst_path": "WP001", "value": { "default": "None" }, "wlst_type": "string" } ] }, "wlst_attributes_path": "WP001", "wlst_paths": { diff --git a/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/Server.json b/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/Server.json index 124378cc1c..9a8b996715 100644 --- a/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/Server.json +++ b/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/Server.json @@ -1522,10 +1522,10 @@ "TracingEnabled": [ {"version": "[10,)", "wlst_mode": "offline", "wlst_name": "TracingEnabled", "wlst_path": "WP001", "value": {"default": "false" }, "wlst_type": "boolean" } ], "TransactionLogFilePrefix": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "TransactionLogFilePrefix", "wlst_path": "WP001", "value": {"default": "./" }, "wlst_type": "string" } ], "TransactionLogFileWritePolicy": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "TransactionLogFileWritePolicy", "wlst_path": "WP001", "value": {"default": "${None:Direct-Write}"}, "wlst_type": "string" } ], - "TransactionPrimaryChannelName": [ {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "TransactionPrimaryChannelName", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" } ], - "TransactionPublicChannelName": [ {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "TransactionPublicChannelName", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" } ], - "TransactionPublicSecureChannelName": [ {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "TransactionPublicSecureChannelName", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" } ], - "TransactionSecureChannelName": [ {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "TransactionSecureChannelName", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" } ], + "TransactionPrimaryChannelName": [ {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "TransactionPrimaryChannelName", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "restart_required": "true" } ], + "TransactionPublicChannelName": [ {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "TransactionPublicChannelName", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "restart_required": "true" } ], + "TransactionPublicSecureChannelName": [ {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "TransactionPublicSecureChannelName", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "restart_required": "true" } ], + "TransactionSecureChannelName": [ {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "TransactionSecureChannelName", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "restart_required": "true" } ], "TunnelingClientPingSecs": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "TunnelingClientPingSecs", "wlst_path": "WP001", "value": {"default": 45 }, "wlst_type": "integer" } ], "TunnelingClientTimeoutSecs": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "TunnelingClientTimeoutSecs", "wlst_path": "WP001", "value": {"default": 40 }, "wlst_type": "integer" } ], "TunnelingEnabled": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "TunnelingEnabled", "wlst_path": "WP001", "value": {"default": "false" }, "wlst_type": "boolean" } ], diff --git a/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/ServerTemplate.json b/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/ServerTemplate.json index 8a51472948..45620db302 100644 --- a/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/ServerTemplate.json +++ b/core/src/main/resources/oracle/weblogic/deploy/aliases/category_modules/ServerTemplate.json @@ -1530,10 +1530,10 @@ "TracingEnabled": [ {"version": "[12.1.2,)", "wlst_mode": "offline", "wlst_name": "TracingEnabled", "wlst_path": "WP001", "value": {"default": "false" }, "wlst_type": "boolean" } ], "TransactionLogFilePrefix": [ {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "TransactionLogFilePrefix", "wlst_path": "WP001", "value": {"default": "./" }, "wlst_type": "string" } ], "TransactionLogFileWritePolicy": [ {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "TransactionLogFileWritePolicy", "wlst_path": "WP001", "value": {"default": "${None:Direct-Write}"}, "wlst_type": "string" } ], - "TransactionPrimaryChannelName": [ {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "TransactionPrimaryChannelName", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" } ], - "TransactionPublicChannelName": [ {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "TransactionPublicChannelName", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" } ], - "TransactionPublicSecureChannelName": [ {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "TransactionPublicSecureChannelName", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" } ], - "TransactionSecureChannelName": [ {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "TransactionSecureChannelName", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string" } ], + "TransactionPrimaryChannelName": [ {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "TransactionPrimaryChannelName", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "restart_required": "true" } ], + "TransactionPublicChannelName": [ {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "TransactionPublicChannelName", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "restart_required": "true" } ], + "TransactionPublicSecureChannelName": [ {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "TransactionPublicSecureChannelName", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "restart_required": "true" } ], + "TransactionSecureChannelName": [ {"version": "[12.2.1.4,)", "wlst_mode": "both", "wlst_name": "TransactionSecureChannelName", "wlst_path": "WP001", "value": {"default": "None" }, "wlst_type": "string", "restart_required": "true" } ], "TunnelingClientPingSecs": [ {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "TunnelingClientPingSecs", "wlst_path": "WP001", "value": {"default": 45 }, "wlst_type": "integer" } ], "TunnelingClientTimeoutSecs": [ {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "TunnelingClientTimeoutSecs", "wlst_path": "WP001", "value": {"default": 40 }, "wlst_type": "integer" } ], "TunnelingEnabled": [ {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "TunnelingEnabled", "wlst_path": "WP001", "value": {"default": "false" }, "wlst_type": "boolean" } ],