code
stringlengths
73
34.1k
label
stringclasses
1 value
public static authenticationradiuspolicy_systemglobal_binding[] get(nitro_service service, String name) throws Exception{ authenticationradiuspolicy_systemglobal_binding obj = new authenticationradiuspolicy_systemglobal_binding(); obj.set_name(name); authenticationradiuspolicy_systemglobal_binding response[] = (a...
java
public static authenticationcertpolicy_systemglobal_binding[] get(nitro_service service, String name) throws Exception{ authenticationcertpolicy_systemglobal_binding obj = new authenticationcertpolicy_systemglobal_binding(); obj.set_name(name); authenticationcertpolicy_systemglobal_binding response[] = (authentic...
java
public static base_response add(nitro_service client, snmptrap resource) throws Exception { snmptrap addresource = new snmptrap(); addresource.trapclass = resource.trapclass; addresource.trapdestination = resource.trapdestination; addresource.version = resource.version; addresource.destport = resource.destpor...
java
public static base_responses add(nitro_service client, snmptrap resources[]) throws Exception { base_responses result = null; if (resources != null && resources.length > 0) { snmptrap addresources[] = new snmptrap[resources.length]; for (int i=0;i<resources.length;i++){ addresources[i] = new snmptrap(); ...
java
public static base_response delete(nitro_service client, String trapclass) throws Exception { snmptrap deleteresource = new snmptrap(); deleteresource.trapclass = trapclass; return deleteresource.delete_resource(client); }
java
public static base_response delete(nitro_service client, snmptrap resource) throws Exception { snmptrap deleteresource = new snmptrap(); deleteresource.trapclass = resource.trapclass; deleteresource.trapdestination = resource.trapdestination; return deleteresource.delete_resource(client); }
java
public static base_responses delete(nitro_service client, String trapclass[]) throws Exception { base_responses result = null; if (trapclass != null && trapclass.length > 0) { snmptrap deleteresources[] = new snmptrap[trapclass.length]; for (int i=0;i<trapclass.length;i++){ deleteresources[i] = new snmptr...
java
public static base_responses delete(nitro_service client, snmptrap resources[]) throws Exception { base_responses result = null; if (resources != null && resources.length > 0) { snmptrap deleteresources[] = new snmptrap[resources.length]; for (int i=0;i<resources.length;i++){ deleteresources[i] = new snmp...
java
public static base_response update(nitro_service client, snmptrap resource) throws Exception { snmptrap updateresource = new snmptrap(); updateresource.trapclass = resource.trapclass; updateresource.trapdestination = resource.trapdestination; updateresource.destport = resource.destport; updateresource.version...
java
public static base_responses update(nitro_service client, snmptrap resources[]) throws Exception { base_responses result = null; if (resources != null && resources.length > 0) { snmptrap updateresources[] = new snmptrap[resources.length]; for (int i=0;i<resources.length;i++){ updateresources[i] = new snmp...
java
public static base_response unset(nitro_service client, snmptrap resource, String[] args) throws Exception{ snmptrap unsetresource = new snmptrap(); unsetresource.trapclass = resource.trapclass; unsetresource.trapdestination = resource.trapdestination; return unsetresource.unset_resource(client,args); }
java
public static base_responses unset(nitro_service client, snmptrap resources[], String[] args) throws Exception { base_responses result = null; if (resources != null && resources.length > 0) { snmptrap unsetresources[] = new snmptrap[resources.length]; for (int i=0;i<resources.length;i++){ unsetresources[...
java
public static snmptrap[] get(nitro_service service) throws Exception{ snmptrap obj = new snmptrap(); snmptrap[] response = (snmptrap[])obj.get_resources(service); return response; }
java
public static base_response enable(nitro_service client) throws Exception { reporting enableresource = new reporting(); return enableresource.perform_operation(client,"enable"); }
java
public static base_response disable(nitro_service client) throws Exception { reporting disableresource = new reporting(); return disableresource.perform_operation(client,"disable"); }
java
public static reporting get(nitro_service service) throws Exception{ reporting obj = new reporting(); reporting[] response = (reporting[])obj.get_resources(service); return response[0]; }
java
public static systemgroup_systemcmdpolicy_binding[] get(nitro_service service, String groupname) throws Exception{ systemgroup_systemcmdpolicy_binding obj = new systemgroup_systemcmdpolicy_binding(); obj.set_groupname(groupname); systemgroup_systemcmdpolicy_binding response[] = (systemgroup_systemcmdpolicy_bindin...
java
public static long count(nitro_service service, String groupname) throws Exception{ systemgroup_systemcmdpolicy_binding obj = new systemgroup_systemcmdpolicy_binding(); obj.set_groupname(groupname); options option = new options(); option.set_count(true); systemgroup_systemcmdpolicy_binding response[] = (syste...
java
public static nssimpleacl_stats get(nitro_service service) throws Exception{ nssimpleacl_stats obj = new nssimpleacl_stats(); nssimpleacl_stats[] response = (nssimpleacl_stats[])obj.stat_resources(service); return response[0]; }
java
public static Integer getAsInteger(Object value) { Integer result = null; try { if (value instanceof String) { result = Integer.valueOf((String) value); } else if (value instanceof Number) { result = ((Number) value).intValue(); } else { result = null; } } catch (Exception e) { result ...
java
public static Long getAsLong(Object value) { Long result = null; try { if (value instanceof String) { result = Long.valueOf((String) value); } else if (value instanceof Number) { result = ((Number) value).longValue(); } else { result = null; } } catch (Exception e) { result = null; }...
java
public static Double getAsDouble(Object value) { Double result = null; try { if (value instanceof String) { result = Double.valueOf((String) value); } else if (value instanceof Number) { result = ((Number) value).doubleValue(); } else { result = null; } } catch (Exception e) { result =...
java
public static lbvserver_binding get(nitro_service service, String name) throws Exception{ lbvserver_binding obj = new lbvserver_binding(); obj.set_name(name); lbvserver_binding response = (lbvserver_binding) obj.get_resource(service); return response; }
java
public static cspolicy_crvserver_binding[] get(nitro_service service, String policyname) throws Exception{ cspolicy_crvserver_binding obj = new cspolicy_crvserver_binding(); obj.set_policyname(policyname); cspolicy_crvserver_binding response[] = (cspolicy_crvserver_binding[]) obj.get_resources(service); return ...
java
public boolean alsoShow(Object filter){ switch(this.defaultState){ case HIDE_ALL: return this.deltaPool.add(filter); case SHOW_ALL: return this.deltaPool.remove(filter); default: throw new IllegalStateException("Unknown default state setting: " + this.defaultState); } }
java
public static systemuser_systemcmdpolicy_binding[] get(nitro_service service, String username) throws Exception{ systemuser_systemcmdpolicy_binding obj = new systemuser_systemcmdpolicy_binding(); obj.set_username(username); systemuser_systemcmdpolicy_binding response[] = (systemuser_systemcmdpolicy_binding[]) obj...
java
public static base_response add(nitro_service client, snmpcommunity resource) throws Exception { snmpcommunity addresource = new snmpcommunity(); addresource.communityname = resource.communityname; addresource.permissions = resource.permissions; return addresource.add_resource(client); }
java
public static base_responses add(nitro_service client, snmpcommunity resources[]) throws Exception { base_responses result = null; if (resources != null && resources.length > 0) { snmpcommunity addresources[] = new snmpcommunity[resources.length]; for (int i=0;i<resources.length;i++){ addresources[i] = ne...
java
public static base_response delete(nitro_service client, String communityname) throws Exception { snmpcommunity deleteresource = new snmpcommunity(); deleteresource.communityname = communityname; return deleteresource.delete_resource(client); }
java
public static base_responses delete(nitro_service client, String communityname[]) throws Exception { base_responses result = null; if (communityname != null && communityname.length > 0) { snmpcommunity deleteresources[] = new snmpcommunity[communityname.length]; for (int i=0;i<communityname.length;i++){ d...
java
public static snmpcommunity[] get(nitro_service service) throws Exception{ snmpcommunity obj = new snmpcommunity(); snmpcommunity[] response = (snmpcommunity[])obj.get_resources(service); return response; }
java
public static snmpcommunity get(nitro_service service, String communityname) throws Exception{ snmpcommunity obj = new snmpcommunity(); obj.set_communityname(communityname); snmpcommunity response = (snmpcommunity) obj.get_resource(service); return response; }
java
public static snmpcommunity[] get(nitro_service service, String communityname[]) throws Exception{ if (communityname !=null && communityname.length>0) { snmpcommunity response[] = new snmpcommunity[communityname.length]; snmpcommunity obj[] = new snmpcommunity[communityname.length]; for (int i=0;i<communityn...
java
public static sslservice_sslpolicy_binding[] get(nitro_service service, String servicename) throws Exception{ sslservice_sslpolicy_binding obj = new sslservice_sslpolicy_binding(); obj.set_servicename(servicename); sslservice_sslpolicy_binding response[] = (sslservice_sslpolicy_binding[]) obj.get_resources(servic...
java
public static vrid6_nsip6_binding[] get(nitro_service service, Long id) throws Exception{ vrid6_nsip6_binding obj = new vrid6_nsip6_binding(); obj.set_id(id); vrid6_nsip6_binding response[] = (vrid6_nsip6_binding[]) obj.get_resources(service); return response; }
java
public static base_response add(nitro_service client, policyexpression resource) throws Exception { policyexpression addresource = new policyexpression(); addresource.name = resource.name; addresource.value = resource.value; addresource.description = resource.description; addresource.comment = resource.commen...
java
public static base_responses add(nitro_service client, policyexpression resources[]) throws Exception { base_responses result = null; if (resources != null && resources.length > 0) { policyexpression addresources[] = new policyexpression[resources.length]; for (int i=0;i<resources.length;i++){ addresource...
java
public static base_response update(nitro_service client, policyexpression resource) throws Exception { policyexpression updateresource = new policyexpression(); updateresource.name = resource.name; updateresource.value = resource.value; updateresource.description = resource.description; updateresource.comment...
java
public static base_responses update(nitro_service client, policyexpression resources[]) throws Exception { base_responses result = null; if (resources != null && resources.length > 0) { policyexpression updateresources[] = new policyexpression[resources.length]; for (int i=0;i<resources.length;i++){ updat...
java
public static policyexpression[] get(nitro_service service) throws Exception{ policyexpression obj = new policyexpression(); policyexpression[] response = (policyexpression[])obj.get_resources(service); return response; }
java
public static policyexpression[] get(nitro_service service, policyexpression_args args) throws Exception{ policyexpression obj = new policyexpression(); options option = new options(); option.set_args(nitro_util.object_to_string_withoutquotes(args)); policyexpression[] response = (policyexpression[])obj.get_res...
java
public static policyexpression get(nitro_service service, String name) throws Exception{ policyexpression obj = new policyexpression(); obj.set_name(name); policyexpression response = (policyexpression) obj.get_resource(service); return response; }
java
public static systemdatasource get(nitro_service service) throws Exception{ systemdatasource obj = new systemdatasource(); systemdatasource[] response = (systemdatasource[])obj.get_resources(service); return response[0]; }
java
public static systemdatasource[] get(nitro_service service, systemdatasource_args args) throws Exception{ systemdatasource obj = new systemdatasource(); options option = new options(); option.set_args(nitro_util.object_to_string_withoutquotes(args)); systemdatasource[] response = (systemdatasource[])obj.get_res...
java
public static servicegroup_servicegroupentitymonbindings_binding[] get(nitro_service service, String servicegroupname) throws Exception{ servicegroup_servicegroupentitymonbindings_binding obj = new servicegroup_servicegroupentitymonbindings_binding(); obj.set_servicegroupname(servicegroupname); servicegroup_servi...
java
public static aaauser_auditnslogpolicy_binding[] get(nitro_service service, String username) throws Exception{ aaauser_auditnslogpolicy_binding obj = new aaauser_auditnslogpolicy_binding(); obj.set_username(username); aaauser_auditnslogpolicy_binding response[] = (aaauser_auditnslogpolicy_binding[]) obj.get_resou...
java
public static vpnglobal_staserver_binding[] get(nitro_service service) throws Exception{ vpnglobal_staserver_binding obj = new vpnglobal_staserver_binding(); vpnglobal_staserver_binding response[] = (vpnglobal_staserver_binding[]) obj.get_resources(service); return response; }
java
public static cmppolicy_cmppolicylabel_binding[] get(nitro_service service, String name) throws Exception{ cmppolicy_cmppolicylabel_binding obj = new cmppolicy_cmppolicylabel_binding(); obj.set_name(name); cmppolicy_cmppolicylabel_binding response[] = (cmppolicy_cmppolicylabel_binding[]) obj.get_resources(service...
java
public static base_response add(nitro_service client, dnssrvrec resource) throws Exception { dnssrvrec addresource = new dnssrvrec(); addresource.domain = resource.domain; addresource.target = resource.target; addresource.priority = resource.priority; addresource.weight = resource.weight; addresource.port =...
java
public static base_responses add(nitro_service client, dnssrvrec resources[]) throws Exception { base_responses result = null; if (resources != null && resources.length > 0) { dnssrvrec addresources[] = new dnssrvrec[resources.length]; for (int i=0;i<resources.length;i++){ addresources[i] = new dnssrvrec(...
java
public static base_response delete(nitro_service client, dnssrvrec resource) throws Exception { dnssrvrec deleteresource = new dnssrvrec(); deleteresource.domain = resource.domain; deleteresource.target = resource.target; return deleteresource.delete_resource(client); }
java
public static base_response update(nitro_service client, dnssrvrec resource) throws Exception { dnssrvrec updateresource = new dnssrvrec(); updateresource.domain = resource.domain; updateresource.target = resource.target; updateresource.priority = resource.priority; updateresource.weight = resource.weight; ...
java
public static base_responses update(nitro_service client, dnssrvrec resources[]) throws Exception { base_responses result = null; if (resources != null && resources.length > 0) { dnssrvrec updateresources[] = new dnssrvrec[resources.length]; for (int i=0;i<resources.length;i++){ updateresources[i] = new d...
java
public static base_response unset(nitro_service client, dnssrvrec resource, String[] args) throws Exception{ dnssrvrec unsetresource = new dnssrvrec(); unsetresource.domain = resource.domain; unsetresource.target = resource.target; return unsetresource.unset_resource(client,args); }
java
public static dnssrvrec[] get(nitro_service service) throws Exception{ dnssrvrec obj = new dnssrvrec(); dnssrvrec[] response = (dnssrvrec[])obj.get_resources(service); return response; }
java
public static dnssrvrec get(nitro_service service, dnssrvrec obj) throws Exception{ options option = new options(); option.set_args(nitro_util.object_to_string_withoutquotes(obj)); dnssrvrec response = (dnssrvrec) obj.get_resource(service,option); return response; }
java
public static dnssrvrec[] get(nitro_service service, dnssrvrec obj[]) throws Exception{ if (obj != null && obj.length > 0) { dnssrvrec response[] = new dnssrvrec[obj.length]; for (int i=0;i<obj.length;i++) { options option = new options(); option.set_args(nitro_util.object_to_string_withoutquotes(obj[i]...
java
public static dnssrvrec[] get(nitro_service service, dnssrvrec_args args) throws Exception{ dnssrvrec obj = new dnssrvrec(); options option = new options(); option.set_args(nitro_util.object_to_string_withoutquotes(args)); dnssrvrec[] response = (dnssrvrec[])obj.get_resources(service, option); return response...
java
public static vpnvserver_vpntrafficpolicy_binding[] get(nitro_service service, String name) throws Exception{ vpnvserver_vpntrafficpolicy_binding obj = new vpnvserver_vpntrafficpolicy_binding(); obj.set_name(name); vpnvserver_vpntrafficpolicy_binding response[] = (vpnvserver_vpntrafficpolicy_binding[]) obj.get_re...
java
public static autoscalepolicy_stats[] get(nitro_service service) throws Exception{ autoscalepolicy_stats obj = new autoscalepolicy_stats(); autoscalepolicy_stats[] response = (autoscalepolicy_stats[])obj.stat_resources(service); return response; }
java
public static autoscalepolicy_stats get(nitro_service service, String name) throws Exception{ autoscalepolicy_stats obj = new autoscalepolicy_stats(); obj.set_name(name); autoscalepolicy_stats response = (autoscalepolicy_stats) obj.stat_resource(service); return response; }
java
public static sslpolicylabel_binding get(nitro_service service, String labelname) throws Exception{ sslpolicylabel_binding obj = new sslpolicylabel_binding(); obj.set_labelname(labelname); sslpolicylabel_binding response = (sslpolicylabel_binding) obj.get_resource(service); return response; }
java
public static base_response enable(nitro_service client, nsmode resource) throws Exception { nsmode enableresource = new nsmode(); enableresource.mode = resource.mode; return enableresource.perform_operation(client,"enable"); }
java
public static base_response disable(nitro_service client, nsmode resource) throws Exception { nsmode disableresource = new nsmode(); disableresource.mode = resource.mode; return disableresource.perform_operation(client,"disable"); }
java
public static nsmode get(nitro_service service) throws Exception{ nsmode obj = new nsmode(); nsmode[] response = (nsmode[])obj.get_resources(service); return response[0]; }
java
public String to_string() { String str = ""; if (pageno > 0) str = "pageno="+pageno; if (pagesize > 0) { if (str.length() > 0) str = str + "&"; str = str +"pagesize="+pagesize; } if (detailview) { if (str.length() > 0) str = str + "&"; str = str +"view=detail"; ...
java
public static auditnslogpolicy_aaagroup_binding[] get(nitro_service service, String name) throws Exception{ auditnslogpolicy_aaagroup_binding obj = new auditnslogpolicy_aaagroup_binding(); obj.set_name(name); auditnslogpolicy_aaagroup_binding response[] = (auditnslogpolicy_aaagroup_binding[]) obj.get_resources(se...
java
private ArrayList<String> getFiles(String dir, String subDir) { ArrayList<String> files = new ArrayList<>(); String fullDir = subDir == null ? dir : dir + File.separator + subDir; File[] listOfFiles = (new File(fullDir)).listFiles(); if (listOfFiles != null) { for (File file : listOfFiles) { ...
java
@SuppressWarnings("unchecked") private static void getParamsFromJSON(Map<String, String> params, String json) { JSONParser parser = new JSONParser(json); try { Object o = ObjectBuilder.getVal(parser); if (!(o instanceof Map)) return; Map<String, Object> map = (Map<String, Object>) o;...
java
public ShardInformation getShardInformation(String shard) { ShardInformation shardInformation = shardIndex.get(Objects.requireNonNull(shard, "shard required")); if (shardInformation == null) { shardInformation = createShardInformation(shard); } return shardInformation; }
java
private ShardInformation createShardInformation(String shard) { ShardInformation shardInformation = new ShardInformation(shard); ModifiableSolrParams solrParams = new ModifiableSolrParams(); solrParams.add(CommonParams.Q, "*:*"); solrParams.add(CommonParams.ROWS, "0"); solrParams.add(CommonParams.HE...
java
public static nd6ravariables_binding get(nitro_service service, Long vlan) throws Exception{ nd6ravariables_binding obj = new nd6ravariables_binding(); obj.set_vlan(vlan); nd6ravariables_binding response = (nd6ravariables_binding) obj.get_resource(service); return response; }
java
public static bridgegroup_nsip6_binding[] get(nitro_service service, Long id) throws Exception{ bridgegroup_nsip6_binding obj = new bridgegroup_nsip6_binding(); obj.set_id(id); bridgegroup_nsip6_binding response[] = (bridgegroup_nsip6_binding[]) obj.get_resources(service); return response; }
java
public static ArrayList<MtasTreeHit<?>> advanceMtasTree(int position, IndexInput in, long ref, long objectRefApproxOffset) throws IOException { ArrayList<MtasTreeHit<?>> list = new ArrayList<MtasTreeHit<?>>(); ArrayList<MtasTreeItem> checkList = new ArrayList<MtasTreeItem>(); AtomicBoolean isSinglePoi...
java
private static MtasTreeItem getMtasTreeItem(Long ref, AtomicBoolean isSinglePoint, AtomicBoolean isStoreAdditionalIdAndRef, AtomicLong nodeRefApproxOffset, IndexInput in, long objectRefApproxOffset) throws IOException { try { Boolean isRoot = false; if (nodeRefApproxOffset.get() < 0) {...
java
public static base_response update(nitro_service client, sslfips resource) throws Exception { sslfips updateresource = new sslfips(); updateresource.inithsm = resource.inithsm; updateresource.sopassword = resource.sopassword; updateresource.oldsopassword = resource.oldsopassword; updateresource.userpassword =...
java
public static base_response unset(nitro_service client, sslfips resource, String[] args) throws Exception{ sslfips unsetresource = new sslfips(); return unsetresource.unset_resource(client,args); }
java
public static base_response reset(nitro_service client, sslfips resource) throws Exception { sslfips resetresource = new sslfips(); return resetresource.perform_operation(client,"reset"); }
java
public static base_response change(nitro_service client, sslfips resource) throws Exception { sslfips updateresource = new sslfips(); updateresource.fipsfw = resource.fipsfw; return updateresource.perform_operation(client,"update"); }
java
public static sslfips get(nitro_service service) throws Exception{ sslfips obj = new sslfips(); sslfips[] response = (sslfips[])obj.get_resources(service); return response[0]; }
java
public static vpntrafficpolicy_vpnvserver_binding[] get(nitro_service service, String name) throws Exception{ vpntrafficpolicy_vpnvserver_binding obj = new vpntrafficpolicy_vpnvserver_binding(); obj.set_name(name); vpntrafficpolicy_vpnvserver_binding response[] = (vpntrafficpolicy_vpnvserver_binding[]) obj.get_re...
java
public static systemuser_binding get(nitro_service service, String username) throws Exception{ systemuser_binding obj = new systemuser_binding(); obj.set_username(username); systemuser_binding response = (systemuser_binding) obj.get_resource(service); return response; }
java
public static base_response add(nitro_service client, filteraction resource) throws Exception { filteraction addresource = new filteraction(); addresource.name = resource.name; addresource.qual = resource.qual; addresource.servicename = resource.servicename; addresource.value = resource.value; addresource.r...
java
public static base_responses add(nitro_service client, filteraction resources[]) throws Exception { base_responses result = null; if (resources != null && resources.length > 0) { filteraction addresources[] = new filteraction[resources.length]; for (int i=0;i<resources.length;i++){ addresources[i] = new f...
java
public static base_response update(nitro_service client, filteraction resource) throws Exception { filteraction updateresource = new filteraction(); updateresource.name = resource.name; updateresource.servicename = resource.servicename; updateresource.value = resource.value; updateresource.respcode = resource...
java
public static base_responses update(nitro_service client, filteraction resources[]) throws Exception { base_responses result = null; if (resources != null && resources.length > 0) { filteraction updateresources[] = new filteraction[resources.length]; for (int i=0;i<resources.length;i++){ updateresources[i...
java
public static filteraction[] get(nitro_service service) throws Exception{ filteraction obj = new filteraction(); filteraction[] response = (filteraction[])obj.get_resources(service); return response; }
java
public static filteraction get(nitro_service service, String name) throws Exception{ filteraction obj = new filteraction(); obj.set_name(name); filteraction response = (filteraction) obj.get_resource(service); return response; }
java
public static cacheglobal_binding get(nitro_service service) throws Exception{ cacheglobal_binding obj = new cacheglobal_binding(); cacheglobal_binding response = (cacheglobal_binding) obj.get_resource(service); return response; }
java
public static base_response update(nitro_service client, aaapreauthenticationparameter resource) throws Exception { aaapreauthenticationparameter updateresource = new aaapreauthenticationparameter(); updateresource.preauthenticationaction = resource.preauthenticationaction; updateresource.rule = resource.rule; ...
java
public static base_response unset(nitro_service client, aaapreauthenticationparameter resource, String[] args) throws Exception{ aaapreauthenticationparameter unsetresource = new aaapreauthenticationparameter(); return unsetresource.unset_resource(client,args); }
java
public static aaapreauthenticationparameter get(nitro_service service, options option) throws Exception{ aaapreauthenticationparameter obj = new aaapreauthenticationparameter(); aaapreauthenticationparameter[] response = (aaapreauthenticationparameter[])obj.get_resources(service,option); return response[0]; }
java
public double get(int index) { // overridden for performance only. if (index >= size || index < 0) throw new IndexOutOfBoundsException("Index: "+index+", Size: "+size); return elements[index]; }
java
public void reverse() { // overridden for performance only. double tmp; int limit=size/2; int j=size-1; double[] theElements = elements; for (int i=0; i<limit;) { //swap tmp=theElements[i]; theElements[i++]=theElements[j]; theElements[j--]=tmp; } }
java
public void set(int index, double element) { // overridden for performance only. if (index >= size || index < 0) throw new IndexOutOfBoundsException("Index: "+index+", Size: "+size); elements[index] = element; }
java
public static gslbservice_dnsview_binding[] get(nitro_service service, String servicename) throws Exception{ gslbservice_dnsview_binding obj = new gslbservice_dnsview_binding(); obj.set_servicename(servicename); gslbservice_dnsview_binding response[] = (gslbservice_dnsview_binding[]) obj.get_resources(service); ...
java
public static long count_filtered(nitro_service service, String servicename, filtervalue[] filter) throws Exception{ gslbservice_dnsview_binding obj = new gslbservice_dnsview_binding(); obj.set_servicename(servicename); options option = new options(); option.set_count(true); option.set_filter(filter); gslbs...
java
public static responderpolicylabel_stats[] get(nitro_service service) throws Exception{ responderpolicylabel_stats obj = new responderpolicylabel_stats(); responderpolicylabel_stats[] response = (responderpolicylabel_stats[])obj.stat_resources(service); return response; }
java
public static responderpolicylabel_stats get(nitro_service service, String labelname) throws Exception{ responderpolicylabel_stats obj = new responderpolicylabel_stats(); obj.set_labelname(labelname); responderpolicylabel_stats response = (responderpolicylabel_stats) obj.stat_resource(service); return response;...
java
public static appflowpolicylabel_binding get(nitro_service service, String labelname) throws Exception{ appflowpolicylabel_binding obj = new appflowpolicylabel_binding(); obj.set_labelname(labelname); appflowpolicylabel_binding response = (appflowpolicylabel_binding) obj.get_resource(service); return response; ...
java