toArgMap method
Implementation
Map<String, Object?> toArgMap() => {
if (host != null) 'host': host!.toTfJson(),
if (requestPath != null) 'request_path': requestPath!.toTfJson(),
if (response != null) 'response': response!.toTfJson(),
if (port != null) 'port': port!.toTfJson(),
if (portName != null) 'port_name': portName!.toTfJson(),
if (proxyHeader != null) 'proxy_header': proxyHeader!.terraformValue,
if (portSpecification != null)
'port_specification': portSpecification!.terraformValue,
};