You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.
Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 15, 2020. It is now read-only.
// Only show selected tier, if viewing from detail view
if(args.context.networks&&
args.context.networks[0]&&
args.context.networks[0].vpcid){
$.extend(data,{
id: args.context.networks[0].id
});
}
// Ajax Call to display the Tiers
$.ajax({
url: createURL('listNetworks'),
data: data,
success: function(json){
varnetworks=json.listnetworksresponse.network;
args.response.success({
data: $(networks).map(function(index,network){
return{
name: network.id,
description: network.name
};
})
});
}
});
}
},
'icmptype': {edit: true,label: 'ICMP.type',isDisabled: true,desc:'Please specify -1 if you want to allow all ICMP types',defaultValue:'-1',isEditable: true},
'icmpcode': {edit: true,label: 'ICMP.code',isDisabled: true,desc:'Please specify -1 if you want to allow all ICMP codes',defaultValue:'-1',isEditable: true},