UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

10 lines 1.03 kB
/** This configuration allows you to manage and control the firewall settings specifically for SAP Central Services, SAP Application servers, and SAP HANA databases at the operating system level. By enabling or disabling the firewall for each component, you can enhance the security of your SAP environment while ensuring that necessary communication channels remain open. */ export interface Firewall { /** Controls the firewall status for the SAP Application servers at the operating system level. Set to 'true' to enable the firewall, or 'false' to disable it. */ applicationServers: boolean; /** Controls the firewall status for the SAP Central Services server at the operating system level. Set to 'true' to enable the firewall, or 'false' to disable it. */ centralServices: boolean; /** Controls the firewall status for the SAP HANA servers at the operating system level. Set to 'true' to enable the firewall, or 'false' to disable it. */ hanaDatabase: boolean; } //# sourceMappingURL=Firewall.d.ts.map