From 61ddccbac3147bb5edcd8e7611e40137cd755e08 Mon Sep 17 00:00:00 2001 From: powervs-ibm <137309855+powervs-ibm@users.noreply.github.com> Date: Tue, 27 Aug 2024 10:13:43 -0500 Subject: [PATCH] [M] NetworkSecurityGroupRuleProtocol: IcmpTypes float64-> int64 SB commit 8052ef5f496669f885519678a3e9fe6fe638cf5d (#454) --- power/models/network_security_group_rule_protocol.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/power/models/network_security_group_rule_protocol.go b/power/models/network_security_group_rule_protocol.go index e76368cc..f55e1272 100644 --- a/power/models/network_security_group_rule_protocol.go +++ b/power/models/network_security_group_rule_protocol.go @@ -22,7 +22,7 @@ import ( type NetworkSecurityGroupRuleProtocol struct { // If icmp type, the list of ICMP packet types (by numbers) affected by ICMP rules and if not present then all types are matched - IcmpTypes []float64 `json:"icmpTypes"` + IcmpTypes []int64 `json:"icmpTypes"` // If tcp type, the list of TCP flags and if not present then all flags are matched TCPFlags []*NetworkSecurityGroupRuleProtocolTCPFlag `json:"tcpFlags"`