UnderAutomation.Fanuc 2.0.0.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- underautomation/__init__.py +0 -0
- underautomation/fanuc/__init__.py +0 -0
- underautomation/fanuc/common/__init__.py +0 -0
- underautomation/fanuc/common/arm_front_back.py +9 -0
- underautomation/fanuc/common/arm_left_right.py +9 -0
- underautomation/fanuc/common/arm_up_down.py +9 -0
- underautomation/fanuc/common/cartesian_position.py +37 -0
- underautomation/fanuc/common/cartesian_position_with_tool.py +21 -0
- underautomation/fanuc/common/cartesian_position_with_user_frame.py +18 -0
- underautomation/fanuc/common/configuration.py +62 -0
- underautomation/fanuc/common/digital_ports.py +15 -0
- underautomation/fanuc/common/extended_cartesian_position.py +49 -0
- underautomation/fanuc/common/ftp_connect_parameters.py +19 -0
- underautomation/fanuc/common/io_status.py +27 -0
- underautomation/fanuc/common/joints_position.py +71 -0
- underautomation/fanuc/common/position.py +38 -0
- underautomation/fanuc/common/program_type.py +9 -0
- underautomation/fanuc/common/rmi_connect_parameters.py +19 -0
- underautomation/fanuc/common/snpx_connect_parameters.py +19 -0
- underautomation/fanuc/common/task_status.py +10 -0
- underautomation/fanuc/common/telnet_connect_parameters.py +19 -0
- underautomation/fanuc/common/utils.py +17 -0
- underautomation/fanuc/common/wrist_flip.py +9 -0
- underautomation/fanuc/common/xyz_position.py +32 -0
- underautomation/fanuc/connection_parameters.py +52 -0
- underautomation/fanuc/fanuc_robot.py +46 -0
- underautomation/fanuc/ftp/__init__.py +0 -0
- underautomation/fanuc/ftp/diagnosis/__init__.py +0 -0
- underautomation/fanuc/ftp/diagnosis/current_position.py +20 -0
- underautomation/fanuc/ftp/diagnosis/current_position_reader.py +21 -0
- underautomation/fanuc/ftp/diagnosis/diagnosis_reader_2.py +17 -0
- underautomation/fanuc/ftp/diagnosis/feature.py +24 -0
- underautomation/fanuc/ftp/diagnosis/features.py +25 -0
- underautomation/fanuc/ftp/diagnosis/features_parser.py +21 -0
- underautomation/fanuc/ftp/diagnosis/group_position.py +27 -0
- underautomation/fanuc/ftp/diagnosis/header_section.py +27 -0
- underautomation/fanuc/ftp/diagnosis/io_state.py +20 -0
- underautomation/fanuc/ftp/diagnosis/io_state_parser.py +21 -0
- underautomation/fanuc/ftp/diagnosis/program_states.py +23 -0
- underautomation/fanuc/ftp/diagnosis/program_states_parser.py +21 -0
- underautomation/fanuc/ftp/diagnosis/safety_status.py +52 -0
- underautomation/fanuc/ftp/diagnosis/safety_status_parser.py +19 -0
- underautomation/fanuc/ftp/diagnosis/summary_diagnosis.py +36 -0
- underautomation/fanuc/ftp/diagnosis/summary_diagnosis_reader.py +16 -0
- underautomation/fanuc/ftp/diagnosis/task_history_data.py +43 -0
- underautomation/fanuc/ftp/diagnosis/task_state.py +38 -0
- underautomation/fanuc/ftp/fanuc_file_readers.py +53 -0
- underautomation/fanuc/ftp/ftp_client.py +15 -0
- underautomation/fanuc/ftp/ftp_file_system_object_type.py +9 -0
- underautomation/fanuc/ftp/ftp_list_item.py +34 -0
- underautomation/fanuc/ftp/internal/__init__.py +0 -0
- underautomation/fanuc/ftp/internal/file_reader.py +16 -0
- underautomation/fanuc/ftp/internal/file_reader_1.py +18 -0
- underautomation/fanuc/ftp/internal/ftp_client_base.py +56 -0
- underautomation/fanuc/ftp/internal/ftp_client_internal.py +13 -0
- underautomation/fanuc/ftp/internal/ftp_connect_parameters_base.py +24 -0
- underautomation/fanuc/ftp/internal/ftp_direct_file_handling.py +37 -0
- underautomation/fanuc/ftp/internal/ftp_known_variable_files.py +117 -0
- underautomation/fanuc/ftp/internal/i_fanuc_content.py +15 -0
- underautomation/fanuc/ftp/internal/i_file_reader.py +15 -0
- underautomation/fanuc/ftp/internal/i_file_reader_1.py +16 -0
- underautomation/fanuc/ftp/internal/section_parser.py +27 -0
- underautomation/fanuc/ftp/internal/section_parser_1.py +17 -0
- underautomation/fanuc/ftp/list/__init__.py +0 -0
- underautomation/fanuc/ftp/list/errall_section_item.py +29 -0
- underautomation/fanuc/ftp/list/error_list.py +20 -0
- underautomation/fanuc/ftp/list/error_list_reader.py +16 -0
- underautomation/fanuc/ftp/variables/__init__.py +0 -0
- underautomation/fanuc/ftp/variables/aavm_grp_variable_type.py +211 -0
- underautomation/fanuc/ftp/variables/aavm_wrk_variable_type.py +106 -0
- underautomation/fanuc/ftp/variables/aavmmain_file.py +234 -0
- underautomation/fanuc/ftp/variables/abspos_grp_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/adj_rtrq_variable_type.py +32 -0
- underautomation/fanuc/ftp/variables/aio_cnv_variable_type.py +43 -0
- underautomation/fanuc/ftp/variables/alm_if_variable_type.py +46 -0
- underautomation/fanuc/ftp/variables/almdg_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/amp_coef_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/amp_id_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/apcoupled_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/apcureq_variable_type.py +58 -0
- underautomation/fanuc/ftp/variables/appinfo_variable_type.py +35 -0
- underautomation/fanuc/ftp/variables/appinfoeq_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/arg_str_variable_type.py +79 -0
- underautomation/fanuc/ftp/variables/armld_pos_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/armload_p_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/armload_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/array_element.py +28 -0
- underautomation/fanuc/ftp/variables/asbn_cfg_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/at_cellsetup_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/auto_col_rec_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/autobackup_variable_type.py +82 -0
- underautomation/fanuc/ftp/variables/ax_ofs_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/axscrdcfg_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/back_edit_variable_type.py +55 -0
- underautomation/fanuc/ftp/variables/bbl_nt_wnd_variable_type.py +46 -0
- underautomation/fanuc/ftp/variables/bicsetup_file.py +16 -0
- underautomation/fanuc/ftp/variables/bigallow_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/bin_cfg_variable_type.py +43 -0
- underautomation/fanuc/ftp/variables/blal_out_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/calc_result_variable_type.py +70 -0
- underautomation/fanuc/ftp/variables/camera_variable_type.py +100 -0
- underautomation/fanuc/ftp/variables/cartesian_position_variable.py +22 -0
- underautomation/fanuc/ftp/variables/cbparam_file.py +97 -0
- underautomation/fanuc/ftp/variables/cell_grp_variable_type.py +60 -0
- underautomation/fanuc/ftp/variables/cellio_file.py +39 -0
- underautomation/fanuc/ftp/variables/cellset_variable_type.py +373 -0
- underautomation/fanuc/ftp/variables/cf_paramgp_variable_type.py +46 -0
- underautomation/fanuc/ftp/variables/cfcfg_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/chg_pri_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/chk_result_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/chkpos_variable_type.py +52 -0
- underautomation/fanuc/ftp/variables/clhist_variable_type.py +55 -0
- underautomation/fanuc/ftp/variables/clmlio_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/cmd_info_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/co_morgrp_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/co_paramgp_variable_type.py +49 -0
- underautomation/fanuc/ftp/variables/cocfg_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/collect_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/com_space_variable_type.py +92 -0
- underautomation/fanuc/ftp/variables/comset_file.py +76 -0
- underautomation/fanuc/ftp/variables/condet_cfg_variable_type.py +47 -0
- underautomation/fanuc/ftp/variables/condet_data_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/condet_grp_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/condet_io_variable_type.py +29 -0
- underautomation/fanuc/ftp/variables/condet_trgp_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/condet_trig_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/cp_mcrgrp_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/cp_morgrp_variable_type.py +58 -0
- underautomation/fanuc/ftp/variables/cp_paramgp_variable_type.py +146 -0
- underautomation/fanuc/ftp/variables/cp_t1_grp_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/cp_t1_mode_variable_type.py +43 -0
- underautomation/fanuc/ftp/variables/cp_test_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/cpcfg_variable_type.py +65 -0
- underautomation/fanuc/ftp/variables/cpdbg_variable_type.py +53 -0
- underautomation/fanuc/ftp/variables/cpidebug_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/crcfg_variable_type.py +106 -0
- underautomation/fanuc/ftp/variables/create_prg_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/ctrl_cab_variable_type.py +32 -0
- underautomation/fanuc/ftp/variables/current_pos_variable_type.py +29 -0
- underautomation/fanuc/ftp/variables/custommenu_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/db_dbg_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/db_record_variable_type.py +98 -0
- underautomation/fanuc/ftp/variables/dbg_errlog_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/dbinfo_variable_type.py +60 -0
- underautomation/fanuc/ftp/variables/dbpxwork_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/dbtb_ctrl_variable_type.py +49 -0
- underautomation/fanuc/ftp/variables/dbwork_variable_type.py +20 -0
- underautomation/fanuc/ftp/variables/dcs_cfg_variable_type.py +148 -0
- underautomation/fanuc/ftp/variables/dcs_crc_out_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/dcs_nocode_variable_type.py +16 -0
- underautomation/fanuc/ftp/variables/dcs_sgn_variable_type.py +46 -0
- underautomation/fanuc/ftp/variables/dcss_cnstcy_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/dcss_device_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/dcss_hndgd_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/dcss_ls_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/dcss_param_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/dcss_slave_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/deflogic_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/demo_init_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/det_io_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/dh_extra_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/dhcp_ctrl_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/dhcp_int_variable_type.py +43 -0
- underautomation/fanuc/ftp/variables/diag_grp_variable_type.py +166 -0
- underautomation/fanuc/ftp/variables/dict_cfg_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/diocfgsv_file.py +91 -0
- underautomation/fanuc/ftp/variables/dmr_grp_variable_type.py +110 -0
- underautomation/fanuc/ftp/variables/dmr_shferr_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/dmsw_cfg_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/dns_cfg_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/dnss_cfg_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/docviewer_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/drc_cfg_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/dryrun_port_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/dryrun_variable_type.py +82 -0
- underautomation/fanuc/ftp/variables/dsbl_fault_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/dtrec_variable_type.py +82 -0
- underautomation/fanuc/ftp/variables/dyn_brk_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/edt_recent_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/eff_axis_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/enc_info_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/enc_stat_variable_type.py +94 -0
- underautomation/fanuc/ftp/variables/enetmode_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/eoatcfg_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/eoatdata_variable_type.py +118 -0
- underautomation/fanuc/ftp/variables/er_noalm_variable_type.py +142 -0
- underautomation/fanuc/ftp/variables/er_noauto_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/erpost_log_variable_type.py +26 -0
- underautomation/fanuc/ftp/variables/err_mask_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/ext_set_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/fdot_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/fdr_grp_variable_type.py +82 -0
- underautomation/fanuc/ftp/variables/feature_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/file_back_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/file_setup2_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/file_setup_variable_type.py +44 -0
- underautomation/fanuc/ftp/variables/filecomp_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/fileconfig_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/fltr_ovrn_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/flui_cfg_variable_type.py +67 -0
- underautomation/fanuc/ftp/variables/flui_data_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/flui_res_variable_type.py +48 -0
- underautomation/fanuc/ftp/variables/fmr2_grp_variable_type.py +76 -0
- underautomation/fanuc/ftp/variables/fmr_cfg_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/fms_grp_variable_type.py +71 -0
- underautomation/fanuc/ftp/variables/fsac_lst_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/fssb_cfg_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/ftp_ctrl_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/fx_trigger_variable_type.py +43 -0
- underautomation/fanuc/ftp/variables/gemdata_file.py +25 -0
- underautomation/fanuc/ftp/variables/generic_field.py +37 -0
- underautomation/fanuc/ftp/variables/generic_value.py +42 -0
- underautomation/fanuc/ftp/variables/generic_variable.py +23 -0
- underautomation/fanuc/ftp/variables/generic_variable_file.py +35 -0
- underautomation/fanuc/ftp/variables/generic_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/generic_variable_type_helpers.py +19 -0
- underautomation/fanuc/ftp/variables/glofatt_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/glofset_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/gp_hold_variable_type.py +58 -0
- underautomation/fanuc/ftp/variables/gp_status_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/gravc_grp_variable_type.py +46 -0
- underautomation/fanuc/ftp/variables/grsmt_grp_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/hist_day_variable_type.py +29 -0
- underautomation/fanuc/ftp/variables/hist_ele_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/host_cfg_variable_type.py +67 -0
- underautomation/fanuc/ftp/variables/hostent_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/hscd_grp_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/hscd_mng_variable_type.py +73 -0
- underautomation/fanuc/ftp/variables/htcolrec_file.py +26 -0
- underautomation/fanuc/ftp/variables/http_auth_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/http_variable_type.py +55 -0
- underautomation/fanuc/ftp/variables/httpkcl_file.py +37 -0
- underautomation/fanuc/ftp/variables/hwr_config_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/i_generic_variable_type.py +21 -0
- underautomation/fanuc/ftp/variables/interact_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/intrac_d_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/intrac_n_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/io_def_asg_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/io_uop_cfg_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/iolnk_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/ioslave_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/irc_counter_file.py +56 -0
- underautomation/fanuc/ftp/variables/irc_gnrc_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/irc_msg_file.py +53 -0
- underautomation/fanuc/ftp/variables/irc_status_file.py +53 -0
- underautomation/fanuc/ftp/variables/irc_stlabel_file.py +53 -0
- underautomation/fanuc/ftp/variables/irca_cnf_variable_type.py +55 -0
- underautomation/fanuc/ftp/variables/irprog_cfg_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/item_acc_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/item_buff_el_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/item_name_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/j2red_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/j3d_pld_cal_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/jcr_grp_variable_type.py +88 -0
- underautomation/fanuc/ftp/variables/jcr_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/jinc_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/jog_rad_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/joint_position_variable.py +22 -0
- underautomation/fanuc/ftp/variables/karel_cfg_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/karelmon_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/klaction_file.py +31 -0
- underautomation/fanuc/ftp/variables/lgcfg_variable_type.py +121 -0
- underautomation/fanuc/ftp/variables/ln_disp_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/log_alarm_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/log_buff_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/log_dcs_variable_type.py +56 -0
- underautomation/fanuc/ftp/variables/log_dio_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/log_scrn_fl_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/logbook_variable_type.py +217 -0
- underautomation/fanuc/ftp/variables/max_pld_cal_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/mcr_grp_variable_type.py +217 -0
- underautomation/fanuc/ftp/variables/mcr_variable_type.py +97 -0
- underautomation/fanuc/ftp/variables/mcsp_grp_variable_type.py +43 -0
- underautomation/fanuc/ftp/variables/mcsp_variable_type.py +55 -0
- underautomation/fanuc/ftp/variables/memo_memo_variable_type.py +43 -0
- underautomation/fanuc/ftp/variables/mfrq_cfg_variable_type.py +52 -0
- underautomation/fanuc/ftp/variables/mfrq_grp_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/mgdebug_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/misc_grp_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/misc_mstr_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/misc_scd_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/mix_bg_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/mix_logic_variable_type.py +95 -0
- underautomation/fanuc/ftp/variables/mix_mkr_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/mixlogic_file.py +40 -0
- underautomation/fanuc/ftp/variables/mkcfg_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/mltarm_cfg_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/mn_mcr_sop_variable_type.py +58 -0
- underautomation/fanuc/ftp/variables/mn_mcr_table_variable_type.py +49 -0
- underautomation/fanuc/ftp/variables/mn_mcr_uop_variable_type.py +70 -0
- underautomation/fanuc/ftp/variables/mndsp_mst_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/mndsppstl_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/modaq_cfg_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/modem_inf_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/moptimiz_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/mor_grp_sv_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/mor_grp_variable_type.py +305 -0
- underautomation/fanuc/ftp/variables/mor_variable_type.py +105 -0
- underautomation/fanuc/ftp/variables/motion_dbg_variable_type.py +56 -0
- underautomation/fanuc/ftp/variables/mouse_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/mr_hist_variable_type.py +52 -0
- underautomation/fanuc/ftp/variables/mrr2_grp_variable_type.py +162 -0
- underautomation/fanuc/ftp/variables/mrr_grp_variable_type.py +785 -0
- underautomation/fanuc/ftp/variables/msk_ce_grp_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/mtcom_cfg_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/mtparam_file.py +148 -0
- underautomation/fanuc/ftp/variables/numreg_file.py +19 -0
- underautomation/fanuc/ftp/variables/on_path_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/optstate_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/opwork_variable_type.py +70 -0
- underautomation/fanuc/ftp/variables/ovrd_setup_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/ovrdslct_variable_type.py +49 -0
- underautomation/fanuc/ftp/variables/palreg_file.py +19 -0
- underautomation/fanuc/ftp/variables/passname_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/password_variable_type.py +82 -0
- underautomation/fanuc/ftp/variables/pf_cfg_variable_type.py +116 -0
- underautomation/fanuc/ftp/variables/pf_data_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/pf_enhance_variable_type.py +46 -0
- underautomation/fanuc/ftp/variables/pf_pref_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/pg_cfg_variable_type.py +79 -0
- underautomation/fanuc/ftp/variables/pg_defspd_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/pgmaxspd_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/pinfo_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/ping_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/pipe_cfg_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/pl_res_g_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/plcfg_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/plcl_grp_variable_type.py +49 -0
- underautomation/fanuc/ftp/variables/plid_cfg_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/plid_cllb_variable_type.py +98 -0
- underautomation/fanuc/ftp/variables/plid_grp_variable_type.py +320 -0
- underautomation/fanuc/ftp/variables/plid_sv_variable_type.py +82 -0
- underautomation/fanuc/ftp/variables/plim_grp_variable_type.py +52 -0
- underautomation/fanuc/ftp/variables/plmr_grp_variable_type.py +49 -0
- underautomation/fanuc/ftp/variables/plst_grp_variable_type.py +43 -0
- underautomation/fanuc/ftp/variables/pmon_que_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/pocfg_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/podata_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/poinfo_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/poio_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/pos_edit_variable_type.py +49 -0
- underautomation/fanuc/ftp/variables/position_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/posreg_file.py +20 -0
- underautomation/fanuc/ftp/variables/pppcfg_lst_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/prgadj_sch_variable_type.py +76 -0
- underautomation/fanuc/ftp/variables/prgadj_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/prgns_cfg_variable_type.py +64 -0
- underautomation/fanuc/ftp/variables/prgns_elem_variable_type.py +67 -0
- underautomation/fanuc/ftp/variables/prgns_grp_variable_type.py +44 -0
- underautomation/fanuc/ftp/variables/prgns_pref_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/protoent_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/proxy_cfg_variable_type.py +52 -0
- underautomation/fanuc/ftp/variables/pslgset_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/pslgtemp_variable_type.py +136 -0
- underautomation/fanuc/ftp/variables/pssave_grp_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/pssave_variable_type.py +85 -0
- underautomation/fanuc/ftp/variables/pulco_idata_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/pwrup_dly_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/qskip_grp_variable_type.py +52 -0
- underautomation/fanuc/ftp/variables/rcmcfg_variable_type.py +203 -0
- underautomation/fanuc/ftp/variables/rdcr_grp_variable_type.py +47 -0
- underautomation/fanuc/ftp/variables/rdm_cfg_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/recloc_variable_type.py +20 -0
- underautomation/fanuc/ftp/variables/recovery_variable_type.py +61 -0
- underautomation/fanuc/ftp/variables/redprot_cfg_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/redprot_grp_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/refpos11_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/refpos21_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/refpos31_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/refpos41_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/refpos51_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/refpos61_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/refpos71_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/refpos81_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/refpsmsk_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/remote_cfg_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/repower_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/req_data_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/restart_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/resume_ofst_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/rs232_cfg_variable_type.py +49 -0
- underautomation/fanuc/ftp/variables/rsch_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/rspace_variable_type.py +116 -0
- underautomation/fanuc/ftp/variables/rspaceg_variable_type.py +27 -0
- underautomation/fanuc/ftp/variables/rspacesr_variable_type.py +58 -0
- underautomation/fanuc/ftp/variables/sbr2_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/sbr_variable_type.py +43 -0
- underautomation/fanuc/ftp/variables/scr_grp_variable_type.py +417 -0
- underautomation/fanuc/ftp/variables/scr_variable_type.py +508 -0
- underautomation/fanuc/ftp/variables/servent_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/sfzn_cfg_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/sfzn_grp_variable_type.py +46 -0
- underautomation/fanuc/ftp/variables/shell_cfg_variable_type.py +175 -0
- underautomation/fanuc/ftp/variables/shell_chk_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/shell_comm_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/shell_wrk_variable_type.py +127 -0
- underautomation/fanuc/ftp/variables/simiofwdlm_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/smb_clnt_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/smb_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/smh_made_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/smtp_ctrl_variable_type.py +43 -0
- underautomation/fanuc/ftp/variables/snpx_asg_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/snpx_param_variable_type.py +61 -0
- underautomation/fanuc/ftp/variables/sntp_cfg_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/sntp_custom_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/sscbk_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/ssr_variable_type.py +52 -0
- underautomation/fanuc/ftp/variables/stop_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/strreg_file.py +19 -0
- underautomation/fanuc/ftp/variables/sv_info_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/svdt_grp_variable_type.py +400 -0
- underautomation/fanuc/ftp/variables/svprm_upd_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/swiupdt_file.py +16 -0
- underautomation/fanuc/ftp/variables/sycldint_file.py +49 -0
- underautomation/fanuc/ftp/variables/symotn_file.py +149 -0
- underautomation/fanuc/ftp/variables/synosave_file.py +192 -0
- underautomation/fanuc/ftp/variables/sys_time_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/sysframe_file.py +33 -0
- underautomation/fanuc/ftp/variables/sysfsac_file.py +23 -0
- underautomation/fanuc/ftp/variables/syshost_file.py +79 -0
- underautomation/fanuc/ftp/variables/syslog_sav_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/syslog_variable_type.py +58 -0
- underautomation/fanuc/ftp/variables/sysmacro_file.py +43 -0
- underautomation/fanuc/ftp/variables/sysmast_file.py +25 -0
- underautomation/fanuc/ftp/variables/syspass_file.py +24 -0
- underautomation/fanuc/ftp/variables/sysservo_file.py +21 -0
- underautomation/fanuc/ftp/variables/system_file.py +2232 -0
- underautomation/fanuc/ftp/variables/system_timer_variable_type.py +52 -0
- underautomation/fanuc/ftp/variables/sysuif_file.py +29 -0
- underautomation/fanuc/ftp/variables/t2mode_lim_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/t2spdlim_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/tbc2_grp_variable_type.py +52 -0
- underautomation/fanuc/ftp/variables/tbc_acc_variable_type.py +151 -0
- underautomation/fanuc/ftp/variables/tbc_grp_variable_type.py +104 -0
- underautomation/fanuc/ftp/variables/tbccfg_variable_type.py +38 -0
- underautomation/fanuc/ftp/variables/tbcparam_variable_type.py +70 -0
- underautomation/fanuc/ftp/variables/tbcsg_grp_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/tbj2_grp_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/tbj_acc_variable_type.py +190 -0
- underautomation/fanuc/ftp/variables/tbj_grp_variable_type.py +125 -0
- underautomation/fanuc/ftp/variables/tbjcfg_variable_type.py +53 -0
- underautomation/fanuc/ftp/variables/tbjop_grp_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/tbparam_variable_type.py +124 -0
- underautomation/fanuc/ftp/variables/tcol_line_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/tcpipcfg_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/thr_cfg_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/timer_variable_type.py +58 -0
- underautomation/fanuc/ftp/variables/torqctrl_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/tp_curscrn_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/tp_thr_table_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/tpgl_cam_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/tpgl_conf_variable_type.py +115 -0
- underautomation/fanuc/ftp/variables/tpgl_mset_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/tpgl_out_variable_type.py +44 -0
- underautomation/fanuc/ftp/variables/tpgl_uview_variable_type.py +26 -0
- underautomation/fanuc/ftp/variables/tpgl_view_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/tpglmach_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/tpp_mon_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/tpsnap_file.py +82 -0
- underautomation/fanuc/ftp/variables/tpstrtchk_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/tpvwvar_variable_type.py +55 -0
- underautomation/fanuc/ftp/variables/trace_cfg_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/trace_chnl_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/trace_item_variable_type.py +46 -0
- underautomation/fanuc/ftp/variables/tracectl_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/tracedt_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/traceup_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/tscfg_variable_type.py +76 -0
- underautomation/fanuc/ftp/variables/tsr_grp_variable_type.py +79 -0
- underautomation/fanuc/ftp/variables/tsscb_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/tune_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/tutorial_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/tv_config_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/tv_output_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/tx_variable_type.py +79 -0
- underautomation/fanuc/ftp/variables/txram_variable_type.py +52 -0
- underautomation/fanuc/ftp/variables/txscreen_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/uecfg_variable_type.py +44 -0
- underautomation/fanuc/ftp/variables/uegrp_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/ui_config_variable_type.py +235 -0
- underautomation/fanuc/ftp/variables/ui_custom_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/ui_fctnfav_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/ui_fkeydat_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/ui_menhis_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/ui_panedat_variable_type.py +62 -0
- underautomation/fanuc/ftp/variables/ui_panelnk_variable_type.py +46 -0
- underautomation/fanuc/ftp/variables/ui_topmenu_variable_type.py +40 -0
- underautomation/fanuc/ftp/variables/ui_usrview_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/ujr_grp_variable_type.py +56 -0
- underautomation/fanuc/ftp/variables/umr_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/undo_cfg_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/upr_variable_type.py +152 -0
- underautomation/fanuc/ftp/variables/user_info_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/user_offst_variable_type.py +36 -0
- underautomation/fanuc/ftp/variables/user_tool_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/user_ufram_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/user_work_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/usr_ev_cfg_variable_type.py +43 -0
- underautomation/fanuc/ftp/variables/usr_ev_wrk_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/usrtol_grp_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/value_kind.py +10 -0
- underautomation/fanuc/ftp/variables/variable_file.py +15 -0
- underautomation/fanuc/ftp/variables/variable_file_list.py +26 -0
- underautomation/fanuc/ftp/variables/variable_reader.py +165 -0
- underautomation/fanuc/ftp/variables/variable_reader_1.py +16 -0
- underautomation/fanuc/ftp/variables/vars_config_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/vcal_mv_variable_type.py +35 -0
- underautomation/fanuc/ftp/variables/vcal_vd_variable_type.py +78 -0
- underautomation/fanuc/ftp/variables/vcal_vf_variable_type.py +43 -0
- underautomation/fanuc/ftp/variables/vcmr_grp_variable_type.py +75 -0
- underautomation/fanuc/ftp/variables/vcmr_trgt_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/vcmrinit_file.py +56 -0
- underautomation/fanuc/ftp/variables/vcrsm_cfg_variable_type.py +25 -0
- underautomation/fanuc/ftp/variables/vcwm_cfg_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/vcwm_grp_variable_type.py +133 -0
- underautomation/fanuc/ftp/variables/vector_variable.py +33 -0
- underautomation/fanuc/ftp/variables/via_work_variable_type.py +47 -0
- underautomation/fanuc/ftp/variables/view_variable_type.py +37 -0
- underautomation/fanuc/ftp/variables/vis_ge_cfg_variable_type.py +43 -0
- underautomation/fanuc/ftp/variables/vis_logreg_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/vision_cfg_variable_type.py +175 -0
- underautomation/fanuc/ftp/variables/vision_grp_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/vlexe_cfg_variable_type.py +34 -0
- underautomation/fanuc/ftp/variables/vrtd_filt_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/vsft_cfg_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/vsmo_cfg_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/vsmo_pls_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/vsmo_tmp_variable_type.py +59 -0
- underautomation/fanuc/ftp/variables/vsmo_val_variable_type.py +23 -0
- underautomation/fanuc/ftp/variables/vtcpset_variable_type.py +49 -0
- underautomation/fanuc/ftp/variables/vzdt_cfg_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/wait_data_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/xf_variable_type.py +29 -0
- underautomation/fanuc/ftp/variables/xvrcfg_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/zabc_grp_variable_type.py +19 -0
- underautomation/fanuc/ftp/variables/zdt_actvspt_variable_type.py +58 -0
- underautomation/fanuc/ftp/variables/zdt_dcschg_variable_type.py +31 -0
- underautomation/fanuc/ftp/variables/zip_cfg_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/zmpcf_grp_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/zmpos_grp_variable_type.py +74 -0
- underautomation/fanuc/ftp/variables/zp_cfg_variable_type.py +22 -0
- underautomation/fanuc/ftp/variables/zp_cylinder_variable_type.py +28 -0
- underautomation/fanuc/ftp/variables/zp_grp_variable_type.py +49 -0
- underautomation/fanuc/ftp/variables/zp_sphere_variable_type.py +25 -0
- underautomation/fanuc/lib/UnderAutomation.Fanuc.dll +0 -0
- underautomation/fanuc/lib/version.txt +1 -0
- underautomation/fanuc/license/__init__.py +0 -0
- underautomation/fanuc/license/invalid_license_exception.py +16 -0
- underautomation/fanuc/license/license_info.py +48 -0
- underautomation/fanuc/license/license_state.py +12 -0
- underautomation/fanuc/rmi/__init__.py +0 -0
- underautomation/fanuc/rmi/data/__init__.py +0 -0
- underautomation/fanuc/rmi/data/cartesian_position.py +27 -0
- underautomation/fanuc/rmi/data/command_verb.py +27 -0
- underautomation/fanuc/rmi/data/communication_verb.py +10 -0
- underautomation/fanuc/rmi/data/controller_error_text.py +19 -0
- underautomation/fanuc/rmi/data/controller_status.py +61 -0
- underautomation/fanuc/rmi/data/digital_input_value.py +25 -0
- underautomation/fanuc/rmi/data/frame.py +66 -0
- underautomation/fanuc/rmi/data/indexed_frame.py +26 -0
- underautomation/fanuc/rmi/data/instruction_verb.py +21 -0
- underautomation/fanuc/rmi/data/joint_angles.py +66 -0
- underautomation/fanuc/rmi/data/joint_angles_sample.py +20 -0
- underautomation/fanuc/rmi/data/motion_configuration.py +66 -0
- underautomation/fanuc/rmi/data/on_off.py +8 -0
- underautomation/fanuc/rmi/data/port_type.py +8 -0
- underautomation/fanuc/rmi/data/position_register_data.py +33 -0
- underautomation/fanuc/rmi/data/rmi_message_kind.py +9 -0
- underautomation/fanuc/rmi/data/rmi_response_base.py +18 -0
- underautomation/fanuc/rmi/data/rmi_sequence_response.py +19 -0
- underautomation/fanuc/rmi/data/rmi_timed_response.py +19 -0
- underautomation/fanuc/rmi/data/speed_type.py +10 -0
- underautomation/fanuc/rmi/data/tcp_speed.py +19 -0
- underautomation/fanuc/rmi/data/termination_type.py +9 -0
- underautomation/fanuc/rmi/data/u_frame_u_tool_numbers.py +25 -0
- underautomation/fanuc/rmi/internal/__init__.py +0 -0
- underautomation/fanuc/rmi/internal/rmi_client_base.py +119 -0
- underautomation/fanuc/rmi/internal/rmi_client_internal.py +13 -0
- underautomation/fanuc/rmi/internal/rmi_connect_parameters_base.py +48 -0
- underautomation/fanuc/rmi/rmi_client.py +15 -0
- underautomation/fanuc/rmi/rmi_exception.py +15 -0
- underautomation/fanuc/snpx/__init__.py +0 -0
- underautomation/fanuc/snpx/assignment/__init__.py +0 -0
- underautomation/fanuc/snpx/assignment/integer_system_variables_batch_assignment.py +15 -0
- underautomation/fanuc/snpx/assignment/numeric_registers_batch_assignment.py +15 -0
- underautomation/fanuc/snpx/assignment/position_registers_batch_assignment.py +16 -0
- underautomation/fanuc/snpx/assignment/position_system_variables_batch_assignment.py +16 -0
- underautomation/fanuc/snpx/assignment/real_system_variables_batch_assignment.py +15 -0
- underautomation/fanuc/snpx/assignment/string_registers_batch_assignment.py +15 -0
- underautomation/fanuc/snpx/assignment/string_system_variables_batch_assignment.py +15 -0
- underautomation/fanuc/snpx/internal/__init__.py +0 -0
- underautomation/fanuc/snpx/internal/alarm_access.py +14 -0
- underautomation/fanuc/snpx/internal/alarm_id.py +102 -0
- underautomation/fanuc/snpx/internal/alarm_severity.py +17 -0
- underautomation/fanuc/snpx/internal/alarm_type.py +8 -0
- underautomation/fanuc/snpx/internal/assignment.py +23 -0
- underautomation/fanuc/snpx/internal/assignment_1.py +17 -0
- underautomation/fanuc/snpx/internal/batch_assignment_2.py +23 -0
- underautomation/fanuc/snpx/internal/current_position.py +19 -0
- underautomation/fanuc/snpx/internal/current_position_request.py +24 -0
- underautomation/fanuc/snpx/internal/current_task_status.py +14 -0
- underautomation/fanuc/snpx/internal/digital_signals.py +29 -0
- underautomation/fanuc/snpx/internal/integer_system_variables.py +14 -0
- underautomation/fanuc/snpx/internal/numeric_io.py +29 -0
- underautomation/fanuc/snpx/internal/numeric_registers.py +16 -0
- underautomation/fanuc/snpx/internal/position_registers.py +22 -0
- underautomation/fanuc/snpx/internal/position_system_variables.py +20 -0
- underautomation/fanuc/snpx/internal/real_system_variables.py +14 -0
- underautomation/fanuc/snpx/internal/robot_alarm.py +75 -0
- underautomation/fanuc/snpx/internal/robot_task_state.py +9 -0
- underautomation/fanuc/snpx/internal/robot_task_status.py +42 -0
- underautomation/fanuc/snpx/internal/segment_name.py +24 -0
- underautomation/fanuc/snpx/internal/segment_offset.py +17 -0
- underautomation/fanuc/snpx/internal/segment_selector.py +27 -0
- underautomation/fanuc/snpx/internal/snpx_assignable_elements_2.py +20 -0
- underautomation/fanuc/snpx/internal/snpx_client_base.py +128 -0
- underautomation/fanuc/snpx/internal/snpx_client_internal.py +13 -0
- underautomation/fanuc/snpx/internal/snpx_connect_parameters_base.py +24 -0
- underautomation/fanuc/snpx/internal/snpx_elements_2.py +16 -0
- underautomation/fanuc/snpx/internal/snpx_writable_assignable_elements_3.py +20 -0
- underautomation/fanuc/snpx/internal/string_registers.py +16 -0
- underautomation/fanuc/snpx/internal/string_system_variables.py +14 -0
- underautomation/fanuc/snpx/snpx_client.py +15 -0
- underautomation/fanuc/telnet/__init__.py +0 -0
- underautomation/fanuc/telnet/abort_result.py +13 -0
- underautomation/fanuc/telnet/add_breakpoint_result.py +13 -0
- underautomation/fanuc/telnet/base_result.py +13 -0
- underautomation/fanuc/telnet/breakpoint.py +15 -0
- underautomation/fanuc/telnet/breakpoints_result.py +17 -0
- underautomation/fanuc/telnet/command_sent_event_args.py +18 -0
- underautomation/fanuc/telnet/continue_result.py +13 -0
- underautomation/fanuc/telnet/custom_command_result.py +18 -0
- underautomation/fanuc/telnet/get_current_pose_result.py +22 -0
- underautomation/fanuc/telnet/get_variable_result.py +18 -0
- underautomation/fanuc/telnet/internal/__init__.py +0 -0
- underautomation/fanuc/telnet/internal/telnet_client_base.py +128 -0
- underautomation/fanuc/telnet/internal/telnet_client_internal.py +13 -0
- underautomation/fanuc/telnet/internal/telnet_connect_parameters_base.py +18 -0
- underautomation/fanuc/telnet/kcl_client_error_event_args.py +18 -0
- underautomation/fanuc/telnet/kcl_command_received.py +19 -0
- underautomation/fanuc/telnet/kcl_ports.py +17 -0
- underautomation/fanuc/telnet/message_received_event_args.py +21 -0
- underautomation/fanuc/telnet/pause_result.py +13 -0
- underautomation/fanuc/telnet/program_command_result.py +13 -0
- underautomation/fanuc/telnet/raw_data_received_event_args.py +18 -0
- underautomation/fanuc/telnet/remove_breakpoint_result.py +13 -0
- underautomation/fanuc/telnet/reset_result.py +13 -0
- underautomation/fanuc/telnet/result.py +23 -0
- underautomation/fanuc/telnet/run_result.py +13 -0
- underautomation/fanuc/telnet/set_port_result.py +13 -0
- underautomation/fanuc/telnet/set_value_result.py +21 -0
- underautomation/fanuc/telnet/set_variable_result.py +13 -0
- underautomation/fanuc/telnet/simulate_result.py +13 -0
- underautomation/fanuc/telnet/step_off_result.py +13 -0
- underautomation/fanuc/telnet/step_on_result.py +13 -0
- underautomation/fanuc/telnet/task_information_result.py +47 -0
- underautomation/fanuc/telnet/telnet_client.py +15 -0
- underautomation/fanuc/telnet/tp_coordinates.py +12 -0
- underautomation/fanuc/telnet/tp_coordinates_received_event_args.py +19 -0
- underautomation/fanuc/telnet/unsimulate_all_result.py +13 -0
- underautomation/fanuc/telnet/unsimulate_result.py +13 -0
- underautomation/fanuc/telnet/variable_result.py +13 -0
- underautomation/fanuc/telnet/variables_result.py +13 -0
- underautomation_fanuc-2.0.0.1.dist-info/METADATA +210 -0
- underautomation_fanuc-2.0.0.1.dist-info/RECORD +667 -0
- underautomation_fanuc-2.0.0.1.dist-info/WHEEL +5 -0
- underautomation_fanuc-2.0.0.1.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,2232 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
from underautomation.fanuc.ftp.variables.aavm_wrk_variable_type import AavmWrkVariableType
|
|
3
|
+
from underautomation.fanuc.ftp.variables.abspos_grp_variable_type import AbsposGrpVariableType
|
|
4
|
+
from underautomation.fanuc.ftp.variables.aio_cnv_variable_type import AioCnvVariableType
|
|
5
|
+
from underautomation.fanuc.ftp.variables.almdg_variable_type import AlmdgVariableType
|
|
6
|
+
from underautomation.fanuc.ftp.variables.alm_if_variable_type import AlmIfVariableType
|
|
7
|
+
from underautomation.fanuc.ftp.variables.appinfo_variable_type import AppinfoVariableType
|
|
8
|
+
from underautomation.fanuc.ftp.variables.apcoupled_variable_type import ApcoupledVariableType
|
|
9
|
+
from underautomation.fanuc.ftp.variables.apcureq_variable_type import ApcureqVariableType
|
|
10
|
+
from underautomation.fanuc.ftp.variables.arg_str_variable_type import ArgStrVariableType
|
|
11
|
+
from underautomation.fanuc.ftp.variables.asbn_cfg_variable_type import AsbnCfgVariableType
|
|
12
|
+
from underautomation.fanuc.ftp.variables.at_cellsetup_variable_type import AtCellsetupVariableType
|
|
13
|
+
from underautomation.fanuc.ftp.variables.autobackup_variable_type import AutobackupVariableType
|
|
14
|
+
from underautomation.fanuc.ftp.variables.joint_position_variable import JointPositionVariable
|
|
15
|
+
from underautomation.fanuc.ftp.variables.axscrdcfg_variable_type import AxscrdcfgVariableType
|
|
16
|
+
from underautomation.fanuc.ftp.variables.back_edit_variable_type import BackEditVariableType
|
|
17
|
+
from underautomation.fanuc.ftp.variables.bigallow_variable_type import BigallowVariableType
|
|
18
|
+
from underautomation.fanuc.ftp.variables.blal_out_variable_type import BlalOutVariableType
|
|
19
|
+
from underautomation.fanuc.ftp.variables.cfcfg_variable_type import CfcfgVariableType
|
|
20
|
+
from underautomation.fanuc.ftp.variables.chg_pri_variable_type import ChgPriVariableType
|
|
21
|
+
from underautomation.fanuc.ftp.variables.chkpos_variable_type import ChkposVariableType
|
|
22
|
+
from underautomation.fanuc.ftp.variables.cmd_info_variable_type import CmdInfoVariableType
|
|
23
|
+
from underautomation.fanuc.ftp.variables.cocfg_variable_type import CocfgVariableType
|
|
24
|
+
from underautomation.fanuc.ftp.variables.collect_variable_type import CollectVariableType
|
|
25
|
+
from underautomation.fanuc.ftp.variables.condet_cfg_variable_type import CondetCfgVariableType
|
|
26
|
+
from underautomation.fanuc.ftp.variables.condet_grp_variable_type import CondetGrpVariableType
|
|
27
|
+
from underautomation.fanuc.ftp.variables.condet_io_variable_type import CondetIoVariableType
|
|
28
|
+
from underautomation.fanuc.ftp.variables.condet_trgp_variable_type import CondetTrgpVariableType
|
|
29
|
+
from underautomation.fanuc.ftp.variables.condet_trig_variable_type import CondetTrigVariableType
|
|
30
|
+
from underautomation.fanuc.ftp.variables.co_morgrp_variable_type import CoMorgrpVariableType
|
|
31
|
+
from underautomation.fanuc.ftp.variables.co_paramgp_variable_type import CoParamgpVariableType
|
|
32
|
+
from underautomation.fanuc.ftp.variables.cpcfg_variable_type import CpcfgVariableType
|
|
33
|
+
from underautomation.fanuc.ftp.variables.cpdbg_variable_type import CpdbgVariableType
|
|
34
|
+
from underautomation.fanuc.ftp.variables.cp_mcrgrp_variable_type import CpMcrgrpVariableType
|
|
35
|
+
from underautomation.fanuc.ftp.variables.cp_morgrp_variable_type import CpMorgrpVariableType
|
|
36
|
+
from underautomation.fanuc.ftp.variables.cp_paramgp_variable_type import CpParamgpVariableType
|
|
37
|
+
from underautomation.fanuc.ftp.variables.cp_t1_grp_variable_type import CpT1GrpVariableType
|
|
38
|
+
from underautomation.fanuc.ftp.variables.cp_t1_mode_variable_type import CpT1ModeVariableType
|
|
39
|
+
from underautomation.fanuc.ftp.variables.custommenu_variable_type import CustommenuVariableType
|
|
40
|
+
from underautomation.fanuc.ftp.variables.dbg_errlog_variable_type import DbgErrlogVariableType
|
|
41
|
+
from underautomation.fanuc.ftp.variables.dbpxwork_variable_type import DbpxworkVariableType
|
|
42
|
+
from underautomation.fanuc.ftp.variables.dbtb_ctrl_variable_type import DbtbCtrlVariableType
|
|
43
|
+
from underautomation.fanuc.ftp.variables.db_dbg_variable_type import DbDbgVariableType
|
|
44
|
+
from underautomation.fanuc.ftp.variables.db_record_variable_type import DbRecordVariableType
|
|
45
|
+
from underautomation.fanuc.ftp.variables.dcss_cnstcy_variable_type import DcssCnstcyVariableType
|
|
46
|
+
from underautomation.fanuc.ftp.variables.dcss_device_variable_type import DcssDeviceVariableType
|
|
47
|
+
from underautomation.fanuc.ftp.variables.dcss_hndgd_variable_type import DcssHndgdVariableType
|
|
48
|
+
from underautomation.fanuc.ftp.variables.dcss_ls_variable_type import DcssLsVariableType
|
|
49
|
+
from underautomation.fanuc.ftp.variables.dcss_param_variable_type import DcssParamVariableType
|
|
50
|
+
from underautomation.fanuc.ftp.variables.dcss_slave_variable_type import DcssSlaveVariableType
|
|
51
|
+
from underautomation.fanuc.ftp.variables.dcs_cfg_variable_type import DcsCfgVariableType
|
|
52
|
+
from underautomation.fanuc.ftp.variables.dcs_crc_out_variable_type import DcsCrcOutVariableType
|
|
53
|
+
from underautomation.fanuc.ftp.variables.dcs_nocode_variable_type import DcsNocodeVariableType
|
|
54
|
+
from underautomation.fanuc.ftp.variables.dcs_sgn_variable_type import DcsSgnVariableType
|
|
55
|
+
from underautomation.fanuc.ftp.variables.deflogic_variable_type import DeflogicVariableType
|
|
56
|
+
from underautomation.fanuc.ftp.variables.demo_init_variable_type import DemoInitVariableType
|
|
57
|
+
from underautomation.fanuc.ftp.variables.diag_grp_variable_type import DiagGrpVariableType
|
|
58
|
+
from underautomation.fanuc.ftp.variables.dict_cfg_variable_type import DictCfgVariableType
|
|
59
|
+
from underautomation.fanuc.ftp.variables.dmsw_cfg_variable_type import DmswCfgVariableType
|
|
60
|
+
from underautomation.fanuc.ftp.variables.docviewer_variable_type import DocviewerVariableType
|
|
61
|
+
from underautomation.fanuc.ftp.variables.drc_cfg_variable_type import DrcCfgVariableType
|
|
62
|
+
from underautomation.fanuc.ftp.variables.dsbl_fault_variable_type import DsblFaultVariableType
|
|
63
|
+
from underautomation.fanuc.ftp.variables.dtrec_variable_type import DtrecVariableType
|
|
64
|
+
from underautomation.fanuc.ftp.variables.dyn_brk_variable_type import DynBrkVariableType
|
|
65
|
+
from underautomation.fanuc.ftp.variables.edt_recent_variable_type import EdtRecentVariableType
|
|
66
|
+
from underautomation.fanuc.ftp.variables.enc_info_variable_type import EncInfoVariableType
|
|
67
|
+
from underautomation.fanuc.ftp.variables.enetmode_variable_type import EnetmodeVariableType
|
|
68
|
+
from underautomation.fanuc.ftp.variables.eoatcfg_variable_type import EoatcfgVariableType
|
|
69
|
+
from underautomation.fanuc.ftp.variables.eoatdata_variable_type import EoatdataVariableType
|
|
70
|
+
from underautomation.fanuc.ftp.variables.erpost_log_variable_type import ErpostLogVariableType
|
|
71
|
+
from underautomation.fanuc.ftp.variables.er_noauto_variable_type import ErNoautoVariableType
|
|
72
|
+
from underautomation.fanuc.ftp.variables.er_noalm_variable_type import ErNoalmVariableType
|
|
73
|
+
from underautomation.fanuc.ftp.variables.ext_set_variable_type import ExtSetVariableType
|
|
74
|
+
from underautomation.fanuc.ftp.variables.fdr_grp_variable_type import FdrGrpVariableType
|
|
75
|
+
from underautomation.fanuc.ftp.variables.feature_variable_type import FeatureVariableType
|
|
76
|
+
from underautomation.fanuc.ftp.variables.filecomp_variable_type import FilecompVariableType
|
|
77
|
+
from underautomation.fanuc.ftp.variables.file_setup2_variable_type import FileSetup2VariableType
|
|
78
|
+
from underautomation.fanuc.ftp.variables.file_back_variable_type import FileBackVariableType
|
|
79
|
+
from underautomation.fanuc.ftp.variables.flui_cfg_variable_type import FluiCfgVariableType
|
|
80
|
+
from underautomation.fanuc.ftp.variables.flui_data_variable_type import FluiDataVariableType
|
|
81
|
+
from underautomation.fanuc.ftp.variables.flui_res_variable_type import FluiResVariableType
|
|
82
|
+
from underautomation.fanuc.ftp.variables.fmr_cfg_variable_type import FmrCfgVariableType
|
|
83
|
+
from underautomation.fanuc.ftp.variables.fssb_cfg_variable_type import FssbCfgVariableType
|
|
84
|
+
from underautomation.fanuc.ftp.variables.gravc_grp_variable_type import GravcGrpVariableType
|
|
85
|
+
from underautomation.fanuc.ftp.variables.grsmt_grp_variable_type import GrsmtGrpVariableType
|
|
86
|
+
from underautomation.fanuc.ftp.variables.host_cfg_variable_type import HostCfgVariableType
|
|
87
|
+
from underautomation.fanuc.ftp.variables.hostent_variable_type import HostentVariableType
|
|
88
|
+
from underautomation.fanuc.ftp.variables.err_mask_variable_type import ErrMaskVariableType
|
|
89
|
+
from underautomation.fanuc.ftp.variables.hscd_mng_variable_type import HscdMngVariableType
|
|
90
|
+
from underautomation.fanuc.ftp.variables.http_auth_variable_type import HttpAuthVariableType
|
|
91
|
+
from underautomation.fanuc.ftp.variables.http_variable_type import HttpVariableType
|
|
92
|
+
from underautomation.fanuc.ftp.variables.hwr_config_variable_type import HwrConfigVariableType
|
|
93
|
+
from underautomation.fanuc.ftp.variables.iolnk_variable_type import IolnkVariableType
|
|
94
|
+
from underautomation.fanuc.ftp.variables.ioslave_variable_type import IoslaveVariableType
|
|
95
|
+
from underautomation.fanuc.ftp.variables.io_def_asg_variable_type import IoDefAsgVariableType
|
|
96
|
+
from underautomation.fanuc.ftp.variables.io_uop_cfg_variable_type import IoUopCfgVariableType
|
|
97
|
+
from underautomation.fanuc.ftp.variables.item_acc_variable_type import ItemAccVariableType
|
|
98
|
+
from underautomation.fanuc.ftp.variables.item_buff_el_variable_type import ItemBuffElVariableType
|
|
99
|
+
from underautomation.fanuc.ftp.variables.irca_cnf_variable_type import IrcaCnfVariableType
|
|
100
|
+
from underautomation.fanuc.ftp.variables.hist_day_variable_type import HistDayVariableType
|
|
101
|
+
from underautomation.fanuc.ftp.variables.item_name_variable_type import ItemNameVariableType
|
|
102
|
+
from underautomation.fanuc.ftp.variables.irprog_cfg_variable_type import IrprogCfgVariableType
|
|
103
|
+
from underautomation.fanuc.ftp.variables.jinc_variable_type import JincVariableType
|
|
104
|
+
from underautomation.fanuc.ftp.variables.karelmon_variable_type import KarelmonVariableType
|
|
105
|
+
from underautomation.fanuc.ftp.variables.karel_cfg_variable_type import KarelCfgVariableType
|
|
106
|
+
from underautomation.fanuc.ftp.variables.lgcfg_variable_type import LgcfgVariableType
|
|
107
|
+
from underautomation.fanuc.ftp.variables.ln_disp_variable_type import LnDispVariableType
|
|
108
|
+
from underautomation.fanuc.ftp.variables.logbook_variable_type import LogbookVariableType
|
|
109
|
+
from underautomation.fanuc.ftp.variables.log_buff_variable_type import LogBuffVariableType
|
|
110
|
+
from underautomation.fanuc.ftp.variables.log_dcs_variable_type import LogDcsVariableType
|
|
111
|
+
from underautomation.fanuc.ftp.variables.log_dio_variable_type import LogDioVariableType
|
|
112
|
+
from underautomation.fanuc.ftp.variables.log_scrn_fl_variable_type import LogScrnFlVariableType
|
|
113
|
+
from underautomation.fanuc.ftp.variables.mcsp_variable_type import McspVariableType
|
|
114
|
+
from underautomation.fanuc.ftp.variables.mcsp_grp_variable_type import McspGrpVariableType
|
|
115
|
+
from underautomation.fanuc.ftp.variables.mfrq_cfg_variable_type import MfrqCfgVariableType
|
|
116
|
+
from underautomation.fanuc.ftp.variables.mfrq_grp_variable_type import MfrqGrpVariableType
|
|
117
|
+
from underautomation.fanuc.ftp.variables.misc_mstr_variable_type import MiscMstrVariableType
|
|
118
|
+
from underautomation.fanuc.ftp.variables.misc_scd_variable_type import MiscScdVariableType
|
|
119
|
+
from underautomation.fanuc.ftp.variables.mkcfg_variable_type import MkcfgVariableType
|
|
120
|
+
from underautomation.fanuc.ftp.variables.mltarm_cfg_variable_type import MltarmCfgVariableType
|
|
121
|
+
from underautomation.fanuc.ftp.variables.mndsp_mst_variable_type import MndspMstVariableType
|
|
122
|
+
from underautomation.fanuc.ftp.variables.mndsppstl_variable_type import MndsppstlVariableType
|
|
123
|
+
from underautomation.fanuc.ftp.variables.modaq_cfg_variable_type import ModaqCfgVariableType
|
|
124
|
+
from underautomation.fanuc.ftp.variables.fx_trigger_variable_type import FxTriggerVariableType
|
|
125
|
+
from underautomation.fanuc.ftp.variables.modem_inf_variable_type import ModemInfVariableType
|
|
126
|
+
from underautomation.fanuc.ftp.variables.mor_grp_sv_variable_type import MorGrpSvVariableType
|
|
127
|
+
from underautomation.fanuc.ftp.variables.motion_dbg_variable_type import MotionDbgVariableType
|
|
128
|
+
from underautomation.fanuc.ftp.variables.mr_hist_variable_type import MrHistVariableType
|
|
129
|
+
from underautomation.fanuc.ftp.variables.msk_ce_grp_variable_type import MskCeGrpVariableType
|
|
130
|
+
from underautomation.fanuc.ftp.variables.mtcom_cfg_variable_type import MtcomCfgVariableType
|
|
131
|
+
from underautomation.fanuc.ftp.variables.opwork_variable_type import OpworkVariableType
|
|
132
|
+
from underautomation.fanuc.ftp.variables.ovrdslct_variable_type import OvrdslctVariableType
|
|
133
|
+
from underautomation.fanuc.ftp.variables.ovrd_setup_variable_type import OvrdSetupVariableType
|
|
134
|
+
from underautomation.fanuc.ftp.variables.plcfg_variable_type import PlcfgVariableType
|
|
135
|
+
from underautomation.fanuc.ftp.variables.tracectl_variable_type import TracectlVariableType
|
|
136
|
+
from underautomation.fanuc.ftp.variables.tracedt_variable_type import TracedtVariableType
|
|
137
|
+
from underautomation.fanuc.ftp.variables.traceup_variable_type import TraceupVariableType
|
|
138
|
+
from underautomation.fanuc.ftp.variables.pg_cfg_variable_type import PgCfgVariableType
|
|
139
|
+
from underautomation.fanuc.ftp.variables.pg_defspd_variable_type import PgDefspdVariableType
|
|
140
|
+
from underautomation.fanuc.ftp.variables.ping_variable_type import PingVariableType
|
|
141
|
+
from underautomation.fanuc.ftp.variables.pipe_cfg_variable_type import PipeCfgVariableType
|
|
142
|
+
from underautomation.fanuc.ftp.variables.plid_cfg_variable_type import PlidCfgVariableType
|
|
143
|
+
from underautomation.fanuc.ftp.variables.plid_cllb_variable_type import PlidCllbVariableType
|
|
144
|
+
from underautomation.fanuc.ftp.variables.plim_grp_variable_type import PlimGrpVariableType
|
|
145
|
+
from underautomation.fanuc.ftp.variables.plmr_grp_variable_type import PlmrGrpVariableType
|
|
146
|
+
from underautomation.fanuc.ftp.variables.plst_grp_variable_type import PlstGrpVariableType
|
|
147
|
+
from underautomation.fanuc.ftp.variables.pl_res_g_variable_type import PlResGVariableType
|
|
148
|
+
from underautomation.fanuc.ftp.variables.pmon_que_variable_type import PmonQueVariableType
|
|
149
|
+
from underautomation.fanuc.ftp.variables.pocfg_variable_type import PocfgVariableType
|
|
150
|
+
from underautomation.fanuc.ftp.variables.pos_edit_variable_type import PosEditVariableType
|
|
151
|
+
from underautomation.fanuc.ftp.variables.prgadj_variable_type import PrgadjVariableType
|
|
152
|
+
from underautomation.fanuc.ftp.variables.prgns_cfg_variable_type import PrgnsCfgVariableType
|
|
153
|
+
from underautomation.fanuc.ftp.variables.prgns_grp_variable_type import PrgnsGrpVariableType
|
|
154
|
+
from underautomation.fanuc.ftp.variables.prgns_pref_variable_type import PrgnsPrefVariableType
|
|
155
|
+
from underautomation.fanuc.ftp.variables.protoent_variable_type import ProtoentVariableType
|
|
156
|
+
from underautomation.fanuc.ftp.variables.proxy_cfg_variable_type import ProxyCfgVariableType
|
|
157
|
+
from underautomation.fanuc.ftp.variables.pf_cfg_variable_type import PfCfgVariableType
|
|
158
|
+
from underautomation.fanuc.ftp.variables.pf_enhance_variable_type import PfEnhanceVariableType
|
|
159
|
+
from underautomation.fanuc.ftp.variables.pf_pref_variable_type import PfPrefVariableType
|
|
160
|
+
from underautomation.fanuc.ftp.variables.pslgset_variable_type import PslgsetVariableType
|
|
161
|
+
from underautomation.fanuc.ftp.variables.pslgtemp_variable_type import PslgtempVariableType
|
|
162
|
+
from underautomation.fanuc.ftp.variables.pssave_variable_type import PssaveVariableType
|
|
163
|
+
from underautomation.fanuc.ftp.variables.pwrup_dly_variable_type import PwrupDlyVariableType
|
|
164
|
+
from underautomation.fanuc.ftp.variables.qskip_grp_variable_type import QskipGrpVariableType
|
|
165
|
+
from underautomation.fanuc.ftp.variables.rdcr_grp_variable_type import RdcrGrpVariableType
|
|
166
|
+
from underautomation.fanuc.ftp.variables.redprot_cfg_variable_type import RedprotCfgVariableType
|
|
167
|
+
from underautomation.fanuc.ftp.variables.redprot_grp_variable_type import RedprotGrpVariableType
|
|
168
|
+
from underautomation.fanuc.ftp.variables.refpos11_variable_type import Refpos11VariableType
|
|
169
|
+
from underautomation.fanuc.ftp.variables.refpos21_variable_type import Refpos21VariableType
|
|
170
|
+
from underautomation.fanuc.ftp.variables.refpos31_variable_type import Refpos31VariableType
|
|
171
|
+
from underautomation.fanuc.ftp.variables.refpos41_variable_type import Refpos41VariableType
|
|
172
|
+
from underautomation.fanuc.ftp.variables.refpos51_variable_type import Refpos51VariableType
|
|
173
|
+
from underautomation.fanuc.ftp.variables.refpos61_variable_type import Refpos61VariableType
|
|
174
|
+
from underautomation.fanuc.ftp.variables.refpos71_variable_type import Refpos71VariableType
|
|
175
|
+
from underautomation.fanuc.ftp.variables.refpos81_variable_type import Refpos81VariableType
|
|
176
|
+
from underautomation.fanuc.ftp.variables.refpsmsk_variable_type import RefpsmskVariableType
|
|
177
|
+
from underautomation.fanuc.ftp.variables.remote_cfg_variable_type import RemoteCfgVariableType
|
|
178
|
+
from underautomation.fanuc.ftp.variables.repower_variable_type import RepowerVariableType
|
|
179
|
+
from underautomation.fanuc.ftp.variables.restart_variable_type import RestartVariableType
|
|
180
|
+
from underautomation.fanuc.ftp.variables.rs232_cfg_variable_type import Rs232CfgVariableType
|
|
181
|
+
from underautomation.fanuc.ftp.variables.rsch_variable_type import RschVariableType
|
|
182
|
+
from underautomation.fanuc.ftp.variables.rspace_variable_type import RspaceVariableType
|
|
183
|
+
from underautomation.fanuc.ftp.variables.rspaceg_variable_type import RspacegVariableType
|
|
184
|
+
from underautomation.fanuc.ftp.variables.rspacesr_variable_type import RspacesrVariableType
|
|
185
|
+
from underautomation.fanuc.ftp.variables.servent_variable_type import ServentVariableType
|
|
186
|
+
from underautomation.fanuc.ftp.variables.sfzn_cfg_variable_type import SfznCfgVariableType
|
|
187
|
+
from underautomation.fanuc.ftp.variables.sfzn_grp_variable_type import SfznGrpVariableType
|
|
188
|
+
from underautomation.fanuc.ftp.variables.shell_cfg_variable_type import ShellCfgVariableType
|
|
189
|
+
from underautomation.fanuc.ftp.variables.shell_chk_variable_type import ShellChkVariableType
|
|
190
|
+
from underautomation.fanuc.ftp.variables.shell_comm_variable_type import ShellCommVariableType
|
|
191
|
+
from underautomation.fanuc.ftp.variables.simiofwdlm_variable_type import SimiofwdlmVariableType
|
|
192
|
+
from underautomation.fanuc.ftp.variables.snpx_asg_variable_type import SnpxAsgVariableType
|
|
193
|
+
from underautomation.fanuc.ftp.variables.snpx_param_variable_type import SnpxParamVariableType
|
|
194
|
+
from underautomation.fanuc.ftp.variables.ssr_variable_type import SsrVariableType
|
|
195
|
+
from underautomation.fanuc.ftp.variables.svdt_grp_variable_type import SvdtGrpVariableType
|
|
196
|
+
from underautomation.fanuc.ftp.variables.svprm_upd_variable_type import SvprmUpdVariableType
|
|
197
|
+
from underautomation.fanuc.ftp.variables.sv_info_variable_type import SvInfoVariableType
|
|
198
|
+
from underautomation.fanuc.ftp.variables.syslog_variable_type import SyslogVariableType
|
|
199
|
+
from underautomation.fanuc.ftp.variables.syslog_sav_variable_type import SyslogSavVariableType
|
|
200
|
+
from underautomation.fanuc.ftp.variables.system_timer_variable_type import SystemTimerVariableType
|
|
201
|
+
from underautomation.fanuc.ftp.variables.t2mode_lim_variable_type import T2modeLimVariableType
|
|
202
|
+
from underautomation.fanuc.ftp.variables.t2spdlim_variable_type import T2spdlimVariableType
|
|
203
|
+
from underautomation.fanuc.ftp.variables.tbc2_grp_variable_type import Tbc2GrpVariableType
|
|
204
|
+
from underautomation.fanuc.ftp.variables.tbcsg_grp_variable_type import TbcsgGrpVariableType
|
|
205
|
+
from underautomation.fanuc.ftp.variables.tbj2_grp_variable_type import Tbj2GrpVariableType
|
|
206
|
+
from underautomation.fanuc.ftp.variables.tbjop_grp_variable_type import TbjopGrpVariableType
|
|
207
|
+
from underautomation.fanuc.ftp.variables.tp_thr_table_variable_type import TpThrTableVariableType
|
|
208
|
+
from underautomation.fanuc.ftp.variables.thr_cfg_variable_type import ThrCfgVariableType
|
|
209
|
+
from underautomation.fanuc.ftp.variables.timer_variable_type import TimerVariableType
|
|
210
|
+
from underautomation.fanuc.ftp.variables.tpgl_conf_variable_type import TpglConfVariableType
|
|
211
|
+
from underautomation.fanuc.ftp.variables.tpgl_out_variable_type import TpglOutVariableType
|
|
212
|
+
from underautomation.fanuc.ftp.variables.tpp_mon_variable_type import TppMonVariableType
|
|
213
|
+
from underautomation.fanuc.ftp.variables.tpstrtchk_variable_type import TpstrtchkVariableType
|
|
214
|
+
from underautomation.fanuc.ftp.variables.tpvwvar_variable_type import TpvwvarVariableType
|
|
215
|
+
from underautomation.fanuc.ftp.variables.trace_cfg_variable_type import TraceCfgVariableType
|
|
216
|
+
from underautomation.fanuc.ftp.variables.trace_chnl_variable_type import TraceChnlVariableType
|
|
217
|
+
from underautomation.fanuc.ftp.variables.trace_item_variable_type import TraceItemVariableType
|
|
218
|
+
from underautomation.fanuc.ftp.variables.tscfg_variable_type import TscfgVariableType
|
|
219
|
+
from underautomation.fanuc.ftp.variables.tsscb_variable_type import TsscbVariableType
|
|
220
|
+
from underautomation.fanuc.ftp.variables.tutorial_variable_type import TutorialVariableType
|
|
221
|
+
from underautomation.fanuc.ftp.variables.tv_config_variable_type import TvConfigVariableType
|
|
222
|
+
from underautomation.fanuc.ftp.variables.tv_output_variable_type import TvOutputVariableType
|
|
223
|
+
from underautomation.fanuc.ftp.variables.txscreen_variable_type import TxscreenVariableType
|
|
224
|
+
from underautomation.fanuc.ftp.variables.uecfg_variable_type import UecfgVariableType
|
|
225
|
+
from underautomation.fanuc.ftp.variables.uegrp_variable_type import UegrpVariableType
|
|
226
|
+
from underautomation.fanuc.ftp.variables.bbl_nt_wnd_variable_type import BblNtWndVariableType
|
|
227
|
+
from underautomation.fanuc.ftp.variables.ui_fkeydat_variable_type import UiFkeydatVariableType
|
|
228
|
+
from underautomation.fanuc.ftp.variables.ui_menhis_variable_type import UiMenhisVariableType
|
|
229
|
+
from underautomation.fanuc.ftp.variables.ui_panedat_variable_type import UiPanedatVariableType
|
|
230
|
+
from underautomation.fanuc.ftp.variables.ui_usrview_variable_type import UiUsrviewVariableType
|
|
231
|
+
from underautomation.fanuc.ftp.variables.undo_cfg_variable_type import UndoCfgVariableType
|
|
232
|
+
from underautomation.fanuc.ftp.variables.user_info_variable_type import UserInfoVariableType
|
|
233
|
+
from underautomation.fanuc.ftp.variables.user_offst_variable_type import UserOffstVariableType
|
|
234
|
+
from underautomation.fanuc.ftp.variables.user_work_variable_type import UserWorkVariableType
|
|
235
|
+
from underautomation.fanuc.ftp.variables.usrtol_grp_variable_type import UsrtolGrpVariableType
|
|
236
|
+
from underautomation.fanuc.ftp.variables.usr_ev_cfg_variable_type import UsrEvCfgVariableType
|
|
237
|
+
from underautomation.fanuc.ftp.variables.usr_ev_wrk_variable_type import UsrEvWrkVariableType
|
|
238
|
+
from underautomation.fanuc.ftp.variables.vars_config_variable_type import VarsConfigVariableType
|
|
239
|
+
from underautomation.fanuc.ftp.variables.vcmr_grp_variable_type import VcmrGrpVariableType
|
|
240
|
+
from underautomation.fanuc.ftp.variables.via_work_variable_type import ViaWorkVariableType
|
|
241
|
+
from underautomation.fanuc.ftp.variables.vision_cfg_variable_type import VisionCfgVariableType
|
|
242
|
+
from underautomation.fanuc.ftp.variables.vision_grp_variable_type import VisionGrpVariableType
|
|
243
|
+
from underautomation.fanuc.ftp.variables.vis_ge_cfg_variable_type import VisGeCfgVariableType
|
|
244
|
+
from underautomation.fanuc.ftp.variables.vis_logreg_variable_type import VisLogregVariableType
|
|
245
|
+
from underautomation.fanuc.ftp.variables.vlexe_cfg_variable_type import VlexeCfgVariableType
|
|
246
|
+
from underautomation.fanuc.ftp.variables.vrtd_filt_variable_type import VrtdFiltVariableType
|
|
247
|
+
from underautomation.fanuc.ftp.variables.vsft_cfg_variable_type import VsftCfgVariableType
|
|
248
|
+
from underautomation.fanuc.ftp.variables.vsmo_cfg_variable_type import VsmoCfgVariableType
|
|
249
|
+
from underautomation.fanuc.ftp.variables.vzdt_cfg_variable_type import VzdtCfgVariableType
|
|
250
|
+
from underautomation.fanuc.ftp.variables.wait_data_variable_type import WaitDataVariableType
|
|
251
|
+
from underautomation.fanuc.ftp.variables.xvrcfg_variable_type import XvrcfgVariableType
|
|
252
|
+
from underautomation.fanuc.ftp.variables.zabc_grp_variable_type import ZabcGrpVariableType
|
|
253
|
+
from underautomation.fanuc.ftp.variables.zdt_actvspt_variable_type import ZdtActvsptVariableType
|
|
254
|
+
from underautomation.fanuc.ftp.variables.zdt_dcschg_variable_type import ZdtDcschgVariableType
|
|
255
|
+
from underautomation.fanuc.ftp.variables.zip_cfg_variable_type import ZipCfgVariableType
|
|
256
|
+
from underautomation.fanuc.ftp.variables.zmpcf_grp_variable_type import ZmpcfGrpVariableType
|
|
257
|
+
from underautomation.fanuc.ftp.variables.zmpos_grp_variable_type import ZmposGrpVariableType
|
|
258
|
+
from underautomation.fanuc.ftp.variables.zp_cfg_variable_type import ZpCfgVariableType
|
|
259
|
+
from underautomation.fanuc.ftp.variables.zp_cylinder_variable_type import ZpCylinderVariableType
|
|
260
|
+
from underautomation.fanuc.ftp.variables.zp_grp_variable_type import ZpGrpVariableType
|
|
261
|
+
from underautomation.fanuc.ftp.variables.zp_sphere_variable_type import ZpSphereVariableType
|
|
262
|
+
from underautomation.fanuc.ftp.variables.generic_variable_file import GenericVariableFile
|
|
263
|
+
import clr
|
|
264
|
+
import os
|
|
265
|
+
clr.AddReference(os.path.realpath(os.path.join(os.path.dirname(__file__), "..", "..", 'lib', 'UnderAutomation.Fanuc.dll')))
|
|
266
|
+
from UnderAutomation.Fanuc.Ftp.Variables import SystemFile as system_file
|
|
267
|
+
|
|
268
|
+
class SystemFile(GenericVariableFile):
|
|
269
|
+
def __init__(self, _internal = 0):
|
|
270
|
+
if(_internal == 0):
|
|
271
|
+
self._instance = system_file()
|
|
272
|
+
else:
|
|
273
|
+
self._instance = _internal
|
|
274
|
+
@property
|
|
275
|
+
def aavm_wrk(self) -> typing.List[AavmWrkVariableType]:
|
|
276
|
+
return [AavmWrkVariableType(x) for x in self._instance.AavmWrk]
|
|
277
|
+
@property
|
|
278
|
+
def abspos_grp(self) -> typing.List[AbsposGrpVariableType]:
|
|
279
|
+
return [AbsposGrpVariableType(x) for x in self._instance.AbsposGrp]
|
|
280
|
+
@property
|
|
281
|
+
def acc_maxlmt(self) -> int:
|
|
282
|
+
return self._instance.AccMaxlmt
|
|
283
|
+
@property
|
|
284
|
+
def acc_minlmt(self) -> int:
|
|
285
|
+
return self._instance.AccMinlmt
|
|
286
|
+
@property
|
|
287
|
+
def acc_pre_exe(self) -> int:
|
|
288
|
+
return self._instance.AccPreExe
|
|
289
|
+
@property
|
|
290
|
+
def ac_update(self) -> int:
|
|
291
|
+
return self._instance.AcUpdate
|
|
292
|
+
@property
|
|
293
|
+
def aiocnv_num(self) -> int:
|
|
294
|
+
return self._instance.AiocnvNum
|
|
295
|
+
@property
|
|
296
|
+
def aiocnv_use(self) -> int:
|
|
297
|
+
return self._instance.AiocnvUse
|
|
298
|
+
@property
|
|
299
|
+
def aio_cnv(self) -> typing.List[AioCnvVariableType]:
|
|
300
|
+
return [AioCnvVariableType(x) for x in self._instance.AioCnv]
|
|
301
|
+
@property
|
|
302
|
+
def almdg(self) -> AlmdgVariableType:
|
|
303
|
+
return AlmdgVariableType(self._instance.Almdg)
|
|
304
|
+
@property
|
|
305
|
+
def alm_if(self) -> AlmIfVariableType:
|
|
306
|
+
return AlmIfVariableType(self._instance.AlmIf)
|
|
307
|
+
@property
|
|
308
|
+
def angtol(self) -> typing.List[float]:
|
|
309
|
+
return self._instance.Angtol
|
|
310
|
+
@property
|
|
311
|
+
def appinfo(self) -> AppinfoVariableType:
|
|
312
|
+
return AppinfoVariableType(self._instance.Appinfo)
|
|
313
|
+
@property
|
|
314
|
+
def application(self) -> typing.List[str]:
|
|
315
|
+
return self._instance.Application
|
|
316
|
+
@property
|
|
317
|
+
def ap_active(self) -> int:
|
|
318
|
+
return self._instance.ApActive
|
|
319
|
+
@property
|
|
320
|
+
def ap_automode(self) -> bool:
|
|
321
|
+
return self._instance.ApAutomode
|
|
322
|
+
@property
|
|
323
|
+
def ap_chgaponl(self) -> bool:
|
|
324
|
+
return self._instance.ApChgaponl
|
|
325
|
+
@property
|
|
326
|
+
def ap_coupled(self) -> typing.List[ApcoupledVariableType]:
|
|
327
|
+
return [ApcoupledVariableType(x) for x in self._instance.ApCoupled]
|
|
328
|
+
@property
|
|
329
|
+
def ap_cureq(self) -> typing.List[ApcureqVariableType]:
|
|
330
|
+
return [ApcureqVariableType(x) for x in self._instance.ApCureq]
|
|
331
|
+
@property
|
|
332
|
+
def ap_curtool(self) -> int:
|
|
333
|
+
return self._instance.ApCurtool
|
|
334
|
+
@property
|
|
335
|
+
def ap_do_clean(self) -> bool:
|
|
336
|
+
return self._instance.ApDoClean
|
|
337
|
+
@property
|
|
338
|
+
def ap_do_clenm(self) -> typing.List[bool]:
|
|
339
|
+
return self._instance.ApDoClenm
|
|
340
|
+
@property
|
|
341
|
+
def ap_dspdryrn(self) -> bool:
|
|
342
|
+
return self._instance.ApDspdryrn
|
|
343
|
+
@property
|
|
344
|
+
def ap_hide(self) -> typing.List[bool]:
|
|
345
|
+
return self._instance.ApHide
|
|
346
|
+
@property
|
|
347
|
+
def ap_maxapp(self) -> int:
|
|
348
|
+
return self._instance.ApMaxapp
|
|
349
|
+
@property
|
|
350
|
+
def ap_maxax(self) -> int:
|
|
351
|
+
return self._instance.ApMaxax
|
|
352
|
+
@property
|
|
353
|
+
def ap_plugged(self) -> int:
|
|
354
|
+
return self._instance.ApPlugged
|
|
355
|
+
@property
|
|
356
|
+
def ap_prc_dsbm(self) -> typing.List[int]:
|
|
357
|
+
return self._instance.ApPrcDsbm
|
|
358
|
+
@property
|
|
359
|
+
def ap_proc_dsb(self) -> bool:
|
|
360
|
+
return self._instance.ApProcDsb
|
|
361
|
+
@property
|
|
362
|
+
def ap_segf_chk(self) -> bool:
|
|
363
|
+
return self._instance.ApSegfChk
|
|
364
|
+
@property
|
|
365
|
+
def ap_seg_chkm(self) -> typing.List[bool]:
|
|
366
|
+
return self._instance.ApSegChkm
|
|
367
|
+
@property
|
|
368
|
+
def ap_selap(self) -> typing.List[bool]:
|
|
369
|
+
return self._instance.ApSelap
|
|
370
|
+
@property
|
|
371
|
+
def ap_totalax(self) -> int:
|
|
372
|
+
return self._instance.ApTotalax
|
|
373
|
+
@property
|
|
374
|
+
def ap_usenum(self) -> typing.List[int]:
|
|
375
|
+
return self._instance.ApUsenum
|
|
376
|
+
@property
|
|
377
|
+
def argdispmmck(self) -> float:
|
|
378
|
+
return self._instance.Argdispmmck
|
|
379
|
+
@property
|
|
380
|
+
def argdispmode(self) -> int:
|
|
381
|
+
return self._instance.Argdispmode
|
|
382
|
+
@property
|
|
383
|
+
def arg_string(self) -> typing.List[ArgStrVariableType]:
|
|
384
|
+
return [ArgStrVariableType(x) for x in self._instance.ArgString]
|
|
385
|
+
@property
|
|
386
|
+
def arg_word(self) -> typing.List[str]:
|
|
387
|
+
return self._instance.ArgWord
|
|
388
|
+
@property
|
|
389
|
+
def asbn_config(self) -> AsbnCfgVariableType:
|
|
390
|
+
return AsbnCfgVariableType(self._instance.AsbnConfig)
|
|
391
|
+
@property
|
|
392
|
+
def atcellsetup(self) -> AtCellsetupVariableType:
|
|
393
|
+
return AtCellsetupVariableType(self._instance.Atcellsetup)
|
|
394
|
+
@property
|
|
395
|
+
def autobackup(self) -> AutobackupVariableType:
|
|
396
|
+
return AutobackupVariableType(self._instance.Autobackup)
|
|
397
|
+
@property
|
|
398
|
+
def autoinit(self) -> int:
|
|
399
|
+
return self._instance.Autoinit
|
|
400
|
+
@property
|
|
401
|
+
def automessage(self) -> int:
|
|
402
|
+
return self._instance.Automessage
|
|
403
|
+
@property
|
|
404
|
+
def automode_do(self) -> bool:
|
|
405
|
+
return self._instance.AutomodeDo
|
|
406
|
+
@property
|
|
407
|
+
def automode_ov(self) -> bool:
|
|
408
|
+
return self._instance.AutomodeOv
|
|
409
|
+
@property
|
|
410
|
+
def autopauspos(self) -> typing.List[JointPositionVariable]:
|
|
411
|
+
return [JointPositionVariable(x) for x in self._instance.Autopauspos]
|
|
412
|
+
@property
|
|
413
|
+
def autoppostsk(self) -> typing.List[int]:
|
|
414
|
+
return self._instance.Autoppostsk
|
|
415
|
+
@property
|
|
416
|
+
def autoupdtmod(self) -> int:
|
|
417
|
+
return self._instance.Autoupdtmod
|
|
418
|
+
@property
|
|
419
|
+
def auxwzd_enb(self) -> int:
|
|
420
|
+
return self._instance.AuxwzdEnb
|
|
421
|
+
@property
|
|
422
|
+
def auxwzd_stat(self) -> int:
|
|
423
|
+
return self._instance.AuxwzdStat
|
|
424
|
+
@property
|
|
425
|
+
def axscrdcfg(self) -> typing.List[AxscrdcfgVariableType]:
|
|
426
|
+
return [AxscrdcfgVariableType(x) for x in self._instance.Axscrdcfg]
|
|
427
|
+
@property
|
|
428
|
+
def background(self) -> bool:
|
|
429
|
+
return self._instance.Background
|
|
430
|
+
@property
|
|
431
|
+
def backup_name(self) -> str:
|
|
432
|
+
return self._instance.BackupName
|
|
433
|
+
@property
|
|
434
|
+
def back_edit(self) -> typing.List[BackEditVariableType]:
|
|
435
|
+
return [BackEditVariableType(x) for x in self._instance.BackEdit]
|
|
436
|
+
@property
|
|
437
|
+
def bck_no_del(self) -> bool:
|
|
438
|
+
return self._instance.BckNoDel
|
|
439
|
+
@property
|
|
440
|
+
def bge_unusend(self) -> bool:
|
|
441
|
+
return self._instance.BgeUnusend
|
|
442
|
+
@property
|
|
443
|
+
def bigallow(self) -> typing.List[BigallowVariableType]:
|
|
444
|
+
return [BigallowVariableType(x) for x in self._instance.Bigallow]
|
|
445
|
+
@property
|
|
446
|
+
def blal_out(self) -> BlalOutVariableType:
|
|
447
|
+
return BlalOutVariableType(self._instance.BlalOut)
|
|
448
|
+
@property
|
|
449
|
+
def bwd_abort(self) -> bool:
|
|
450
|
+
return self._instance.BwdAbort
|
|
451
|
+
@property
|
|
452
|
+
def bwd_itr_rtn(self) -> int:
|
|
453
|
+
return self._instance.BwdItrRtn
|
|
454
|
+
@property
|
|
455
|
+
def bwd_nonstop(self) -> int:
|
|
456
|
+
return self._instance.BwdNonstop
|
|
457
|
+
@property
|
|
458
|
+
def ce_option(self) -> int:
|
|
459
|
+
return self._instance.CeOption
|
|
460
|
+
@property
|
|
461
|
+
def ce_ria_id(self) -> int:
|
|
462
|
+
return self._instance.CeRiaId
|
|
463
|
+
@property
|
|
464
|
+
def cfcfg(self) -> CfcfgVariableType:
|
|
465
|
+
return CfcfgVariableType(self._instance.Cfcfg)
|
|
466
|
+
@property
|
|
467
|
+
def checkconfig(self) -> bool:
|
|
468
|
+
return self._instance.Checkconfig
|
|
469
|
+
@property
|
|
470
|
+
def chg_pri(self) -> typing.List[ChgPriVariableType]:
|
|
471
|
+
return [ChgPriVariableType(x) for x in self._instance.ChgPri]
|
|
472
|
+
@property
|
|
473
|
+
def chkpauspos(self) -> typing.List[ChkposVariableType]:
|
|
474
|
+
return [ChkposVariableType(x) for x in self._instance.Chkpauspos]
|
|
475
|
+
@property
|
|
476
|
+
def cmd_info(self) -> typing.List[CmdInfoVariableType]:
|
|
477
|
+
return [CmdInfoVariableType(x) for x in self._instance.CmdInfo]
|
|
478
|
+
@property
|
|
479
|
+
def cocfg(self) -> CocfgVariableType:
|
|
480
|
+
return CocfgVariableType(self._instance.Cocfg)
|
|
481
|
+
@property
|
|
482
|
+
def collect_cfg(self) -> CollectVariableType:
|
|
483
|
+
return CollectVariableType(self._instance.CollectCfg)
|
|
484
|
+
@property
|
|
485
|
+
def collect_enb(self) -> int:
|
|
486
|
+
return self._instance.CollectEnb
|
|
487
|
+
@property
|
|
488
|
+
def condet_cfg(self) -> CondetCfgVariableType:
|
|
489
|
+
return CondetCfgVariableType(self._instance.CondetCfg)
|
|
490
|
+
@property
|
|
491
|
+
def condet_grp(self) -> typing.List[CondetGrpVariableType]:
|
|
492
|
+
return [CondetGrpVariableType(x) for x in self._instance.CondetGrp]
|
|
493
|
+
@property
|
|
494
|
+
def condet_io(self) -> CondetIoVariableType:
|
|
495
|
+
return CondetIoVariableType(self._instance.CondetIo)
|
|
496
|
+
@property
|
|
497
|
+
def condet_trgp(self) -> typing.List[CondetTrgpVariableType]:
|
|
498
|
+
return [CondetTrgpVariableType(x) for x in self._instance.CondetTrgp]
|
|
499
|
+
@property
|
|
500
|
+
def condet_trig(self) -> CondetTrigVariableType:
|
|
501
|
+
return CondetTrigVariableType(self._instance.CondetTrig)
|
|
502
|
+
@property
|
|
503
|
+
def co_morgrp(self) -> typing.List[CoMorgrpVariableType]:
|
|
504
|
+
return [CoMorgrpVariableType(x) for x in self._instance.CoMorgrp]
|
|
505
|
+
@property
|
|
506
|
+
def co_paramgrp(self) -> typing.List[CoParamgpVariableType]:
|
|
507
|
+
return [CoParamgpVariableType(x) for x in self._instance.CoParamgrp]
|
|
508
|
+
@property
|
|
509
|
+
def cpcfg(self) -> CpcfgVariableType:
|
|
510
|
+
return CpcfgVariableType(self._instance.Cpcfg)
|
|
511
|
+
@property
|
|
512
|
+
def cpdbg(self) -> CpdbgVariableType:
|
|
513
|
+
return CpdbgVariableType(self._instance.Cpdbg)
|
|
514
|
+
@property
|
|
515
|
+
def cp_mcrgrp(self) -> typing.List[CpMcrgrpVariableType]:
|
|
516
|
+
return [CpMcrgrpVariableType(x) for x in self._instance.CpMcrgrp]
|
|
517
|
+
@property
|
|
518
|
+
def cp_morgrp(self) -> typing.List[CpMorgrpVariableType]:
|
|
519
|
+
return [CpMorgrpVariableType(x) for x in self._instance.CpMorgrp]
|
|
520
|
+
@property
|
|
521
|
+
def cp_paramgrp(self) -> typing.List[CpParamgpVariableType]:
|
|
522
|
+
return [CpParamgpVariableType(x) for x in self._instance.CpParamgrp]
|
|
523
|
+
@property
|
|
524
|
+
def cp_t1_grp(self) -> typing.List[CpT1GrpVariableType]:
|
|
525
|
+
return [CpT1GrpVariableType(x) for x in self._instance.CpT1Grp]
|
|
526
|
+
@property
|
|
527
|
+
def cp_t1_mode(self) -> CpT1ModeVariableType:
|
|
528
|
+
return CpT1ModeVariableType(self._instance.CpT1Mode)
|
|
529
|
+
@property
|
|
530
|
+
def crt_defprog(self) -> str:
|
|
531
|
+
return self._instance.CrtDefprog
|
|
532
|
+
@property
|
|
533
|
+
def crt_inuser(self) -> bool:
|
|
534
|
+
return self._instance.CrtInuser
|
|
535
|
+
@property
|
|
536
|
+
def crt_key_tbl(self) -> typing.List[int]:
|
|
537
|
+
return self._instance.CrtKeyTbl
|
|
538
|
+
@property
|
|
539
|
+
def crt_lckuser(self) -> bool:
|
|
540
|
+
return self._instance.CrtLckuser
|
|
541
|
+
@property
|
|
542
|
+
def crt_usestat(self) -> bool:
|
|
543
|
+
return self._instance.CrtUsestat
|
|
544
|
+
@property
|
|
545
|
+
def cr_auto_do(self) -> int:
|
|
546
|
+
return self._instance.CrAutoDo
|
|
547
|
+
@property
|
|
548
|
+
def cr_indt_enb(self) -> bool:
|
|
549
|
+
return self._instance.CrIndtEnb
|
|
550
|
+
@property
|
|
551
|
+
def cr_t1_do(self) -> int:
|
|
552
|
+
return self._instance.CrT1Do
|
|
553
|
+
@property
|
|
554
|
+
def cr_t2_do(self) -> int:
|
|
555
|
+
return self._instance.CrT2Do
|
|
556
|
+
@property
|
|
557
|
+
def cstop(self) -> bool:
|
|
558
|
+
return self._instance.Cstop
|
|
559
|
+
@property
|
|
560
|
+
def ctrl_delete(self) -> int:
|
|
561
|
+
return self._instance.CtrlDelete
|
|
562
|
+
@property
|
|
563
|
+
def ct_screen(self) -> str:
|
|
564
|
+
return self._instance.CtScreen
|
|
565
|
+
@property
|
|
566
|
+
def custommenu(self) -> typing.List[CustommenuVariableType]:
|
|
567
|
+
return [CustommenuVariableType(x) for x in self._instance.Custommenu]
|
|
568
|
+
@property
|
|
569
|
+
def cust_manual(self) -> bool:
|
|
570
|
+
return self._instance.CustManual
|
|
571
|
+
@property
|
|
572
|
+
def dbcondtrig(self) -> int:
|
|
573
|
+
return self._instance.Dbcondtrig
|
|
574
|
+
@property
|
|
575
|
+
def dbg_errlog(self) -> DbgErrlogVariableType:
|
|
576
|
+
return DbgErrlogVariableType(self._instance.DbgErrlog)
|
|
577
|
+
@property
|
|
578
|
+
def dbnumlim(self) -> int:
|
|
579
|
+
return self._instance.Dbnumlim
|
|
580
|
+
@property
|
|
581
|
+
def dbpxwork(self) -> typing.List[DbpxworkVariableType]:
|
|
582
|
+
return [DbpxworkVariableType(x) for x in self._instance.Dbpxwork]
|
|
583
|
+
@property
|
|
584
|
+
def dbtb_ctrl(self) -> DbtbCtrlVariableType:
|
|
585
|
+
return DbtbCtrlVariableType(self._instance.DbtbCtrl)
|
|
586
|
+
@property
|
|
587
|
+
def db_awaytrig(self) -> float:
|
|
588
|
+
return self._instance.DbAwaytrig
|
|
589
|
+
@property
|
|
590
|
+
def db_away_alm(self) -> bool:
|
|
591
|
+
return self._instance.DbAwayAlm
|
|
592
|
+
@property
|
|
593
|
+
def db_condtyp(self) -> int:
|
|
594
|
+
return self._instance.DbCondtyp
|
|
595
|
+
@property
|
|
596
|
+
def db_dbg(self) -> typing.List[DbDbgVariableType]:
|
|
597
|
+
return [DbDbgVariableType(x) for x in self._instance.DbDbg]
|
|
598
|
+
@property
|
|
599
|
+
def db_mindist(self) -> float:
|
|
600
|
+
return self._instance.DbMindist
|
|
601
|
+
@property
|
|
602
|
+
def db_montime(self) -> int:
|
|
603
|
+
return self._instance.DbMontime
|
|
604
|
+
@property
|
|
605
|
+
def db_montyp(self) -> int:
|
|
606
|
+
return self._instance.DbMontyp
|
|
607
|
+
@property
|
|
608
|
+
def db_motnend(self) -> bool:
|
|
609
|
+
return self._instance.DbMotnend
|
|
610
|
+
@property
|
|
611
|
+
def db_record(self) -> typing.List[DbRecordVariableType]:
|
|
612
|
+
return [DbRecordVariableType(x) for x in self._instance.DbRecord]
|
|
613
|
+
@property
|
|
614
|
+
def db_tolerenc(self) -> float:
|
|
615
|
+
return self._instance.DbTolerenc
|
|
616
|
+
@property
|
|
617
|
+
def dcss_cnstcy(self) -> typing.List[DcssCnstcyVariableType]:
|
|
618
|
+
return [DcssCnstcyVariableType(x) for x in self._instance.DcssCnstcy]
|
|
619
|
+
@property
|
|
620
|
+
def dcss_device(self) -> typing.List[DcssDeviceVariableType]:
|
|
621
|
+
return [DcssDeviceVariableType(x) for x in self._instance.DcssDevice]
|
|
622
|
+
@property
|
|
623
|
+
def dcss_hndgd(self) -> DcssHndgdVariableType:
|
|
624
|
+
return DcssHndgdVariableType(self._instance.DcssHndgd)
|
|
625
|
+
@property
|
|
626
|
+
def dcss_ls(self) -> typing.List[DcssLsVariableType]:
|
|
627
|
+
return [DcssLsVariableType(x) for x in self._instance.DcssLs]
|
|
628
|
+
@property
|
|
629
|
+
def dcss_param(self) -> DcssParamVariableType:
|
|
630
|
+
return DcssParamVariableType(self._instance.DcssParam)
|
|
631
|
+
@property
|
|
632
|
+
def dcss_slave(self) -> DcssSlaveVariableType:
|
|
633
|
+
return DcssSlaveVariableType(self._instance.DcssSlave)
|
|
634
|
+
@property
|
|
635
|
+
def dcs_cfg(self) -> DcsCfgVariableType:
|
|
636
|
+
return DcsCfgVariableType(self._instance.DcsCfg)
|
|
637
|
+
@property
|
|
638
|
+
def dcs_crc_out(self) -> DcsCrcOutVariableType:
|
|
639
|
+
return DcsCrcOutVariableType(self._instance.DcsCrcOut)
|
|
640
|
+
@property
|
|
641
|
+
def dcs_nocode(self) -> DcsNocodeVariableType:
|
|
642
|
+
return DcsNocodeVariableType(self._instance.DcsNocode)
|
|
643
|
+
@property
|
|
644
|
+
def dcs_sgn(self) -> DcsSgnVariableType:
|
|
645
|
+
return DcsSgnVariableType(self._instance.DcsSgn)
|
|
646
|
+
@property
|
|
647
|
+
def dcs_version(self) -> str:
|
|
648
|
+
return self._instance.DcsVersion
|
|
649
|
+
@property
|
|
650
|
+
def deflogic(self) -> typing.List[DeflogicVariableType]:
|
|
651
|
+
return [DeflogicVariableType(x) for x in self._instance.Deflogic]
|
|
652
|
+
@property
|
|
653
|
+
def defprog_enb(self) -> bool:
|
|
654
|
+
return self._instance.DefprogEnb
|
|
655
|
+
@property
|
|
656
|
+
def defpulse(self) -> int:
|
|
657
|
+
return self._instance.Defpulse
|
|
658
|
+
@property
|
|
659
|
+
def def_acclim(self) -> int:
|
|
660
|
+
return self._instance.DefAcclim
|
|
661
|
+
@property
|
|
662
|
+
def def_wrstjnt(self) -> int:
|
|
663
|
+
return self._instance.DefWrstjnt
|
|
664
|
+
@property
|
|
665
|
+
def demo_init(self) -> DemoInitVariableType:
|
|
666
|
+
return DemoInitVariableType(self._instance.DemoInit)
|
|
667
|
+
@property
|
|
668
|
+
def dev_index(self) -> int:
|
|
669
|
+
return self._instance.DevIndex
|
|
670
|
+
@property
|
|
671
|
+
def dev_path(self) -> str:
|
|
672
|
+
return self._instance.DevPath
|
|
673
|
+
@property
|
|
674
|
+
def dhcp_clntid(self) -> typing.List[str]:
|
|
675
|
+
return self._instance.DhcpClntid
|
|
676
|
+
@property
|
|
677
|
+
def diag_grp(self) -> typing.List[DiagGrpVariableType]:
|
|
678
|
+
return [DiagGrpVariableType(x) for x in self._instance.DiagGrp]
|
|
679
|
+
@property
|
|
680
|
+
def dict_config(self) -> DictCfgVariableType:
|
|
681
|
+
return DictCfgVariableType(self._instance.DictConfig)
|
|
682
|
+
@property
|
|
683
|
+
def distbf_tts(self) -> int:
|
|
684
|
+
return self._instance.DistbfTts
|
|
685
|
+
@property
|
|
686
|
+
def distbf_ver(self) -> int:
|
|
687
|
+
return self._instance.DistbfVer
|
|
688
|
+
@property
|
|
689
|
+
def dmaurst(self) -> bool:
|
|
690
|
+
return self._instance.Dmaurst
|
|
691
|
+
@property
|
|
692
|
+
def dmsw_cfg(self) -> DmswCfgVariableType:
|
|
693
|
+
return DmswCfgVariableType(self._instance.DmswCfg)
|
|
694
|
+
@property
|
|
695
|
+
def docviewer(self) -> DocviewerVariableType:
|
|
696
|
+
return DocviewerVariableType(self._instance.Docviewer)
|
|
697
|
+
@property
|
|
698
|
+
def drc_cfg(self) -> DrcCfgVariableType:
|
|
699
|
+
return DrcCfgVariableType(self._instance.DrcCfg)
|
|
700
|
+
@property
|
|
701
|
+
def dsbl_fault(self) -> DsblFaultVariableType:
|
|
702
|
+
return DsblFaultVariableType(self._instance.DsblFault)
|
|
703
|
+
@property
|
|
704
|
+
def dsbl_gpmsk(self) -> int:
|
|
705
|
+
return self._instance.DsblGpmsk
|
|
706
|
+
@property
|
|
707
|
+
def dtdiag(self) -> DtrecVariableType:
|
|
708
|
+
return DtrecVariableType(self._instance.Dtdiag)
|
|
709
|
+
@property
|
|
710
|
+
def dtrecp(self) -> DtrecVariableType:
|
|
711
|
+
return DtrecVariableType(self._instance.Dtrecp)
|
|
712
|
+
@property
|
|
713
|
+
def dump_option(self) -> int:
|
|
714
|
+
return self._instance.DumpOption
|
|
715
|
+
@property
|
|
716
|
+
def dutr_cfg(self) -> int:
|
|
717
|
+
return self._instance.DutrCfg
|
|
718
|
+
@property
|
|
719
|
+
def dutr_cpmes(self) -> int:
|
|
720
|
+
return self._instance.DutrCpmes
|
|
721
|
+
@property
|
|
722
|
+
def duty_temp(self) -> float:
|
|
723
|
+
return self._instance.DutyTemp
|
|
724
|
+
@property
|
|
725
|
+
def duty_unit(self) -> int:
|
|
726
|
+
return self._instance.DutyUnit
|
|
727
|
+
@property
|
|
728
|
+
def dyn_brk(self) -> DynBrkVariableType:
|
|
729
|
+
return DynBrkVariableType(self._instance.DynBrk)
|
|
730
|
+
@property
|
|
731
|
+
def editor_optn(self) -> int:
|
|
732
|
+
return self._instance.EditorOptn
|
|
733
|
+
@property
|
|
734
|
+
def edit_recent(self) -> typing.List[EdtRecentVariableType]:
|
|
735
|
+
return [EdtRecentVariableType(x) for x in self._instance.EditRecent]
|
|
736
|
+
@property
|
|
737
|
+
def emgdi_stat(self) -> int:
|
|
738
|
+
return self._instance.EmgdiStat
|
|
739
|
+
@property
|
|
740
|
+
def enc_info(self) -> typing.List[EncInfoVariableType]:
|
|
741
|
+
return [EncInfoVariableType(x) for x in self._instance.EncInfo]
|
|
742
|
+
@property
|
|
743
|
+
def enetmode(self) -> typing.List[EnetmodeVariableType]:
|
|
744
|
+
return [EnetmodeVariableType(x) for x in self._instance.Enetmode]
|
|
745
|
+
@property
|
|
746
|
+
def eoatcfg(self) -> EoatcfgVariableType:
|
|
747
|
+
return EoatcfgVariableType(self._instance.Eoatcfg)
|
|
748
|
+
@property
|
|
749
|
+
def eoatdata(self) -> typing.List[EoatdataVariableType]:
|
|
750
|
+
return [EoatdataVariableType(x) for x in self._instance.Eoatdata]
|
|
751
|
+
@property
|
|
752
|
+
def erpost_log(self) -> ErpostLogVariableType:
|
|
753
|
+
return ErpostLogVariableType(self._instance.ErpostLog)
|
|
754
|
+
@property
|
|
755
|
+
def error_prog(self) -> str:
|
|
756
|
+
return self._instance.ErrorProg
|
|
757
|
+
@property
|
|
758
|
+
def error_table(self) -> typing.List[int]:
|
|
759
|
+
return self._instance.ErrorTable
|
|
760
|
+
@property
|
|
761
|
+
def errsev_num(self) -> int:
|
|
762
|
+
return self._instance.ErrsevNum
|
|
763
|
+
@property
|
|
764
|
+
def er_auto_enb(self) -> bool:
|
|
765
|
+
return self._instance.ErAutoEnb
|
|
766
|
+
@property
|
|
767
|
+
def er_noauto(self) -> ErNoautoVariableType:
|
|
768
|
+
return ErNoautoVariableType(self._instance.ErNoauto)
|
|
769
|
+
@property
|
|
770
|
+
def er_nofltr(self) -> bool:
|
|
771
|
+
return self._instance.ErNofltr
|
|
772
|
+
@property
|
|
773
|
+
def er_nohis(self) -> int:
|
|
774
|
+
return self._instance.ErNohis
|
|
775
|
+
@property
|
|
776
|
+
def er_no_alm(self) -> typing.List[ErNoalmVariableType]:
|
|
777
|
+
return [ErNoalmVariableType(x) for x in self._instance.ErNoAlm]
|
|
778
|
+
@property
|
|
779
|
+
def er_sev_noau(self) -> typing.List[bool]:
|
|
780
|
+
return self._instance.ErSevNoau
|
|
781
|
+
@property
|
|
782
|
+
def etcp_ver(self) -> str:
|
|
783
|
+
return self._instance.EtcpVer
|
|
784
|
+
@property
|
|
785
|
+
def extlog_req(self) -> int:
|
|
786
|
+
return self._instance.ExtlogReq
|
|
787
|
+
@property
|
|
788
|
+
def extlog_siz(self) -> int:
|
|
789
|
+
return self._instance.ExtlogSiz
|
|
790
|
+
@property
|
|
791
|
+
def extstksiz(self) -> int:
|
|
792
|
+
return self._instance.Extstksiz
|
|
793
|
+
@property
|
|
794
|
+
def exttol(self) -> float:
|
|
795
|
+
return self._instance.Exttol
|
|
796
|
+
@property
|
|
797
|
+
def ext_bwd_sel(self) -> bool:
|
|
798
|
+
return self._instance.ExtBwdSel
|
|
799
|
+
@property
|
|
800
|
+
def ext_di_bwd(self) -> ExtSetVariableType:
|
|
801
|
+
return ExtSetVariableType(self._instance.ExtDiBwd)
|
|
802
|
+
@property
|
|
803
|
+
def ext_di_step(self) -> ExtSetVariableType:
|
|
804
|
+
return ExtSetVariableType(self._instance.ExtDiStep)
|
|
805
|
+
@property
|
|
806
|
+
def e_stop_do(self) -> int:
|
|
807
|
+
return self._instance.EStopDo
|
|
808
|
+
@property
|
|
809
|
+
def factory_tun(self) -> int:
|
|
810
|
+
return self._instance.FactoryTun
|
|
811
|
+
@property
|
|
812
|
+
def fdr_grp(self) -> typing.List[FdrGrpVariableType]:
|
|
813
|
+
return [FdrGrpVariableType(x) for x in self._instance.FdrGrp]
|
|
814
|
+
@property
|
|
815
|
+
def feature(self) -> FeatureVariableType:
|
|
816
|
+
return FeatureVariableType(self._instance.Feature)
|
|
817
|
+
@property
|
|
818
|
+
def feat_add(self) -> typing.List[str]:
|
|
819
|
+
return self._instance.FeatAdd
|
|
820
|
+
@property
|
|
821
|
+
def feat_demo(self) -> FeatureVariableType:
|
|
822
|
+
return FeatureVariableType(self._instance.FeatDemo)
|
|
823
|
+
@property
|
|
824
|
+
def feat_demoin(self) -> int:
|
|
825
|
+
return self._instance.FeatDemoin
|
|
826
|
+
@property
|
|
827
|
+
def feat_index(self) -> int:
|
|
828
|
+
return self._instance.FeatIndex
|
|
829
|
+
@property
|
|
830
|
+
def filecomp(self) -> FilecompVariableType:
|
|
831
|
+
return FilecompVariableType(self._instance.Filecomp)
|
|
832
|
+
@property
|
|
833
|
+
def filesetup2(self) -> FileSetup2VariableType:
|
|
834
|
+
return FileSetup2VariableType(self._instance.Filesetup2)
|
|
835
|
+
@property
|
|
836
|
+
def file_ap2bck(self) -> typing.List[FileBackVariableType]:
|
|
837
|
+
return [FileBackVariableType(x) for x in self._instance.FileAp2bck]
|
|
838
|
+
@property
|
|
839
|
+
def file_appbck(self) -> typing.List[FileBackVariableType]:
|
|
840
|
+
return [FileBackVariableType(x) for x in self._instance.FileAppbck]
|
|
841
|
+
@property
|
|
842
|
+
def file_dgbck(self) -> typing.List[FileBackVariableType]:
|
|
843
|
+
return [FileBackVariableType(x) for x in self._instance.FileDgbck]
|
|
844
|
+
@property
|
|
845
|
+
def file_frsprt(self) -> bool:
|
|
846
|
+
return self._instance.FileFrsprt
|
|
847
|
+
@property
|
|
848
|
+
def file_visbck(self) -> typing.List[FileBackVariableType]:
|
|
849
|
+
return [FileBackVariableType(x) for x in self._instance.FileVisbck]
|
|
850
|
+
@property
|
|
851
|
+
def flui_config(self) -> FluiCfgVariableType:
|
|
852
|
+
return FluiCfgVariableType(self._instance.FluiConfig)
|
|
853
|
+
@property
|
|
854
|
+
def flui_data(self) -> FluiDataVariableType:
|
|
855
|
+
return FluiDataVariableType(self._instance.FluiData)
|
|
856
|
+
@property
|
|
857
|
+
def flui_result(self) -> typing.List[FluiResVariableType]:
|
|
858
|
+
return [FluiResVariableType(x) for x in self._instance.FluiResult]
|
|
859
|
+
@property
|
|
860
|
+
def fmr_cfg(self) -> FmrCfgVariableType:
|
|
861
|
+
return FmrCfgVariableType(self._instance.FmrCfg)
|
|
862
|
+
@property
|
|
863
|
+
def fno(self) -> str:
|
|
864
|
+
return self._instance.Fno
|
|
865
|
+
@property
|
|
866
|
+
def frm_chktyp(self) -> int:
|
|
867
|
+
return self._instance.FrmChktyp
|
|
868
|
+
@property
|
|
869
|
+
def fromchk_min(self) -> int:
|
|
870
|
+
return self._instance.FromchkMin
|
|
871
|
+
@property
|
|
872
|
+
def fssb_cfg(self) -> FssbCfgVariableType:
|
|
873
|
+
return FssbCfgVariableType(self._instance.FssbCfg)
|
|
874
|
+
@property
|
|
875
|
+
def ftp_def_ow(self) -> bool:
|
|
876
|
+
return self._instance.FtpDefOw
|
|
877
|
+
@property
|
|
878
|
+
def ftp_dircomp(self) -> bool:
|
|
879
|
+
return self._instance.FtpDircomp
|
|
880
|
+
@property
|
|
881
|
+
def genov_enb(self) -> bool:
|
|
882
|
+
return self._instance.GenovEnb
|
|
883
|
+
@property
|
|
884
|
+
def gravc_grp(self) -> typing.List[GravcGrpVariableType]:
|
|
885
|
+
return [GravcGrpVariableType(x) for x in self._instance.GravcGrp]
|
|
886
|
+
@property
|
|
887
|
+
def grsmt_grp(self) -> typing.List[GrsmtGrpVariableType]:
|
|
888
|
+
return [GrsmtGrpVariableType(x) for x in self._instance.GrsmtGrp]
|
|
889
|
+
@property
|
|
890
|
+
def hostc_cfg(self) -> typing.List[HostCfgVariableType]:
|
|
891
|
+
return [HostCfgVariableType(x) for x in self._instance.HostcCfg]
|
|
892
|
+
@property
|
|
893
|
+
def hostent(self) -> typing.List[HostentVariableType]:
|
|
894
|
+
return [HostentVariableType(x) for x in self._instance.Hostent]
|
|
895
|
+
@property
|
|
896
|
+
def hostname(self) -> str:
|
|
897
|
+
return self._instance.Hostname
|
|
898
|
+
@property
|
|
899
|
+
def hosts_cfg(self) -> typing.List[HostCfgVariableType]:
|
|
900
|
+
return [HostCfgVariableType(x) for x in self._instance.HostsCfg]
|
|
901
|
+
@property
|
|
902
|
+
def host_err(self) -> ErrMaskVariableType:
|
|
903
|
+
return ErrMaskVariableType(self._instance.HostErr)
|
|
904
|
+
@property
|
|
905
|
+
def host_pdusiz(self) -> int:
|
|
906
|
+
return self._instance.HostPdusiz
|
|
907
|
+
@property
|
|
908
|
+
def hscdmngrp(self) -> typing.List[HscdMngVariableType]:
|
|
909
|
+
return [HscdMngVariableType(x) for x in self._instance.Hscdmngrp]
|
|
910
|
+
@property
|
|
911
|
+
def hscd_qupd(self) -> bool:
|
|
912
|
+
return self._instance.HscdQupd
|
|
913
|
+
@property
|
|
914
|
+
def hscd_updtyp(self) -> int:
|
|
915
|
+
return self._instance.HscdUpdtyp
|
|
916
|
+
@property
|
|
917
|
+
def http_auth(self) -> typing.List[HttpAuthVariableType]:
|
|
918
|
+
return [HttpAuthVariableType(x) for x in self._instance.HttpAuth]
|
|
919
|
+
@property
|
|
920
|
+
def http_ctrl(self) -> HttpVariableType:
|
|
921
|
+
return HttpVariableType(self._instance.HttpCtrl)
|
|
922
|
+
@property
|
|
923
|
+
def hwr_config(self) -> HwrConfigVariableType:
|
|
924
|
+
return HwrConfigVariableType(self._instance.HwrConfig)
|
|
925
|
+
@property
|
|
926
|
+
def idl_cpu_pct(self) -> float:
|
|
927
|
+
return self._instance.IdlCpuPct
|
|
928
|
+
@property
|
|
929
|
+
def idl_min_pct(self) -> float:
|
|
930
|
+
return self._instance.IdlMinPct
|
|
931
|
+
@property
|
|
932
|
+
def ignr_ioerr(self) -> int:
|
|
933
|
+
return self._instance.IgnrIoerr
|
|
934
|
+
@property
|
|
935
|
+
def inpt_sim_do(self) -> int:
|
|
936
|
+
return self._instance.InptSimDo
|
|
937
|
+
@property
|
|
938
|
+
def instal_scrn(self) -> int:
|
|
939
|
+
return self._instance.InstalScrn
|
|
940
|
+
@property
|
|
941
|
+
def intpmodntol(self) -> int:
|
|
942
|
+
return self._instance.Intpmodntol
|
|
943
|
+
@property
|
|
944
|
+
def intp_prty(self) -> int:
|
|
945
|
+
return self._instance.IntpPrty
|
|
946
|
+
@property
|
|
947
|
+
def invistp_enb(self) -> int:
|
|
948
|
+
return self._instance.InvistpEnb
|
|
949
|
+
@property
|
|
950
|
+
def iolnk(self) -> typing.List[IolnkVariableType]:
|
|
951
|
+
return [IolnkVariableType(x) for x in self._instance.Iolnk]
|
|
952
|
+
@property
|
|
953
|
+
def iomaster(self) -> bool:
|
|
954
|
+
return self._instance.Iomaster
|
|
955
|
+
@property
|
|
956
|
+
def ioslave(self) -> IoslaveVariableType:
|
|
957
|
+
return IoslaveVariableType(self._instance.Ioslave)
|
|
958
|
+
@property
|
|
959
|
+
def iosramcache(self) -> bool:
|
|
960
|
+
return self._instance.Iosramcache
|
|
961
|
+
@property
|
|
962
|
+
def io_auto_cfg(self) -> bool:
|
|
963
|
+
return self._instance.IoAutoCfg
|
|
964
|
+
@property
|
|
965
|
+
def io_auto_uop(self) -> bool:
|
|
966
|
+
return self._instance.IoAutoUop
|
|
967
|
+
@property
|
|
968
|
+
def io_cmt_opt(self) -> int:
|
|
969
|
+
return self._instance.IoCmtOpt
|
|
970
|
+
@property
|
|
971
|
+
def io_cycle(self) -> bool:
|
|
972
|
+
return self._instance.IoCycle
|
|
973
|
+
@property
|
|
974
|
+
def io_def_asg(self) -> typing.List[IoDefAsgVariableType]:
|
|
975
|
+
return [IoDefAsgVariableType(x) for x in self._instance.IoDefAsg]
|
|
976
|
+
@property
|
|
977
|
+
def io_def_num(self) -> int:
|
|
978
|
+
return self._instance.IoDefNum
|
|
979
|
+
@property
|
|
980
|
+
def io_ipche(self) -> bool:
|
|
981
|
+
return self._instance.IoIpche
|
|
982
|
+
@property
|
|
983
|
+
def io_rtry_cnt(self) -> int:
|
|
984
|
+
return self._instance.IoRtryCnt
|
|
985
|
+
@property
|
|
986
|
+
def io_scrn_upd(self) -> int:
|
|
987
|
+
return self._instance.IoScrnUpd
|
|
988
|
+
@property
|
|
989
|
+
def io_uop_cfg(self) -> IoUopCfgVariableType:
|
|
990
|
+
return IoUopCfgVariableType(self._instance.IoUopCfg)
|
|
991
|
+
@property
|
|
992
|
+
def irca_acc(self) -> typing.List[ItemAccVariableType]:
|
|
993
|
+
return [ItemAccVariableType(x) for x in self._instance.IrcaAcc]
|
|
994
|
+
@property
|
|
995
|
+
def irca_buf001(self) -> typing.List[ItemBuffElVariableType]:
|
|
996
|
+
return [ItemBuffElVariableType(x) for x in self._instance.IrcaBuf001]
|
|
997
|
+
@property
|
|
998
|
+
def irca_buf002(self) -> typing.List[ItemBuffElVariableType]:
|
|
999
|
+
return [ItemBuffElVariableType(x) for x in self._instance.IrcaBuf002]
|
|
1000
|
+
@property
|
|
1001
|
+
def irca_buf003(self) -> typing.List[ItemBuffElVariableType]:
|
|
1002
|
+
return [ItemBuffElVariableType(x) for x in self._instance.IrcaBuf003]
|
|
1003
|
+
@property
|
|
1004
|
+
def irca_cfg(self) -> typing.List[IrcaCnfVariableType]:
|
|
1005
|
+
return [IrcaCnfVariableType(x) for x in self._instance.IrcaCfg]
|
|
1006
|
+
@property
|
|
1007
|
+
def irca_his001(self) -> typing.List[HistDayVariableType]:
|
|
1008
|
+
return [HistDayVariableType(x) for x in self._instance.IrcaHis001]
|
|
1009
|
+
@property
|
|
1010
|
+
def irca_his002(self) -> typing.List[HistDayVariableType]:
|
|
1011
|
+
return [HistDayVariableType(x) for x in self._instance.IrcaHis002]
|
|
1012
|
+
@property
|
|
1013
|
+
def irca_his003(self) -> typing.List[HistDayVariableType]:
|
|
1014
|
+
return [HistDayVariableType(x) for x in self._instance.IrcaHis003]
|
|
1015
|
+
@property
|
|
1016
|
+
def irca_i_cfg(self) -> typing.List[ItemNameVariableType]:
|
|
1017
|
+
return [ItemNameVariableType(x) for x in self._instance.IrcaICfg]
|
|
1018
|
+
@property
|
|
1019
|
+
def irprog_cfg(self) -> IrprogCfgVariableType:
|
|
1020
|
+
return IrprogCfgVariableType(self._instance.IrprogCfg)
|
|
1021
|
+
@property
|
|
1022
|
+
def isdt_isolc(self) -> typing.List[int]:
|
|
1023
|
+
return self._instance.IsdtIsolc
|
|
1024
|
+
@property
|
|
1025
|
+
def j23_dsp_enb(self) -> bool:
|
|
1026
|
+
return self._instance.J23DspEnb
|
|
1027
|
+
@property
|
|
1028
|
+
def jinc(self) -> JincVariableType:
|
|
1029
|
+
return JincVariableType(self._instance.Jinc)
|
|
1030
|
+
@property
|
|
1031
|
+
def jobproc_enb(self) -> int:
|
|
1032
|
+
return self._instance.JobprocEnb
|
|
1033
|
+
@property
|
|
1034
|
+
def jog_in_auto(self) -> int:
|
|
1035
|
+
return self._instance.JogInAuto
|
|
1036
|
+
@property
|
|
1037
|
+
def jposrec_enb(self) -> int:
|
|
1038
|
+
return self._instance.JposrecEnb
|
|
1039
|
+
@property
|
|
1040
|
+
def kanji_mask(self) -> int:
|
|
1041
|
+
return self._instance.KanjiMask
|
|
1042
|
+
@property
|
|
1043
|
+
def karelmon(self) -> KarelmonVariableType:
|
|
1044
|
+
return KarelmonVariableType(self._instance.Karelmon)
|
|
1045
|
+
@property
|
|
1046
|
+
def karel_cfg(self) -> KarelCfgVariableType:
|
|
1047
|
+
return KarelCfgVariableType(self._instance.KarelCfg)
|
|
1048
|
+
@property
|
|
1049
|
+
def karel_enb(self) -> int:
|
|
1050
|
+
return self._instance.KarelEnb
|
|
1051
|
+
@property
|
|
1052
|
+
def kcl_lin_num(self) -> bool:
|
|
1053
|
+
return self._instance.KclLinNum
|
|
1054
|
+
@property
|
|
1055
|
+
def keylogging(self) -> int:
|
|
1056
|
+
return self._instance.Keylogging
|
|
1057
|
+
@property
|
|
1058
|
+
def language(self) -> str:
|
|
1059
|
+
return self._instance.Language
|
|
1060
|
+
@property
|
|
1061
|
+
def lgcfg(self) -> LgcfgVariableType:
|
|
1062
|
+
return LgcfgVariableType(self._instance.Lgcfg)
|
|
1063
|
+
@property
|
|
1064
|
+
def ln_disp(self) -> LnDispVariableType:
|
|
1065
|
+
return LnDispVariableType(self._instance.LnDisp)
|
|
1066
|
+
@property
|
|
1067
|
+
def loctol(self) -> float:
|
|
1068
|
+
return self._instance.Loctol
|
|
1069
|
+
@property
|
|
1070
|
+
def logbook(self) -> LogbookVariableType:
|
|
1071
|
+
return LogbookVariableType(self._instance.Logbook)
|
|
1072
|
+
@property
|
|
1073
|
+
def log_buff(self) -> typing.List[LogBuffVariableType]:
|
|
1074
|
+
return [LogBuffVariableType(x) for x in self._instance.LogBuff]
|
|
1075
|
+
@property
|
|
1076
|
+
def log_dcs(self) -> LogDcsVariableType:
|
|
1077
|
+
return LogDcsVariableType(self._instance.LogDcs)
|
|
1078
|
+
@property
|
|
1079
|
+
def log_dio(self) -> typing.List[LogDioVariableType]:
|
|
1080
|
+
return [LogDioVariableType(x) for x in self._instance.LogDio]
|
|
1081
|
+
@property
|
|
1082
|
+
def log_er_itm(self) -> typing.List[int]:
|
|
1083
|
+
return self._instance.LogErItm
|
|
1084
|
+
@property
|
|
1085
|
+
def log_er_sev(self) -> int:
|
|
1086
|
+
return self._instance.LogErSev
|
|
1087
|
+
@property
|
|
1088
|
+
def log_er_typ(self) -> typing.List[int]:
|
|
1089
|
+
return self._instance.LogErTyp
|
|
1090
|
+
@property
|
|
1091
|
+
def log_rec_rst(self) -> bool:
|
|
1092
|
+
return self._instance.LogRecRst
|
|
1093
|
+
@property
|
|
1094
|
+
def log_scrn_fl(self) -> typing.List[LogScrnFlVariableType]:
|
|
1095
|
+
return [LogScrnFlVariableType(x) for x in self._instance.LogScrnFl]
|
|
1096
|
+
@property
|
|
1097
|
+
def log_tpkey(self) -> typing.List[int]:
|
|
1098
|
+
return self._instance.LogTpkey
|
|
1099
|
+
@property
|
|
1100
|
+
def longnam_enb(self) -> bool:
|
|
1101
|
+
return self._instance.LongnamEnb
|
|
1102
|
+
@property
|
|
1103
|
+
def lups_digit(self) -> int:
|
|
1104
|
+
return self._instance.LupsDigit
|
|
1105
|
+
@property
|
|
1106
|
+
def lu_loadprog(self) -> str:
|
|
1107
|
+
return self._instance.LuLoadprog
|
|
1108
|
+
@property
|
|
1109
|
+
def maxualrmnum(self) -> int:
|
|
1110
|
+
return self._instance.Maxualrmnum
|
|
1111
|
+
@property
|
|
1112
|
+
def max_dig_prt(self) -> int:
|
|
1113
|
+
return self._instance.MaxDigPrt
|
|
1114
|
+
@property
|
|
1115
|
+
def mcsp(self) -> McspVariableType:
|
|
1116
|
+
return McspVariableType(self._instance.Mcsp)
|
|
1117
|
+
@property
|
|
1118
|
+
def mcsp_grp(self) -> typing.List[McspGrpVariableType]:
|
|
1119
|
+
return [McspGrpVariableType(x) for x in self._instance.McspGrp]
|
|
1120
|
+
@property
|
|
1121
|
+
def md_ldxdisab(self) -> int:
|
|
1122
|
+
return self._instance.MdLdxdisab
|
|
1123
|
+
@property
|
|
1124
|
+
def memo_apname(self) -> typing.List[str]:
|
|
1125
|
+
return self._instance.MemoApname
|
|
1126
|
+
@property
|
|
1127
|
+
def mfrq_cfg(self) -> MfrqCfgVariableType:
|
|
1128
|
+
return MfrqCfgVariableType(self._instance.MfrqCfg)
|
|
1129
|
+
@property
|
|
1130
|
+
def mfrq_grp(self) -> typing.List[MfrqGrpVariableType]:
|
|
1131
|
+
return [MfrqGrpVariableType(x) for x in self._instance.MfrqGrp]
|
|
1132
|
+
@property
|
|
1133
|
+
def misc_mstr(self) -> MiscMstrVariableType:
|
|
1134
|
+
return MiscMstrVariableType(self._instance.MiscMstr)
|
|
1135
|
+
@property
|
|
1136
|
+
def misc_scd(self) -> typing.List[MiscScdVariableType]:
|
|
1137
|
+
return [MiscScdVariableType(x) for x in self._instance.MiscScd]
|
|
1138
|
+
@property
|
|
1139
|
+
def mkcfg(self) -> MkcfgVariableType:
|
|
1140
|
+
return MkcfgVariableType(self._instance.Mkcfg)
|
|
1141
|
+
@property
|
|
1142
|
+
def mltarm_cfg(self) -> MltarmCfgVariableType:
|
|
1143
|
+
return MltarmCfgVariableType(self._instance.MltarmCfg)
|
|
1144
|
+
@property
|
|
1145
|
+
def mmetpu(self) -> int:
|
|
1146
|
+
return self._instance.Mmetpu
|
|
1147
|
+
@property
|
|
1148
|
+
def mndsp_adcol(self) -> int:
|
|
1149
|
+
return self._instance.MndspAdcol
|
|
1150
|
+
@property
|
|
1151
|
+
def mndsp_cmnt(self) -> int:
|
|
1152
|
+
return self._instance.MndspCmnt
|
|
1153
|
+
@property
|
|
1154
|
+
def mndsp_fncmn(self) -> int:
|
|
1155
|
+
return self._instance.MndspFncmn
|
|
1156
|
+
@property
|
|
1157
|
+
def mndsp_fstli(self) -> int:
|
|
1158
|
+
return self._instance.MndspFstli
|
|
1159
|
+
@property
|
|
1160
|
+
def mndsp_mst(self) -> MndspMstVariableType:
|
|
1161
|
+
return MndspMstVariableType(self._instance.MndspMst)
|
|
1162
|
+
@property
|
|
1163
|
+
def mndsp_poscf(self) -> int:
|
|
1164
|
+
return self._instance.MndspPoscf
|
|
1165
|
+
@property
|
|
1166
|
+
def mndsp_prpmt(self) -> int:
|
|
1167
|
+
return self._instance.MndspPrpmt
|
|
1168
|
+
@property
|
|
1169
|
+
def mndsp_pstol(self) -> typing.List[MndsppstlVariableType]:
|
|
1170
|
+
return [MndsppstlVariableType(x) for x in self._instance.MndspPstol]
|
|
1171
|
+
@property
|
|
1172
|
+
def mnsing_chk(self) -> bool:
|
|
1173
|
+
return self._instance.MnsingChk
|
|
1174
|
+
@property
|
|
1175
|
+
def modaq_cfg(self) -> ModaqCfgVariableType:
|
|
1176
|
+
return ModaqCfgVariableType(self._instance.ModaqCfg)
|
|
1177
|
+
@property
|
|
1178
|
+
def modaq_dev(self) -> str:
|
|
1179
|
+
return self._instance.ModaqDev
|
|
1180
|
+
@property
|
|
1181
|
+
def modaq_hsize(self) -> int:
|
|
1182
|
+
return self._instance.ModaqHsize
|
|
1183
|
+
@property
|
|
1184
|
+
def modaq_task(self) -> str:
|
|
1185
|
+
return self._instance.ModaqTask
|
|
1186
|
+
@property
|
|
1187
|
+
def modaq_trig(self) -> typing.List[FxTriggerVariableType]:
|
|
1188
|
+
return [FxTriggerVariableType(x) for x in self._instance.ModaqTrig]
|
|
1189
|
+
@property
|
|
1190
|
+
def modaq_type(self) -> int:
|
|
1191
|
+
return self._instance.ModaqType
|
|
1192
|
+
@property
|
|
1193
|
+
def modem_inf(self) -> typing.List[ModemInfVariableType]:
|
|
1194
|
+
return [ModemInfVariableType(x) for x in self._instance.ModemInf]
|
|
1195
|
+
@property
|
|
1196
|
+
def monitor_msg(self) -> typing.List[str]:
|
|
1197
|
+
return self._instance.MonitorMsg
|
|
1198
|
+
@property
|
|
1199
|
+
def mor_grp_sv(self) -> typing.List[MorGrpSvVariableType]:
|
|
1200
|
+
return [MorGrpSvVariableType(x) for x in self._instance.MorGrpSv]
|
|
1201
|
+
@property
|
|
1202
|
+
def motion_dbg(self) -> MotionDbgVariableType:
|
|
1203
|
+
return MotionDbgVariableType(self._instance.MotionDbg)
|
|
1204
|
+
@property
|
|
1205
|
+
def mpl_name(self) -> str:
|
|
1206
|
+
return self._instance.MplName
|
|
1207
|
+
@property
|
|
1208
|
+
def mr_hist(self) -> typing.List[MrHistVariableType]:
|
|
1209
|
+
return [MrHistVariableType(x) for x in self._instance.MrHist]
|
|
1210
|
+
@property
|
|
1211
|
+
def mskcfmap(self) -> typing.List[int]:
|
|
1212
|
+
return self._instance.Mskcfmap
|
|
1213
|
+
@property
|
|
1214
|
+
def mskconrel(self) -> int:
|
|
1215
|
+
return self._instance.Mskconrel
|
|
1216
|
+
@property
|
|
1217
|
+
def mskexcfenb(self) -> int:
|
|
1218
|
+
return self._instance.Mskexcfenb
|
|
1219
|
+
@property
|
|
1220
|
+
def mskexcffnc(self) -> int:
|
|
1221
|
+
return self._instance.Mskexcffnc
|
|
1222
|
+
@property
|
|
1223
|
+
def mskjogovlim(self) -> int:
|
|
1224
|
+
return self._instance.Mskjogovlim
|
|
1225
|
+
@property
|
|
1226
|
+
def mskkey(self) -> int:
|
|
1227
|
+
return self._instance.Mskkey
|
|
1228
|
+
@property
|
|
1229
|
+
def mskkey_panl(self) -> int:
|
|
1230
|
+
return self._instance.MskkeyPanl
|
|
1231
|
+
@property
|
|
1232
|
+
def mskrunovlim(self) -> int:
|
|
1233
|
+
return self._instance.Mskrunovlim
|
|
1234
|
+
@property
|
|
1235
|
+
def msksfspdtyp(self) -> int:
|
|
1236
|
+
return self._instance.Msksfspdtyp
|
|
1237
|
+
@property
|
|
1238
|
+
def msksign(self) -> int:
|
|
1239
|
+
return self._instance.Msksign
|
|
1240
|
+
@property
|
|
1241
|
+
def mskt1motlim(self) -> int:
|
|
1242
|
+
return self._instance.Mskt1motlim
|
|
1243
|
+
@property
|
|
1244
|
+
def msk_ce_grp(self) -> typing.List[MskCeGrpVariableType]:
|
|
1245
|
+
return [MskCeGrpVariableType(x) for x in self._instance.MskCeGrp]
|
|
1246
|
+
@property
|
|
1247
|
+
def msqz_edit(self) -> int:
|
|
1248
|
+
return self._instance.MsqzEdit
|
|
1249
|
+
@property
|
|
1250
|
+
def mtcom_cfg(self) -> typing.List[MtcomCfgVariableType]:
|
|
1251
|
+
return [MtcomCfgVariableType(x) for x in self._instance.MtcomCfg]
|
|
1252
|
+
@property
|
|
1253
|
+
def mt_arc_enb(self) -> bool:
|
|
1254
|
+
return self._instance.MtArcEnb
|
|
1255
|
+
@property
|
|
1256
|
+
def mt_mn_mode(self) -> int:
|
|
1257
|
+
return self._instance.MtMnMode
|
|
1258
|
+
@property
|
|
1259
|
+
def mt_spl_enb(self) -> bool:
|
|
1260
|
+
return self._instance.MtSplEnb
|
|
1261
|
+
@property
|
|
1262
|
+
def muap_cplenb(self) -> bool:
|
|
1263
|
+
return self._instance.MuapCplenb
|
|
1264
|
+
@property
|
|
1265
|
+
def nocheck(self) -> typing.List[str]:
|
|
1266
|
+
return self._instance.Nocheck
|
|
1267
|
+
@property
|
|
1268
|
+
def no_wait_ln(self) -> int:
|
|
1269
|
+
return self._instance.NoWaitLn
|
|
1270
|
+
@property
|
|
1271
|
+
def num_rspace(self) -> typing.List[int]:
|
|
1272
|
+
return self._instance.NumRspace
|
|
1273
|
+
@property
|
|
1274
|
+
def odrdsp_enb(self) -> int:
|
|
1275
|
+
return self._instance.OdrdspEnb
|
|
1276
|
+
@property
|
|
1277
|
+
def offset_cart(self) -> bool:
|
|
1278
|
+
return self._instance.OffsetCart
|
|
1279
|
+
@property
|
|
1280
|
+
def offset_dis(self) -> bool:
|
|
1281
|
+
return self._instance.OffsetDis
|
|
1282
|
+
@property
|
|
1283
|
+
def ofs_at_mark(self) -> int:
|
|
1284
|
+
return self._instance.OfsAtMark
|
|
1285
|
+
@property
|
|
1286
|
+
def open_files(self) -> int:
|
|
1287
|
+
return self._instance.OpenFiles
|
|
1288
|
+
@property
|
|
1289
|
+
def option_io(self) -> int:
|
|
1290
|
+
return self._instance.OptionIo
|
|
1291
|
+
@property
|
|
1292
|
+
def optm_prg(self) -> str:
|
|
1293
|
+
return self._instance.OptmPrg
|
|
1294
|
+
@property
|
|
1295
|
+
def opwork(self) -> OpworkVariableType:
|
|
1296
|
+
return OpworkVariableType(self._instance.Opwork)
|
|
1297
|
+
@property
|
|
1298
|
+
def org_dsbl(self) -> typing.List[int]:
|
|
1299
|
+
return self._instance.OrgDsbl
|
|
1300
|
+
@property
|
|
1301
|
+
def orienttol(self) -> float:
|
|
1302
|
+
return self._instance.Orienttol
|
|
1303
|
+
@property
|
|
1304
|
+
def out_sim_do(self) -> int:
|
|
1305
|
+
return self._instance.OutSimDo
|
|
1306
|
+
@property
|
|
1307
|
+
def ovrdslct(self) -> OvrdslctVariableType:
|
|
1308
|
+
return OvrdslctVariableType(self._instance.Ovrdslct)
|
|
1309
|
+
@property
|
|
1310
|
+
def ovrd_pexe(self) -> bool:
|
|
1311
|
+
return self._instance.OvrdPexe
|
|
1312
|
+
@property
|
|
1313
|
+
def ovrd_rate(self) -> int:
|
|
1314
|
+
return self._instance.OvrdRate
|
|
1315
|
+
@property
|
|
1316
|
+
def ovrd_setup(self) -> OvrdSetupVariableType:
|
|
1317
|
+
return OvrdSetupVariableType(self._instance.OvrdSetup)
|
|
1318
|
+
@property
|
|
1319
|
+
def palcfg(self) -> PlcfgVariableType:
|
|
1320
|
+
return PlcfgVariableType(self._instance.Palcfg)
|
|
1321
|
+
@property
|
|
1322
|
+
def pal_pos_chk(self) -> bool:
|
|
1323
|
+
return self._instance.PalPosChk
|
|
1324
|
+
@property
|
|
1325
|
+
def param_menu(self) -> typing.List[str]:
|
|
1326
|
+
return self._instance.ParamMenu
|
|
1327
|
+
@property
|
|
1328
|
+
def pause_prog(self) -> str:
|
|
1329
|
+
return self._instance.PauseProg
|
|
1330
|
+
@property
|
|
1331
|
+
def pccrt(self) -> int:
|
|
1332
|
+
return self._instance.Pccrt
|
|
1333
|
+
@property
|
|
1334
|
+
def pccrt_host(self) -> str:
|
|
1335
|
+
return self._instance.PccrtHost
|
|
1336
|
+
@property
|
|
1337
|
+
def pctp(self) -> int:
|
|
1338
|
+
return self._instance.Pctp
|
|
1339
|
+
@property
|
|
1340
|
+
def pctp_host(self) -> str:
|
|
1341
|
+
return self._instance.PctpHost
|
|
1342
|
+
@property
|
|
1343
|
+
def pc_timeout(self) -> int:
|
|
1344
|
+
return self._instance.PcTimeout
|
|
1345
|
+
@property
|
|
1346
|
+
def pgdebug(self) -> int:
|
|
1347
|
+
return self._instance.Pgdebug
|
|
1348
|
+
@property
|
|
1349
|
+
def pginp_flmsk(self) -> int:
|
|
1350
|
+
return self._instance.PginpFlmsk
|
|
1351
|
+
@property
|
|
1352
|
+
def pginp_fltr(self) -> int:
|
|
1353
|
+
return self._instance.PginpFltr
|
|
1354
|
+
@property
|
|
1355
|
+
def pginp_pgatr(self) -> typing.List[int]:
|
|
1356
|
+
return self._instance.PginpPgatr
|
|
1357
|
+
@property
|
|
1358
|
+
def pginp_pgchk(self) -> int:
|
|
1359
|
+
return self._instance.PginpPgchk
|
|
1360
|
+
@property
|
|
1361
|
+
def pginp_type(self) -> typing.List[str]:
|
|
1362
|
+
return self._instance.PginpType
|
|
1363
|
+
@property
|
|
1364
|
+
def pginp_word(self) -> typing.List[str]:
|
|
1365
|
+
return self._instance.PginpWord
|
|
1366
|
+
@property
|
|
1367
|
+
def pglog(self) -> int:
|
|
1368
|
+
return self._instance.Pglog
|
|
1369
|
+
@property
|
|
1370
|
+
def pgtracectl(self) -> typing.List[TracectlVariableType]:
|
|
1371
|
+
return [TracectlVariableType(x) for x in self._instance.Pgtracectl]
|
|
1372
|
+
@property
|
|
1373
|
+
def pgtracedt(self) -> typing.List[TracedtVariableType]:
|
|
1374
|
+
return [TracedtVariableType(x) for x in self._instance.Pgtracedt]
|
|
1375
|
+
@property
|
|
1376
|
+
def pgtracelen(self) -> int:
|
|
1377
|
+
return self._instance.Pgtracelen
|
|
1378
|
+
@property
|
|
1379
|
+
def pgtrace_up(self) -> TraceupVariableType:
|
|
1380
|
+
return TraceupVariableType(self._instance.PgtraceUp)
|
|
1381
|
+
@property
|
|
1382
|
+
def pg_cfg(self) -> PgCfgVariableType:
|
|
1383
|
+
return PgCfgVariableType(self._instance.PgCfg)
|
|
1384
|
+
@property
|
|
1385
|
+
def pg_defspd(self) -> PgDefspdVariableType:
|
|
1386
|
+
return PgDefspdVariableType(self._instance.PgDefspd)
|
|
1387
|
+
@property
|
|
1388
|
+
def ping_ctrl(self) -> PingVariableType:
|
|
1389
|
+
return PingVariableType(self._instance.PingCtrl)
|
|
1390
|
+
@property
|
|
1391
|
+
def pipe_config(self) -> PipeCfgVariableType:
|
|
1392
|
+
return PipeCfgVariableType(self._instance.PipeConfig)
|
|
1393
|
+
@property
|
|
1394
|
+
def plid_cfg(self) -> PlidCfgVariableType:
|
|
1395
|
+
return PlidCfgVariableType(self._instance.PlidCfg)
|
|
1396
|
+
@property
|
|
1397
|
+
def plid_cllb(self) -> typing.List[PlidCllbVariableType]:
|
|
1398
|
+
return [PlidCllbVariableType(x) for x in self._instance.PlidCllb]
|
|
1399
|
+
@property
|
|
1400
|
+
def plid_know_m(self) -> bool:
|
|
1401
|
+
return self._instance.PlidKnowM
|
|
1402
|
+
@property
|
|
1403
|
+
def plim_grp(self) -> typing.List[PlimGrpVariableType]:
|
|
1404
|
+
return [PlimGrpVariableType(x) for x in self._instance.PlimGrp]
|
|
1405
|
+
@property
|
|
1406
|
+
def plmr_grp(self) -> typing.List[PlmrGrpVariableType]:
|
|
1407
|
+
return [PlmrGrpVariableType(x) for x in self._instance.PlmrGrp]
|
|
1408
|
+
@property
|
|
1409
|
+
def ploadbanfwd(self) -> bool:
|
|
1410
|
+
return self._instance.Ploadbanfwd
|
|
1411
|
+
@property
|
|
1412
|
+
def plst_grp6(self) -> typing.List[PlstGrpVariableType]:
|
|
1413
|
+
return [PlstGrpVariableType(x) for x in self._instance.PlstGrp6]
|
|
1414
|
+
@property
|
|
1415
|
+
def plst_grp7(self) -> typing.List[PlstGrpVariableType]:
|
|
1416
|
+
return [PlstGrpVariableType(x) for x in self._instance.PlstGrp7]
|
|
1417
|
+
@property
|
|
1418
|
+
def plst_grp8(self) -> typing.List[PlstGrpVariableType]:
|
|
1419
|
+
return [PlstGrpVariableType(x) for x in self._instance.PlstGrp8]
|
|
1420
|
+
@property
|
|
1421
|
+
def plst_ovld(self) -> typing.List[bool]:
|
|
1422
|
+
return self._instance.PlstOvld
|
|
1423
|
+
@property
|
|
1424
|
+
def pls_cmp_lim(self) -> int:
|
|
1425
|
+
return self._instance.PlsCmpLim
|
|
1426
|
+
@property
|
|
1427
|
+
def pls_er_chk(self) -> int:
|
|
1428
|
+
return self._instance.PlsErChk
|
|
1429
|
+
@property
|
|
1430
|
+
def pls_er_lim(self) -> int:
|
|
1431
|
+
return self._instance.PlsErLim
|
|
1432
|
+
@property
|
|
1433
|
+
def pls_er_rst(self) -> bool:
|
|
1434
|
+
return self._instance.PlsErRst
|
|
1435
|
+
@property
|
|
1436
|
+
def pl_mod(self) -> bool:
|
|
1437
|
+
return self._instance.PlMod
|
|
1438
|
+
@property
|
|
1439
|
+
def pl_mod_st(self) -> bool:
|
|
1440
|
+
return self._instance.PlModSt
|
|
1441
|
+
@property
|
|
1442
|
+
def pl_res_g1(self) -> typing.List[PlResGVariableType]:
|
|
1443
|
+
return [PlResGVariableType(x) for x in self._instance.PlResG1]
|
|
1444
|
+
@property
|
|
1445
|
+
def pl_res_g2(self) -> typing.List[PlResGVariableType]:
|
|
1446
|
+
return [PlResGVariableType(x) for x in self._instance.PlResG2]
|
|
1447
|
+
@property
|
|
1448
|
+
def pl_res_g3(self) -> typing.List[PlResGVariableType]:
|
|
1449
|
+
return [PlResGVariableType(x) for x in self._instance.PlResG3]
|
|
1450
|
+
@property
|
|
1451
|
+
def pl_res_g4(self) -> typing.List[PlResGVariableType]:
|
|
1452
|
+
return [PlResGVariableType(x) for x in self._instance.PlResG4]
|
|
1453
|
+
@property
|
|
1454
|
+
def pl_res_g5(self) -> typing.List[PlResGVariableType]:
|
|
1455
|
+
return [PlResGVariableType(x) for x in self._instance.PlResG5]
|
|
1456
|
+
@property
|
|
1457
|
+
def pl_res_g6(self) -> typing.List[PlResGVariableType]:
|
|
1458
|
+
return [PlResGVariableType(x) for x in self._instance.PlResG6]
|
|
1459
|
+
@property
|
|
1460
|
+
def pl_res_g7(self) -> typing.List[PlResGVariableType]:
|
|
1461
|
+
return [PlResGVariableType(x) for x in self._instance.PlResG7]
|
|
1462
|
+
@property
|
|
1463
|
+
def pl_res_g8(self) -> typing.List[PlResGVariableType]:
|
|
1464
|
+
return [PlResGVariableType(x) for x in self._instance.PlResG8]
|
|
1465
|
+
@property
|
|
1466
|
+
def pl_thr_inrt(self) -> int:
|
|
1467
|
+
return self._instance.PlThrInrt
|
|
1468
|
+
@property
|
|
1469
|
+
def pl_thr_mass(self) -> int:
|
|
1470
|
+
return self._instance.PlThrMass
|
|
1471
|
+
@property
|
|
1472
|
+
def pl_thr_mmnt(self) -> int:
|
|
1473
|
+
return self._instance.PlThrMmnt
|
|
1474
|
+
@property
|
|
1475
|
+
def pmon_queue(self) -> PmonQueVariableType:
|
|
1476
|
+
return PmonQueVariableType(self._instance.PmonQueue)
|
|
1477
|
+
@property
|
|
1478
|
+
def pns_cur_lin(self) -> int:
|
|
1479
|
+
return self._instance.PnsCurLin
|
|
1480
|
+
@property
|
|
1481
|
+
def pns_end_cur(self) -> bool:
|
|
1482
|
+
return self._instance.PnsEndCur
|
|
1483
|
+
@property
|
|
1484
|
+
def pns_end_exe(self) -> bool:
|
|
1485
|
+
return self._instance.PnsEndExe
|
|
1486
|
+
@property
|
|
1487
|
+
def pns_number(self) -> int:
|
|
1488
|
+
return self._instance.PnsNumber
|
|
1489
|
+
@property
|
|
1490
|
+
def pns_option(self) -> int:
|
|
1491
|
+
return self._instance.PnsOption
|
|
1492
|
+
@property
|
|
1493
|
+
def pns_program(self) -> str:
|
|
1494
|
+
return self._instance.PnsProgram
|
|
1495
|
+
@property
|
|
1496
|
+
def pns_task_id(self) -> int:
|
|
1497
|
+
return self._instance.PnsTaskId
|
|
1498
|
+
@property
|
|
1499
|
+
def pocfg(self) -> PocfgVariableType:
|
|
1500
|
+
return PocfgVariableType(self._instance.Pocfg)
|
|
1501
|
+
@property
|
|
1502
|
+
def pos_edit(self) -> PosEditVariableType:
|
|
1503
|
+
return PosEditVariableType(self._instance.PosEdit)
|
|
1504
|
+
@property
|
|
1505
|
+
def prgadj(self) -> PrgadjVariableType:
|
|
1506
|
+
return PrgadjVariableType(self._instance.Prgadj)
|
|
1507
|
+
@property
|
|
1508
|
+
def prgns_cfg(self) -> PrgnsCfgVariableType:
|
|
1509
|
+
return PrgnsCfgVariableType(self._instance.PrgnsCfg)
|
|
1510
|
+
@property
|
|
1511
|
+
def prgns_grp(self) -> typing.List[PrgnsGrpVariableType]:
|
|
1512
|
+
return [PrgnsGrpVariableType(x) for x in self._instance.PrgnsGrp]
|
|
1513
|
+
@property
|
|
1514
|
+
def prgns_pref(self) -> PrgnsPrefVariableType:
|
|
1515
|
+
return PrgnsPrefVariableType(self._instance.PrgnsPref)
|
|
1516
|
+
@property
|
|
1517
|
+
def priority(self) -> int:
|
|
1518
|
+
return self._instance.Priority
|
|
1519
|
+
@property
|
|
1520
|
+
def product_id(self) -> str:
|
|
1521
|
+
return self._instance.ProductId
|
|
1522
|
+
@property
|
|
1523
|
+
def proggrp_tgl(self) -> int:
|
|
1524
|
+
return self._instance.ProggrpTgl
|
|
1525
|
+
@property
|
|
1526
|
+
def prohibit_do(self) -> bool:
|
|
1527
|
+
return self._instance.ProhibitDo
|
|
1528
|
+
@property
|
|
1529
|
+
def protoent(self) -> typing.List[ProtoentVariableType]:
|
|
1530
|
+
return [ProtoentVariableType(x) for x in self._instance.Protoent]
|
|
1531
|
+
@property
|
|
1532
|
+
def proxy_cfg(self) -> ProxyCfgVariableType:
|
|
1533
|
+
return ProxyCfgVariableType(self._instance.ProxyCfg)
|
|
1534
|
+
@property
|
|
1535
|
+
def pro_cfg(self) -> PfCfgVariableType:
|
|
1536
|
+
return PfCfgVariableType(self._instance.ProCfg)
|
|
1537
|
+
@property
|
|
1538
|
+
def pro_enhance(self) -> PfEnhanceVariableType:
|
|
1539
|
+
return PfEnhanceVariableType(self._instance.ProEnhance)
|
|
1540
|
+
@property
|
|
1541
|
+
def pro_pref(self) -> PfPrefVariableType:
|
|
1542
|
+
return PfPrefVariableType(self._instance.ProPref)
|
|
1543
|
+
@property
|
|
1544
|
+
def prport_num(self) -> int:
|
|
1545
|
+
return self._instance.PrportNum
|
|
1546
|
+
@property
|
|
1547
|
+
def pr_cartrep(self) -> bool:
|
|
1548
|
+
return self._instance.PrCartrep
|
|
1549
|
+
@property
|
|
1550
|
+
def pskstat(self) -> int:
|
|
1551
|
+
return self._instance.Pskstat
|
|
1552
|
+
@property
|
|
1553
|
+
def pslgset(self) -> PslgsetVariableType:
|
|
1554
|
+
return PslgsetVariableType(self._instance.Pslgset)
|
|
1555
|
+
@property
|
|
1556
|
+
def pslgtemp(self) -> PslgtempVariableType:
|
|
1557
|
+
return PslgtempVariableType(self._instance.Pslgtemp)
|
|
1558
|
+
@property
|
|
1559
|
+
def pslgversion(self) -> str:
|
|
1560
|
+
return self._instance.Pslgversion
|
|
1561
|
+
@property
|
|
1562
|
+
def pssave(self) -> PssaveVariableType:
|
|
1563
|
+
return PssaveVariableType(self._instance.Pssave)
|
|
1564
|
+
@property
|
|
1565
|
+
def purge_enbl(self) -> bool:
|
|
1566
|
+
return self._instance.PurgeEnbl
|
|
1567
|
+
@property
|
|
1568
|
+
def pwf_io(self) -> int:
|
|
1569
|
+
return self._instance.PwfIo
|
|
1570
|
+
@property
|
|
1571
|
+
def pwrup_delay(self) -> PwrupDlyVariableType:
|
|
1572
|
+
return PwrupDlyVariableType(self._instance.PwrupDelay)
|
|
1573
|
+
@property
|
|
1574
|
+
def pwr_normal(self) -> str:
|
|
1575
|
+
return self._instance.PwrNormal
|
|
1576
|
+
@property
|
|
1577
|
+
def pwr_semi(self) -> str:
|
|
1578
|
+
return self._instance.PwrSemi
|
|
1579
|
+
@property
|
|
1580
|
+
def qskip_grp(self) -> typing.List[QskipGrpVariableType]:
|
|
1581
|
+
return [QskipGrpVariableType(x) for x in self._instance.QskipGrp]
|
|
1582
|
+
@property
|
|
1583
|
+
def rbtif(self) -> int:
|
|
1584
|
+
return self._instance.Rbtif
|
|
1585
|
+
@property
|
|
1586
|
+
def rcvtmout(self) -> int:
|
|
1587
|
+
return self._instance.Rcvtmout
|
|
1588
|
+
@property
|
|
1589
|
+
def rdcr_grp(self) -> typing.List[RdcrGrpVariableType]:
|
|
1590
|
+
return [RdcrGrpVariableType(x) for x in self._instance.RdcrGrp]
|
|
1591
|
+
@property
|
|
1592
|
+
def rdio_type(self) -> typing.List[int]:
|
|
1593
|
+
return self._instance.RdioType
|
|
1594
|
+
@property
|
|
1595
|
+
def redprot_cfg(self) -> RedprotCfgVariableType:
|
|
1596
|
+
return RedprotCfgVariableType(self._instance.RedprotCfg)
|
|
1597
|
+
@property
|
|
1598
|
+
def redprot_grp(self) -> typing.List[RedprotGrpVariableType]:
|
|
1599
|
+
return [RedprotGrpVariableType(x) for x in self._instance.RedprotGrp]
|
|
1600
|
+
@property
|
|
1601
|
+
def refpos1(self) -> typing.List[Refpos11VariableType]:
|
|
1602
|
+
return [Refpos11VariableType(x) for x in self._instance.Refpos1]
|
|
1603
|
+
@property
|
|
1604
|
+
def refpos2(self) -> typing.List[Refpos21VariableType]:
|
|
1605
|
+
return [Refpos21VariableType(x) for x in self._instance.Refpos2]
|
|
1606
|
+
@property
|
|
1607
|
+
def refpos3(self) -> typing.List[Refpos31VariableType]:
|
|
1608
|
+
return [Refpos31VariableType(x) for x in self._instance.Refpos3]
|
|
1609
|
+
@property
|
|
1610
|
+
def refpos4(self) -> typing.List[Refpos41VariableType]:
|
|
1611
|
+
return [Refpos41VariableType(x) for x in self._instance.Refpos4]
|
|
1612
|
+
@property
|
|
1613
|
+
def refpos5(self) -> typing.List[Refpos51VariableType]:
|
|
1614
|
+
return [Refpos51VariableType(x) for x in self._instance.Refpos5]
|
|
1615
|
+
@property
|
|
1616
|
+
def refpos6(self) -> typing.List[Refpos61VariableType]:
|
|
1617
|
+
return [Refpos61VariableType(x) for x in self._instance.Refpos6]
|
|
1618
|
+
@property
|
|
1619
|
+
def refpos7(self) -> typing.List[Refpos71VariableType]:
|
|
1620
|
+
return [Refpos71VariableType(x) for x in self._instance.Refpos7]
|
|
1621
|
+
@property
|
|
1622
|
+
def refpos8(self) -> typing.List[Refpos81VariableType]:
|
|
1623
|
+
return [Refpos81VariableType(x) for x in self._instance.Refpos8]
|
|
1624
|
+
@property
|
|
1625
|
+
def refposmask(self) -> typing.List[RefpsmskVariableType]:
|
|
1626
|
+
return [RefpsmskVariableType(x) for x in self._instance.Refposmask]
|
|
1627
|
+
@property
|
|
1628
|
+
def refposmaxno(self) -> typing.List[int]:
|
|
1629
|
+
return self._instance.Refposmaxno
|
|
1630
|
+
@property
|
|
1631
|
+
def remote(self) -> int:
|
|
1632
|
+
return self._instance.Remote
|
|
1633
|
+
@property
|
|
1634
|
+
def remote_cfg(self) -> RemoteCfgVariableType:
|
|
1635
|
+
return RemoteCfgVariableType(self._instance.RemoteCfg)
|
|
1636
|
+
@property
|
|
1637
|
+
def repl_range(self) -> int:
|
|
1638
|
+
return self._instance.ReplRange
|
|
1639
|
+
@property
|
|
1640
|
+
def repower(self) -> RepowerVariableType:
|
|
1641
|
+
return RepowerVariableType(self._instance.Repower)
|
|
1642
|
+
@property
|
|
1643
|
+
def resm_dryprg(self) -> str:
|
|
1644
|
+
return self._instance.ResmDryprg
|
|
1645
|
+
@property
|
|
1646
|
+
def restart(self) -> RestartVariableType:
|
|
1647
|
+
return RestartVariableType(self._instance.Restart)
|
|
1648
|
+
@property
|
|
1649
|
+
def resume_prog(self) -> str:
|
|
1650
|
+
return self._instance.ResumeProg
|
|
1651
|
+
@property
|
|
1652
|
+
def re_exec_enb(self) -> bool:
|
|
1653
|
+
return self._instance.ReExecEnb
|
|
1654
|
+
@property
|
|
1655
|
+
def rgspd_prexe(self) -> bool:
|
|
1656
|
+
return self._instance.RgspdPrexe
|
|
1657
|
+
@property
|
|
1658
|
+
def rgtdb_prexe(self) -> bool:
|
|
1659
|
+
return self._instance.RgtdbPrexe
|
|
1660
|
+
@property
|
|
1661
|
+
def rgtrm_prexe(self) -> bool:
|
|
1662
|
+
return self._instance.RgtrmPrexe
|
|
1663
|
+
@property
|
|
1664
|
+
def ri_airpurge(self) -> typing.List[bool]:
|
|
1665
|
+
return self._instance.RiAirpurge
|
|
1666
|
+
@property
|
|
1667
|
+
def rmt_master(self) -> int:
|
|
1668
|
+
return self._instance.RmtMaster
|
|
1669
|
+
@property
|
|
1670
|
+
def robot_isolc(self) -> typing.List[int]:
|
|
1671
|
+
return self._instance.RobotIsolc
|
|
1672
|
+
@property
|
|
1673
|
+
def robot_name(self) -> str:
|
|
1674
|
+
return self._instance.RobotName
|
|
1675
|
+
@property
|
|
1676
|
+
def rob_categ(self) -> typing.List[int]:
|
|
1677
|
+
return self._instance.RobCateg
|
|
1678
|
+
@property
|
|
1679
|
+
def rob_ord_num(self) -> typing.List[str]:
|
|
1680
|
+
return self._instance.RobOrdNum
|
|
1681
|
+
@property
|
|
1682
|
+
def rpc_timeout(self) -> int:
|
|
1683
|
+
return self._instance.RpcTimeout
|
|
1684
|
+
@property
|
|
1685
|
+
def rs232_cfg(self) -> typing.List[Rs232CfgVariableType]:
|
|
1686
|
+
return [Rs232CfgVariableType(x) for x in self._instance.Rs232Cfg]
|
|
1687
|
+
@property
|
|
1688
|
+
def rs232_nport(self) -> int:
|
|
1689
|
+
return self._instance.Rs232Nport
|
|
1690
|
+
@property
|
|
1691
|
+
def rsch_log(self) -> RschVariableType:
|
|
1692
|
+
return RschVariableType(self._instance.RschLog)
|
|
1693
|
+
@property
|
|
1694
|
+
def rsmavailnum(self) -> int:
|
|
1695
|
+
return self._instance.Rsmavailnum
|
|
1696
|
+
@property
|
|
1697
|
+
def rspace1(self) -> typing.List[RspaceVariableType]:
|
|
1698
|
+
return [RspaceVariableType(x) for x in self._instance.Rspace1]
|
|
1699
|
+
@property
|
|
1700
|
+
def rspace2(self) -> typing.List[RspaceVariableType]:
|
|
1701
|
+
return [RspaceVariableType(x) for x in self._instance.Rspace2]
|
|
1702
|
+
@property
|
|
1703
|
+
def rspace3(self) -> typing.List[RspaceVariableType]:
|
|
1704
|
+
return [RspaceVariableType(x) for x in self._instance.Rspace3]
|
|
1705
|
+
@property
|
|
1706
|
+
def rspace4(self) -> typing.List[RspaceVariableType]:
|
|
1707
|
+
return [RspaceVariableType(x) for x in self._instance.Rspace4]
|
|
1708
|
+
@property
|
|
1709
|
+
def rspace5(self) -> typing.List[RspaceVariableType]:
|
|
1710
|
+
return [RspaceVariableType(x) for x in self._instance.Rspace5]
|
|
1711
|
+
@property
|
|
1712
|
+
def rspace6(self) -> typing.List[RspaceVariableType]:
|
|
1713
|
+
return [RspaceVariableType(x) for x in self._instance.Rspace6]
|
|
1714
|
+
@property
|
|
1715
|
+
def rspace7(self) -> typing.List[RspaceVariableType]:
|
|
1716
|
+
return [RspaceVariableType(x) for x in self._instance.Rspace7]
|
|
1717
|
+
@property
|
|
1718
|
+
def rspace8(self) -> typing.List[RspaceVariableType]:
|
|
1719
|
+
return [RspaceVariableType(x) for x in self._instance.Rspace8]
|
|
1720
|
+
@property
|
|
1721
|
+
def rspaceg(self) -> RspacegVariableType:
|
|
1722
|
+
return RspacegVariableType(self._instance.Rspaceg)
|
|
1723
|
+
@property
|
|
1724
|
+
def rspace_mode(self) -> int:
|
|
1725
|
+
return self._instance.RspaceMode
|
|
1726
|
+
@property
|
|
1727
|
+
def rspace_s(self) -> RspacesrVariableType:
|
|
1728
|
+
return RspacesrVariableType(self._instance.RspaceS)
|
|
1729
|
+
@property
|
|
1730
|
+
def rspcwork_ad(self) -> int:
|
|
1731
|
+
return self._instance.RspcworkAd
|
|
1732
|
+
@property
|
|
1733
|
+
def rsr(self) -> typing.List[int]:
|
|
1734
|
+
return self._instance.Rsr
|
|
1735
|
+
@property
|
|
1736
|
+
def rsr_intval(self) -> int:
|
|
1737
|
+
return self._instance.RsrIntval
|
|
1738
|
+
@property
|
|
1739
|
+
def rsr_option(self) -> int:
|
|
1740
|
+
return self._instance.RsrOption
|
|
1741
|
+
@property
|
|
1742
|
+
def saf_do_puls(self) -> int:
|
|
1743
|
+
return self._instance.SafDoPuls
|
|
1744
|
+
@property
|
|
1745
|
+
def scan_time(self) -> int:
|
|
1746
|
+
return self._instance.ScanTime
|
|
1747
|
+
@property
|
|
1748
|
+
def sel_default(self) -> int:
|
|
1749
|
+
return self._instance.SelDefault
|
|
1750
|
+
@property
|
|
1751
|
+
def sel_hotstrt(self) -> int:
|
|
1752
|
+
return self._instance.SelHotstrt
|
|
1753
|
+
@property
|
|
1754
|
+
def semipowerfl(self) -> bool:
|
|
1755
|
+
return self._instance.Semipowerfl
|
|
1756
|
+
@property
|
|
1757
|
+
def semipwfdo(self) -> int:
|
|
1758
|
+
return self._instance.Semipwfdo
|
|
1759
|
+
@property
|
|
1760
|
+
def servent(self) -> typing.List[ServentVariableType]:
|
|
1761
|
+
return [ServentVariableType(x) for x in self._instance.Servent]
|
|
1762
|
+
@property
|
|
1763
|
+
def service_kl(self) -> typing.List[str]:
|
|
1764
|
+
return self._instance.ServiceKl
|
|
1765
|
+
@property
|
|
1766
|
+
def service_prg(self) -> typing.List[str]:
|
|
1767
|
+
return self._instance.ServicePrg
|
|
1768
|
+
@property
|
|
1769
|
+
def serv_dev(self) -> str:
|
|
1770
|
+
return self._instance.ServDev
|
|
1771
|
+
@property
|
|
1772
|
+
def serv_mail(self) -> int:
|
|
1773
|
+
return self._instance.ServMail
|
|
1774
|
+
@property
|
|
1775
|
+
def serv_output(self) -> int:
|
|
1776
|
+
return self._instance.ServOutput
|
|
1777
|
+
@property
|
|
1778
|
+
def serv_save(self) -> int:
|
|
1779
|
+
return self._instance.ServSave
|
|
1780
|
+
@property
|
|
1781
|
+
def serv_type(self) -> int:
|
|
1782
|
+
return self._instance.ServType
|
|
1783
|
+
@property
|
|
1784
|
+
def sfzn_cfg(self) -> SfznCfgVariableType:
|
|
1785
|
+
return SfznCfgVariableType(self._instance.SfznCfg)
|
|
1786
|
+
@property
|
|
1787
|
+
def sfzn_grp(self) -> typing.List[SfznGrpVariableType]:
|
|
1788
|
+
return [SfznGrpVariableType(x) for x in self._instance.SfznGrp]
|
|
1789
|
+
@property
|
|
1790
|
+
def shell_cfg(self) -> ShellCfgVariableType:
|
|
1791
|
+
return ShellCfgVariableType(self._instance.ShellCfg)
|
|
1792
|
+
@property
|
|
1793
|
+
def shell_chk(self) -> typing.List[ShellChkVariableType]:
|
|
1794
|
+
return [ShellChkVariableType(x) for x in self._instance.ShellChk]
|
|
1795
|
+
@property
|
|
1796
|
+
def shell_comm(self) -> ShellCommVariableType:
|
|
1797
|
+
return ShellCommVariableType(self._instance.ShellComm)
|
|
1798
|
+
@property
|
|
1799
|
+
def shftov_enb(self) -> int:
|
|
1800
|
+
return self._instance.ShftovEnb
|
|
1801
|
+
@property
|
|
1802
|
+
def show_reg_ui(self) -> int:
|
|
1803
|
+
return self._instance.ShowRegUi
|
|
1804
|
+
@property
|
|
1805
|
+
def simiofwdlm(self) -> SimiofwdlmVariableType:
|
|
1806
|
+
return SimiofwdlmVariableType(self._instance.Simiofwdlm)
|
|
1807
|
+
@property
|
|
1808
|
+
def si_unit_enb(self) -> bool:
|
|
1809
|
+
return self._instance.SiUnitEnb
|
|
1810
|
+
@property
|
|
1811
|
+
def slc_retry(self) -> int:
|
|
1812
|
+
return self._instance.SlcRetry
|
|
1813
|
+
@property
|
|
1814
|
+
def smon_alias(self) -> typing.List[str]:
|
|
1815
|
+
return self._instance.SmonAlias
|
|
1816
|
+
@property
|
|
1817
|
+
def smon_defprog(self) -> str:
|
|
1818
|
+
return self._instance.SmonDefprog
|
|
1819
|
+
@property
|
|
1820
|
+
def smon_recall(self) -> typing.List[str]:
|
|
1821
|
+
return self._instance.SmonRecall
|
|
1822
|
+
@property
|
|
1823
|
+
def snpx_asg(self) -> typing.List[SnpxAsgVariableType]:
|
|
1824
|
+
return [SnpxAsgVariableType(x) for x in self._instance.SnpxAsg]
|
|
1825
|
+
@property
|
|
1826
|
+
def snpx_param(self) -> SnpxParamVariableType:
|
|
1827
|
+
return SnpxParamVariableType(self._instance.SnpxParam)
|
|
1828
|
+
@property
|
|
1829
|
+
def soft_kb_cfg(self) -> int:
|
|
1830
|
+
return self._instance.SoftKbCfg
|
|
1831
|
+
@property
|
|
1832
|
+
def sopin_sim(self) -> typing.List[int]:
|
|
1833
|
+
return self._instance.SopinSim
|
|
1834
|
+
@property
|
|
1835
|
+
def srvnordy_do(self) -> bool:
|
|
1836
|
+
return self._instance.SrvnordyDo
|
|
1837
|
+
@property
|
|
1838
|
+
def srvqstp_dsb(self) -> typing.List[int]:
|
|
1839
|
+
return self._instance.SrvqstpDsb
|
|
1840
|
+
@property
|
|
1841
|
+
def ssr(self) -> SsrVariableType:
|
|
1842
|
+
return SsrVariableType(self._instance.Ssr)
|
|
1843
|
+
@property
|
|
1844
|
+
def stop_on_err(self) -> bool:
|
|
1845
|
+
return self._instance.StopOnErr
|
|
1846
|
+
@property
|
|
1847
|
+
def stop_ptn(self) -> str:
|
|
1848
|
+
return self._instance.StopPtn
|
|
1849
|
+
@property
|
|
1850
|
+
def string_prm(self) -> bool:
|
|
1851
|
+
return self._instance.StringPrm
|
|
1852
|
+
@property
|
|
1853
|
+
def svdt_grp(self) -> typing.List[SvdtGrpVariableType]:
|
|
1854
|
+
return [SvdtGrpVariableType(x) for x in self._instance.SvdtGrp]
|
|
1855
|
+
@property
|
|
1856
|
+
def svprg_count(self) -> int:
|
|
1857
|
+
return self._instance.SvprgCount
|
|
1858
|
+
@property
|
|
1859
|
+
def svprg_enb(self) -> bool:
|
|
1860
|
+
return self._instance.SvprgEnb
|
|
1861
|
+
@property
|
|
1862
|
+
def svprm_enb(self) -> int:
|
|
1863
|
+
return self._instance.SvprmEnb
|
|
1864
|
+
@property
|
|
1865
|
+
def svprm_upd(self) -> typing.List[SvprmUpdVariableType]:
|
|
1866
|
+
return [SvprmUpdVariableType(x) for x in self._instance.SvprmUpd]
|
|
1867
|
+
@property
|
|
1868
|
+
def sv_info(self) -> typing.List[SvInfoVariableType]:
|
|
1869
|
+
return [SvInfoVariableType(x) for x in self._instance.SvInfo]
|
|
1870
|
+
@property
|
|
1871
|
+
def sysdebug(self) -> int:
|
|
1872
|
+
return self._instance.Sysdebug
|
|
1873
|
+
@property
|
|
1874
|
+
def sysdsp_pass(self) -> int:
|
|
1875
|
+
return self._instance.SysdspPass
|
|
1876
|
+
@property
|
|
1877
|
+
def syslog(self) -> SyslogVariableType:
|
|
1878
|
+
return SyslogVariableType(self._instance.Syslog)
|
|
1879
|
+
@property
|
|
1880
|
+
def syslog_mpc(self) -> SyslogVariableType:
|
|
1881
|
+
return SyslogVariableType(self._instance.SyslogMpc)
|
|
1882
|
+
@property
|
|
1883
|
+
def syslog_sav(self) -> SyslogSavVariableType:
|
|
1884
|
+
return SyslogSavVariableType(self._instance.SyslogSav)
|
|
1885
|
+
@property
|
|
1886
|
+
def system_time(self) -> typing.List[SystemTimerVariableType]:
|
|
1887
|
+
return [SystemTimerVariableType(x) for x in self._instance.SystemTime]
|
|
1888
|
+
@property
|
|
1889
|
+
def systskmem(self) -> typing.List[int]:
|
|
1890
|
+
return self._instance.Systskmem
|
|
1891
|
+
@property
|
|
1892
|
+
def t1svgunspd(self) -> int:
|
|
1893
|
+
return self._instance.T1svgunspd
|
|
1894
|
+
@property
|
|
1895
|
+
def t2mode_lim(self) -> T2modeLimVariableType:
|
|
1896
|
+
return T2modeLimVariableType(self._instance.T2modeLim)
|
|
1897
|
+
@property
|
|
1898
|
+
def t2spdlim(self) -> T2spdlimVariableType:
|
|
1899
|
+
return T2spdlimVariableType(self._instance.T2spdlim)
|
|
1900
|
+
@property
|
|
1901
|
+
def ta_disp_enb(self) -> bool:
|
|
1902
|
+
return self._instance.TaDispEnb
|
|
1903
|
+
@property
|
|
1904
|
+
def tbc2_grp(self) -> typing.List[Tbc2GrpVariableType]:
|
|
1905
|
+
return [Tbc2GrpVariableType(x) for x in self._instance.Tbc2Grp]
|
|
1906
|
+
@property
|
|
1907
|
+
def tbcsg_grp(self) -> typing.List[TbcsgGrpVariableType]:
|
|
1908
|
+
return [TbcsgGrpVariableType(x) for x in self._instance.TbcsgGrp]
|
|
1909
|
+
@property
|
|
1910
|
+
def tbj2_grp(self) -> typing.List[Tbj2GrpVariableType]:
|
|
1911
|
+
return [Tbj2GrpVariableType(x) for x in self._instance.Tbj2Grp]
|
|
1912
|
+
@property
|
|
1913
|
+
def tbjop_grp(self) -> typing.List[TbjopGrpVariableType]:
|
|
1914
|
+
return [TbjopGrpVariableType(x) for x in self._instance.TbjopGrp]
|
|
1915
|
+
@property
|
|
1916
|
+
def threstable(self) -> typing.List[TpThrTableVariableType]:
|
|
1917
|
+
return [TpThrTableVariableType(x) for x in self._instance.Threstable]
|
|
1918
|
+
@property
|
|
1919
|
+
def thrrditable(self) -> typing.List[TpThrTableVariableType]:
|
|
1920
|
+
return [TpThrTableVariableType(x) for x in self._instance.Thrrditable]
|
|
1921
|
+
@property
|
|
1922
|
+
def thrrdotable(self) -> typing.List[TpThrTableVariableType]:
|
|
1923
|
+
return [TpThrTableVariableType(x) for x in self._instance.Thrrdotable]
|
|
1924
|
+
@property
|
|
1925
|
+
def thrsditable(self) -> typing.List[TpThrTableVariableType]:
|
|
1926
|
+
return [TpThrTableVariableType(x) for x in self._instance.Thrsditable]
|
|
1927
|
+
@property
|
|
1928
|
+
def thrsitable(self) -> typing.List[TpThrTableVariableType]:
|
|
1929
|
+
return [TpThrTableVariableType(x) for x in self._instance.Thrsitable]
|
|
1930
|
+
@property
|
|
1931
|
+
def thrtablenum(self) -> typing.List[int]:
|
|
1932
|
+
return self._instance.Thrtablenum
|
|
1933
|
+
@property
|
|
1934
|
+
def thr_cfg(self) -> ThrCfgVariableType:
|
|
1935
|
+
return ThrCfgVariableType(self._instance.ThrCfg)
|
|
1936
|
+
@property
|
|
1937
|
+
def timebf_tts(self) -> int:
|
|
1938
|
+
return self._instance.TimebfTts
|
|
1939
|
+
@property
|
|
1940
|
+
def timebf_ver(self) -> int:
|
|
1941
|
+
return self._instance.TimebfVer
|
|
1942
|
+
@property
|
|
1943
|
+
def timer(self) -> typing.List[TimerVariableType]:
|
|
1944
|
+
return [TimerVariableType(x) for x in self._instance.Timer]
|
|
1945
|
+
@property
|
|
1946
|
+
def timer_num(self) -> int:
|
|
1947
|
+
return self._instance.TimerNum
|
|
1948
|
+
@property
|
|
1949
|
+
def tmi_chan(self) -> int:
|
|
1950
|
+
return self._instance.TmiChan
|
|
1951
|
+
@property
|
|
1952
|
+
def tmi_dbglvl(self) -> int:
|
|
1953
|
+
return self._instance.TmiDbglvl
|
|
1954
|
+
@property
|
|
1955
|
+
def tmi_etherad(self) -> typing.List[str]:
|
|
1956
|
+
return self._instance.TmiEtherad
|
|
1957
|
+
@property
|
|
1958
|
+
def tmi_router(self) -> str:
|
|
1959
|
+
return self._instance.TmiRouter
|
|
1960
|
+
@property
|
|
1961
|
+
def tmi_snmask(self) -> typing.List[str]:
|
|
1962
|
+
return self._instance.TmiSnmask
|
|
1963
|
+
@property
|
|
1964
|
+
def toolofs_dis(self) -> bool:
|
|
1965
|
+
return self._instance.ToolofsDis
|
|
1966
|
+
@property
|
|
1967
|
+
def tpe_detail(self) -> int:
|
|
1968
|
+
return self._instance.TpeDetail
|
|
1969
|
+
@property
|
|
1970
|
+
def tpgl_config(self) -> TpglConfVariableType:
|
|
1971
|
+
return TpglConfVariableType(self._instance.TpglConfig)
|
|
1972
|
+
@property
|
|
1973
|
+
def tpgl_output(self) -> TpglOutVariableType:
|
|
1974
|
+
return TpglOutVariableType(self._instance.TpglOutput)
|
|
1975
|
+
@property
|
|
1976
|
+
def tpoff_lim(self) -> int:
|
|
1977
|
+
return self._instance.TpoffLim
|
|
1978
|
+
@property
|
|
1979
|
+
def tpon_svoff(self) -> bool:
|
|
1980
|
+
return self._instance.TponSvoff
|
|
1981
|
+
@property
|
|
1982
|
+
def tpp_mon(self) -> TppMonVariableType:
|
|
1983
|
+
return TppMonVariableType(self._instance.TppMon)
|
|
1984
|
+
@property
|
|
1985
|
+
def tpstrtchk(self) -> TpstrtchkVariableType:
|
|
1986
|
+
return TpstrtchkVariableType(self._instance.Tpstrtchk)
|
|
1987
|
+
@property
|
|
1988
|
+
def tpvtcompat(self) -> bool:
|
|
1989
|
+
return self._instance.Tpvtcompat
|
|
1990
|
+
@property
|
|
1991
|
+
def tpvwvar(self) -> TpvwvarVariableType:
|
|
1992
|
+
return TpvwvarVariableType(self._instance.Tpvwvar)
|
|
1993
|
+
@property
|
|
1994
|
+
def tp_defprog(self) -> str:
|
|
1995
|
+
return self._instance.TpDefprog
|
|
1996
|
+
@property
|
|
1997
|
+
def tp_display(self) -> int:
|
|
1998
|
+
return self._instance.TpDisplay
|
|
1999
|
+
@property
|
|
2000
|
+
def tp_inst_msk(self) -> typing.List[int]:
|
|
2001
|
+
return self._instance.TpInstMsk
|
|
2002
|
+
@property
|
|
2003
|
+
def tp_inuser(self) -> bool:
|
|
2004
|
+
return self._instance.TpInuser
|
|
2005
|
+
@property
|
|
2006
|
+
def tp_lckuser(self) -> bool:
|
|
2007
|
+
return self._instance.TpLckuser
|
|
2008
|
+
@property
|
|
2009
|
+
def tp_quickmen(self) -> bool:
|
|
2010
|
+
return self._instance.TpQuickmen
|
|
2011
|
+
@property
|
|
2012
|
+
def tp_screen(self) -> str:
|
|
2013
|
+
return self._instance.TpScreen
|
|
2014
|
+
@property
|
|
2015
|
+
def tp_userscrn(self) -> str:
|
|
2016
|
+
return self._instance.TpUserscrn
|
|
2017
|
+
@property
|
|
2018
|
+
def tp_usestat(self) -> bool:
|
|
2019
|
+
return self._instance.TpUsestat
|
|
2020
|
+
@property
|
|
2021
|
+
def trace_cfg(self) -> TraceCfgVariableType:
|
|
2022
|
+
return TraceCfgVariableType(self._instance.TraceCfg)
|
|
2023
|
+
@property
|
|
2024
|
+
def trace_chnl(self) -> typing.List[TraceChnlVariableType]:
|
|
2025
|
+
return [TraceChnlVariableType(x) for x in self._instance.TraceChnl]
|
|
2026
|
+
@property
|
|
2027
|
+
def trace_item(self) -> typing.List[TraceItemVariableType]:
|
|
2028
|
+
return [TraceItemVariableType(x) for x in self._instance.TraceItem]
|
|
2029
|
+
@property
|
|
2030
|
+
def tscfg(self) -> TscfgVariableType:
|
|
2031
|
+
return TscfgVariableType(self._instance.Tscfg)
|
|
2032
|
+
@property
|
|
2033
|
+
def tsscb(self) -> typing.List[TsscbVariableType]:
|
|
2034
|
+
return [TsscbVariableType(x) for x in self._instance.Tsscb]
|
|
2035
|
+
@property
|
|
2036
|
+
def tutorial(self) -> TutorialVariableType:
|
|
2037
|
+
return TutorialVariableType(self._instance.Tutorial)
|
|
2038
|
+
@property
|
|
2039
|
+
def tv_config(self) -> TvConfigVariableType:
|
|
2040
|
+
return TvConfigVariableType(self._instance.TvConfig)
|
|
2041
|
+
@property
|
|
2042
|
+
def tv_output(self) -> TvOutputVariableType:
|
|
2043
|
+
return TvOutputVariableType(self._instance.TvOutput)
|
|
2044
|
+
@property
|
|
2045
|
+
def tx_screen(self) -> typing.List[TxscreenVariableType]:
|
|
2046
|
+
return [TxscreenVariableType(x) for x in self._instance.TxScreen]
|
|
2047
|
+
@property
|
|
2048
|
+
def ualrm_msg(self) -> typing.List[str]:
|
|
2049
|
+
return self._instance.UalrmMsg
|
|
2050
|
+
@property
|
|
2051
|
+
def ualrm_sev(self) -> typing.List[int]:
|
|
2052
|
+
return self._instance.UalrmSev
|
|
2053
|
+
@property
|
|
2054
|
+
def uecfg(self) -> UecfgVariableType:
|
|
2055
|
+
return UecfgVariableType(self._instance.Uecfg)
|
|
2056
|
+
@property
|
|
2057
|
+
def uegrp(self) -> typing.List[UegrpVariableType]:
|
|
2058
|
+
return [UegrpVariableType(x) for x in self._instance.Uegrp]
|
|
2059
|
+
@property
|
|
2060
|
+
def ui_bbl_note(self) -> BblNtWndVariableType:
|
|
2061
|
+
return BblNtWndVariableType(self._instance.UiBblNote)
|
|
2062
|
+
@property
|
|
2063
|
+
def ui_defprog(self) -> typing.List[str]:
|
|
2064
|
+
return self._instance.UiDefprog
|
|
2065
|
+
@property
|
|
2066
|
+
def ui_fkeydata(self) -> typing.List[UiFkeydatVariableType]:
|
|
2067
|
+
return [UiFkeydatVariableType(x) for x in self._instance.UiFkeydata]
|
|
2068
|
+
@property
|
|
2069
|
+
def ui_inuser(self) -> typing.List[bool]:
|
|
2070
|
+
return self._instance.UiInuser
|
|
2071
|
+
@property
|
|
2072
|
+
def ui_menhist(self) -> typing.List[UiMenhisVariableType]:
|
|
2073
|
+
return [UiMenhisVariableType(x) for x in self._instance.UiMenhist]
|
|
2074
|
+
@property
|
|
2075
|
+
def ui_panedata(self) -> typing.List[UiPanedatVariableType]:
|
|
2076
|
+
return [UiPanedatVariableType(x) for x in self._instance.UiPanedata]
|
|
2077
|
+
@property
|
|
2078
|
+
def ui_postype(self) -> typing.List[int]:
|
|
2079
|
+
return self._instance.UiPostype
|
|
2080
|
+
@property
|
|
2081
|
+
def ui_quickmen(self) -> typing.List[bool]:
|
|
2082
|
+
return self._instance.UiQuickmen
|
|
2083
|
+
@property
|
|
2084
|
+
def ui_restore(self) -> typing.List[UiUsrviewVariableType]:
|
|
2085
|
+
return [UiUsrviewVariableType(x) for x in self._instance.UiRestore]
|
|
2086
|
+
@property
|
|
2087
|
+
def ui_screen(self) -> typing.List[str]:
|
|
2088
|
+
return self._instance.UiScreen
|
|
2089
|
+
@property
|
|
2090
|
+
def ui_state(self) -> typing.List[int]:
|
|
2091
|
+
return self._instance.UiState
|
|
2092
|
+
@property
|
|
2093
|
+
def ui_userscrn(self) -> typing.List[str]:
|
|
2094
|
+
return self._instance.UiUserscrn
|
|
2095
|
+
@property
|
|
2096
|
+
def undo_cfg(self) -> UndoCfgVariableType:
|
|
2097
|
+
return UndoCfgVariableType(self._instance.UndoCfg)
|
|
2098
|
+
@property
|
|
2099
|
+
def uop_crm5(self) -> bool:
|
|
2100
|
+
return self._instance.UopCrm5
|
|
2101
|
+
@property
|
|
2102
|
+
def update(self) -> str:
|
|
2103
|
+
return self._instance.Update
|
|
2104
|
+
@property
|
|
2105
|
+
def user_info(self) -> typing.List[UserInfoVariableType]:
|
|
2106
|
+
return [UserInfoVariableType(x) for x in self._instance.UserInfo]
|
|
2107
|
+
@property
|
|
2108
|
+
def user_offset(self) -> UserOffstVariableType:
|
|
2109
|
+
return UserOffstVariableType(self._instance.UserOffset)
|
|
2110
|
+
@property
|
|
2111
|
+
def user_work(self) -> UserWorkVariableType:
|
|
2112
|
+
return UserWorkVariableType(self._instance.UserWork)
|
|
2113
|
+
@property
|
|
2114
|
+
def useuframe(self) -> bool:
|
|
2115
|
+
return self._instance.Useuframe
|
|
2116
|
+
@property
|
|
2117
|
+
def usrtol_abrt(self) -> bool:
|
|
2118
|
+
return self._instance.UsrtolAbrt
|
|
2119
|
+
@property
|
|
2120
|
+
def usrtol_enb(self) -> bool:
|
|
2121
|
+
return self._instance.UsrtolEnb
|
|
2122
|
+
@property
|
|
2123
|
+
def usrtol_grp(self) -> typing.List[UsrtolGrpVariableType]:
|
|
2124
|
+
return [UsrtolGrpVariableType(x) for x in self._instance.UsrtolGrp]
|
|
2125
|
+
@property
|
|
2126
|
+
def usrtol_msk(self) -> int:
|
|
2127
|
+
return self._instance.UsrtolMsk
|
|
2128
|
+
@property
|
|
2129
|
+
def usrtol_name(self) -> str:
|
|
2130
|
+
return self._instance.UsrtolName
|
|
2131
|
+
@property
|
|
2132
|
+
def usr_evnt(self) -> int:
|
|
2133
|
+
return self._instance.UsrEvnt
|
|
2134
|
+
@property
|
|
2135
|
+
def usr_ev_cfg(self) -> typing.List[UsrEvCfgVariableType]:
|
|
2136
|
+
return [UsrEvCfgVariableType(x) for x in self._instance.UsrEvCfg]
|
|
2137
|
+
@property
|
|
2138
|
+
def usr_ev_wrk(self) -> typing.List[UsrEvWrkVariableType]:
|
|
2139
|
+
return [UsrEvWrkVariableType(x) for x in self._instance.UsrEvWrk]
|
|
2140
|
+
@property
|
|
2141
|
+
def vars_config(self) -> VarsConfigVariableType:
|
|
2142
|
+
return VarsConfigVariableType(self._instance.VarsConfig)
|
|
2143
|
+
@property
|
|
2144
|
+
def vcmr_grp(self) -> typing.List[VcmrGrpVariableType]:
|
|
2145
|
+
return [VcmrGrpVariableType(x) for x in self._instance.VcmrGrp]
|
|
2146
|
+
@property
|
|
2147
|
+
def via_work(self) -> ViaWorkVariableType:
|
|
2148
|
+
return ViaWorkVariableType(self._instance.ViaWork)
|
|
2149
|
+
@property
|
|
2150
|
+
def visiontmout(self) -> int:
|
|
2151
|
+
return self._instance.Visiontmout
|
|
2152
|
+
@property
|
|
2153
|
+
def vision_cfg(self) -> VisionCfgVariableType:
|
|
2154
|
+
return VisionCfgVariableType(self._instance.VisionCfg)
|
|
2155
|
+
@property
|
|
2156
|
+
def vision_grp(self) -> typing.List[VisionGrpVariableType]:
|
|
2157
|
+
return [VisionGrpVariableType(x) for x in self._instance.VisionGrp]
|
|
2158
|
+
@property
|
|
2159
|
+
def vis_ge_cfg(self) -> VisGeCfgVariableType:
|
|
2160
|
+
return VisGeCfgVariableType(self._instance.VisGeCfg)
|
|
2161
|
+
@property
|
|
2162
|
+
def vis_logreg(self) -> VisLogregVariableType:
|
|
2163
|
+
return VisLogregVariableType(self._instance.VisLogreg)
|
|
2164
|
+
@property
|
|
2165
|
+
def vlexe_cfg(self) -> VlexeCfgVariableType:
|
|
2166
|
+
return VlexeCfgVariableType(self._instance.VlexeCfg)
|
|
2167
|
+
@property
|
|
2168
|
+
def vrtd_filter(self) -> typing.List[VrtdFiltVariableType]:
|
|
2169
|
+
return [VrtdFiltVariableType(x) for x in self._instance.VrtdFilter]
|
|
2170
|
+
@property
|
|
2171
|
+
def vshiftmenu(self) -> typing.List[CustommenuVariableType]:
|
|
2172
|
+
return [CustommenuVariableType(x) for x in self._instance.Vshiftmenu]
|
|
2173
|
+
@property
|
|
2174
|
+
def vshift_cfg(self) -> VsftCfgVariableType:
|
|
2175
|
+
return VsftCfgVariableType(self._instance.VshiftCfg)
|
|
2176
|
+
@property
|
|
2177
|
+
def vsmo_cfg(self) -> VsmoCfgVariableType:
|
|
2178
|
+
return VsmoCfgVariableType(self._instance.VsmoCfg)
|
|
2179
|
+
@property
|
|
2180
|
+
def vzdt_cfg(self) -> VzdtCfgVariableType:
|
|
2181
|
+
return VzdtCfgVariableType(self._instance.VzdtCfg)
|
|
2182
|
+
@property
|
|
2183
|
+
def waitrelease(self) -> bool:
|
|
2184
|
+
return self._instance.Waitrelease
|
|
2185
|
+
@property
|
|
2186
|
+
def waittmout(self) -> int:
|
|
2187
|
+
return self._instance.Waittmout
|
|
2188
|
+
@property
|
|
2189
|
+
def wait_active(self) -> bool:
|
|
2190
|
+
return self._instance.WaitActive
|
|
2191
|
+
@property
|
|
2192
|
+
def wait_data(self) -> WaitDataVariableType:
|
|
2193
|
+
return WaitDataVariableType(self._instance.WaitData)
|
|
2194
|
+
@property
|
|
2195
|
+
def wait_rdisp(self) -> bool:
|
|
2196
|
+
return self._instance.WaitRdisp
|
|
2197
|
+
@property
|
|
2198
|
+
def xvrcfg(self) -> XvrcfgVariableType:
|
|
2199
|
+
return XvrcfgVariableType(self._instance.Xvrcfg)
|
|
2200
|
+
@property
|
|
2201
|
+
def zabc_grp(self) -> typing.List[ZabcGrpVariableType]:
|
|
2202
|
+
return [ZabcGrpVariableType(x) for x in self._instance.ZabcGrp]
|
|
2203
|
+
@property
|
|
2204
|
+
def zdt_actvspt(self) -> ZdtActvsptVariableType:
|
|
2205
|
+
return ZdtActvsptVariableType(self._instance.ZdtActvspt)
|
|
2206
|
+
@property
|
|
2207
|
+
def zdt_dcschg(self) -> ZdtDcschgVariableType:
|
|
2208
|
+
return ZdtDcschgVariableType(self._instance.ZdtDcschg)
|
|
2209
|
+
@property
|
|
2210
|
+
def zip_cfg(self) -> ZipCfgVariableType:
|
|
2211
|
+
return ZipCfgVariableType(self._instance.ZipCfg)
|
|
2212
|
+
@property
|
|
2213
|
+
def zmpcf_g(self) -> typing.List[ZmpcfGrpVariableType]:
|
|
2214
|
+
return [ZmpcfGrpVariableType(x) for x in self._instance.ZmpcfG]
|
|
2215
|
+
@property
|
|
2216
|
+
def zmp_grp(self) -> typing.List[ZmposGrpVariableType]:
|
|
2217
|
+
return [ZmposGrpVariableType(x) for x in self._instance.ZmpGrp]
|
|
2218
|
+
@property
|
|
2219
|
+
def zpcfg(self) -> ZpCfgVariableType:
|
|
2220
|
+
return ZpCfgVariableType(self._instance.Zpcfg)
|
|
2221
|
+
@property
|
|
2222
|
+
def zp_cylinder(self) -> typing.List[ZpCylinderVariableType]:
|
|
2223
|
+
return [ZpCylinderVariableType(x) for x in self._instance.ZpCylinder]
|
|
2224
|
+
@property
|
|
2225
|
+
def zp_grp(self) -> typing.List[ZpGrpVariableType]:
|
|
2226
|
+
return [ZpGrpVariableType(x) for x in self._instance.ZpGrp]
|
|
2227
|
+
@property
|
|
2228
|
+
def zp_sphere(self) -> typing.List[ZpSphereVariableType]:
|
|
2229
|
+
return [ZpSphereVariableType(x) for x in self._instance.ZpSphere]
|
|
2230
|
+
@property
|
|
2231
|
+
def zzz(self) -> int:
|
|
2232
|
+
return self._instance.Zzz
|