huaweicloudsdkiotanalytics 3.1.160__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.
- huaweicloudsdkiotanalytics/__init__.py +0 -0
- huaweicloudsdkiotanalytics/v1/__init__.py +269 -0
- huaweicloudsdkiotanalytics/v1/iotanalytics_async_client.py +4553 -0
- huaweicloudsdkiotanalytics/v1/iotanalytics_client.py +4550 -0
- huaweicloudsdkiotanalytics/v1/model/__init__.py +266 -0
- huaweicloudsdkiotanalytics/v1/model/add_dev_data_request.py +139 -0
- huaweicloudsdkiotanalytics/v1/model/add_dev_data_response.py +112 -0
- huaweicloudsdkiotanalytics/v1/model/add_pipeline_job_request.py +144 -0
- huaweicloudsdkiotanalytics/v1/model/add_pipeline_job_response.py +145 -0
- huaweicloudsdkiotanalytics/v1/model/aggregate_metric.py +170 -0
- huaweicloudsdkiotanalytics/v1/model/aggregate_metrics.py +253 -0
- huaweicloudsdkiotanalytics/v1/model/aggregate_metrics_request.py +283 -0
- huaweicloudsdkiotanalytics/v1/model/aggregate_model.py +220 -0
- huaweicloudsdkiotanalytics/v1/model/aggregate_response.py +219 -0
- huaweicloudsdkiotanalytics/v1/model/analysis_model_request.py +246 -0
- huaweicloudsdkiotanalytics/v1/model/analysis_model_response.py +275 -0
- huaweicloudsdkiotanalytics/v1/model/analysis_request.py +189 -0
- huaweicloudsdkiotanalytics/v1/model/analysis_response.py +277 -0
- huaweicloudsdkiotanalytics/v1/model/api_content_req.py +114 -0
- huaweicloudsdkiotanalytics/v1/model/api_content_rsp.py +144 -0
- huaweicloudsdkiotanalytics/v1/model/asset_add_request.py +258 -0
- huaweicloudsdkiotanalytics/v1/model/asset_mod_request.py +231 -0
- huaweicloudsdkiotanalytics/v1/model/asset_model_add_request.py +201 -0
- huaweicloudsdkiotanalytics/v1/model/asset_model_mod_request.py +173 -0
- huaweicloudsdkiotanalytics/v1/model/asset_model_response.py +289 -0
- huaweicloudsdkiotanalytics/v1/model/asset_property_last_value.py +173 -0
- huaweicloudsdkiotanalytics/v1/model/asset_response.py +521 -0
- huaweicloudsdkiotanalytics/v1/model/column.py +200 -0
- huaweicloudsdkiotanalytics/v1/model/computing_resource.py +347 -0
- huaweicloudsdkiotanalytics/v1/model/content_detail_req.py +361 -0
- huaweicloudsdkiotanalytics/v1/model/content_detail_rsp.py +361 -0
- huaweicloudsdkiotanalytics/v1/model/create_asset_model_request.py +111 -0
- huaweicloudsdkiotanalytics/v1/model/create_asset_model_response.py +290 -0
- huaweicloudsdkiotanalytics/v1/model/create_asset_new_request.py +111 -0
- huaweicloudsdkiotanalytics/v1/model/create_asset_new_response.py +522 -0
- huaweicloudsdkiotanalytics/v1/model/create_batch_job_request.py +111 -0
- huaweicloudsdkiotanalytics/v1/model/create_batch_job_response.py +369 -0
- huaweicloudsdkiotanalytics/v1/model/create_computing_resource_request.py +111 -0
- huaweicloudsdkiotanalytics/v1/model/create_computing_resource_request_body.py +229 -0
- huaweicloudsdkiotanalytics/v1/model/create_computing_resource_response.py +290 -0
- huaweicloudsdkiotanalytics/v1/model/create_datasource_req_dto.py +166 -0
- huaweicloudsdkiotanalytics/v1/model/create_datasource_request.py +111 -0
- huaweicloudsdkiotanalytics/v1/model/create_datasource_response.py +257 -0
- huaweicloudsdkiotanalytics/v1/model/create_group_request.py +111 -0
- huaweicloudsdkiotanalytics/v1/model/create_group_response.py +406 -0
- huaweicloudsdkiotanalytics/v1/model/create_run_request.py +139 -0
- huaweicloudsdkiotanalytics/v1/model/create_run_request_body.py +143 -0
- huaweicloudsdkiotanalytics/v1/model/create_run_response.py +228 -0
- huaweicloudsdkiotanalytics/v1/model/create_streaming_job_request.py +144 -0
- huaweicloudsdkiotanalytics/v1/model/create_streaming_job_response.py +145 -0
- huaweicloudsdkiotanalytics/v1/model/create_table_request.py +111 -0
- huaweicloudsdkiotanalytics/v1/model/create_table_request_body.py +489 -0
- huaweicloudsdkiotanalytics/v1/model/create_table_response.py +464 -0
- huaweicloudsdkiotanalytics/v1/model/data_schema.py +230 -0
- huaweicloudsdkiotanalytics/v1/model/data_store_dto.py +173 -0
- huaweicloudsdkiotanalytics/v1/model/datasource_rest_dto.py +256 -0
- huaweicloudsdkiotanalytics/v1/model/dcs_content_req.py +226 -0
- huaweicloudsdkiotanalytics/v1/model/dcs_content_rsp.py +260 -0
- huaweicloudsdkiotanalytics/v1/model/delete_asset_model_request.py +114 -0
- huaweicloudsdkiotanalytics/v1/model/delete_asset_model_response.py +85 -0
- huaweicloudsdkiotanalytics/v1/model/delete_asset_new_request.py +114 -0
- huaweicloudsdkiotanalytics/v1/model/delete_asset_new_response.py +85 -0
- huaweicloudsdkiotanalytics/v1/model/delete_batch_job_request.py +114 -0
- huaweicloudsdkiotanalytics/v1/model/delete_batch_job_response.py +116 -0
- huaweicloudsdkiotanalytics/v1/model/delete_computing_resource_request.py +114 -0
- huaweicloudsdkiotanalytics/v1/model/delete_computing_resource_response.py +116 -0
- huaweicloudsdkiotanalytics/v1/model/delete_data_store_request.py +114 -0
- huaweicloudsdkiotanalytics/v1/model/delete_data_store_response.py +85 -0
- huaweicloudsdkiotanalytics/v1/model/delete_datasource_request.py +114 -0
- huaweicloudsdkiotanalytics/v1/model/delete_datasource_response.py +116 -0
- huaweicloudsdkiotanalytics/v1/model/delete_group_request.py +114 -0
- huaweicloudsdkiotanalytics/v1/model/delete_group_response.py +85 -0
- huaweicloudsdkiotanalytics/v1/model/delete_pipeline_job_request.py +114 -0
- huaweicloudsdkiotanalytics/v1/model/delete_pipeline_job_response.py +112 -0
- huaweicloudsdkiotanalytics/v1/model/delete_run_request.py +142 -0
- huaweicloudsdkiotanalytics/v1/model/delete_run_response.py +116 -0
- huaweicloudsdkiotanalytics/v1/model/delete_streaming_job_by_id_request.py +114 -0
- huaweicloudsdkiotanalytics/v1/model/delete_streaming_job_by_id_response.py +112 -0
- huaweicloudsdkiotanalytics/v1/model/delete_table_request.py +114 -0
- huaweicloudsdkiotanalytics/v1/model/delete_table_response.py +145 -0
- huaweicloudsdkiotanalytics/v1/model/dis_content_req.py +198 -0
- huaweicloudsdkiotanalytics/v1/model/dis_content_rsp.py +202 -0
- huaweicloudsdkiotanalytics/v1/model/dt_aggregate_metrics.py +170 -0
- huaweicloudsdkiotanalytics/v1/model/dt_aggregate_request.py +140 -0
- huaweicloudsdkiotanalytics/v1/model/dt_schedule.py +114 -0
- huaweicloudsdkiotanalytics/v1/model/dt_stream_request.py +114 -0
- huaweicloudsdkiotanalytics/v1/model/dt_transform_metrics.py +170 -0
- huaweicloudsdkiotanalytics/v1/model/dt_transform_request.py +140 -0
- huaweicloudsdkiotanalytics/v1/model/edge_content_req.py +143 -0
- huaweicloudsdkiotanalytics/v1/model/edge_content_rsp.py +142 -0
- huaweicloudsdkiotanalytics/v1/model/edge_content_rule_req.py +142 -0
- huaweicloudsdkiotanalytics/v1/model/edge_content_rule_rsp.py +170 -0
- huaweicloudsdkiotanalytics/v1/model/export_dataset_request.py +142 -0
- huaweicloudsdkiotanalytics/v1/model/export_dataset_response.py +85 -0
- huaweicloudsdkiotanalytics/v1/model/expression.py +172 -0
- huaweicloudsdkiotanalytics/v1/model/formula.py +144 -0
- huaweicloudsdkiotanalytics/v1/model/function_graph_content_req.py +282 -0
- huaweicloudsdkiotanalytics/v1/model/function_graph_content_rsp.py +289 -0
- huaweicloudsdkiotanalytics/v1/model/get_data_store.py +318 -0
- huaweicloudsdkiotanalytics/v1/model/get_group.py +405 -0
- huaweicloudsdkiotanalytics/v1/model/get_history_request.py +195 -0
- huaweicloudsdkiotanalytics/v1/model/get_metrics_request.py +164 -0
- huaweicloudsdkiotanalytics/v1/model/get_metrics_value.py +164 -0
- huaweicloudsdkiotanalytics/v1/model/get_property_request.py +143 -0
- huaweicloudsdkiotanalytics/v1/model/history_values.py +144 -0
- huaweicloudsdkiotanalytics/v1/model/import_data_request.py +111 -0
- huaweicloudsdkiotanalytics/v1/model/import_data_request_body.py +401 -0
- huaweicloudsdkiotanalytics/v1/model/import_data_response.py +174 -0
- huaweicloudsdkiotanalytics/v1/model/input_model.py +138 -0
- huaweicloudsdkiotanalytics/v1/model/input_param.py +142 -0
- huaweicloudsdkiotanalytics/v1/model/input_request.py +138 -0
- huaweicloudsdkiotanalytics/v1/model/input_response.py +140 -0
- huaweicloudsdkiotanalytics/v1/model/iotda_content_req.py +142 -0
- huaweicloudsdkiotanalytics/v1/model/iotda_content_rsp.py +142 -0
- huaweicloudsdkiotanalytics/v1/model/iotda_content_rule_req.py +142 -0
- huaweicloudsdkiotanalytics/v1/model/iotda_content_rule_rsp.py +170 -0
- huaweicloudsdkiotanalytics/v1/model/iotda_rule_action.py +142 -0
- huaweicloudsdkiotanalytics/v1/model/job.py +366 -0
- huaweicloudsdkiotanalytics/v1/model/kafka_auth_info.py +139 -0
- huaweicloudsdkiotanalytics/v1/model/kafka_broker_info.py +142 -0
- huaweicloudsdkiotanalytics/v1/model/kafka_content_req.py +226 -0
- huaweicloudsdkiotanalytics/v1/model/kafka_content_rsp.py +227 -0
- huaweicloudsdkiotanalytics/v1/model/key_value.py +144 -0
- huaweicloudsdkiotanalytics/v1/model/last_asset_property_value_request.py +173 -0
- huaweicloudsdkiotanalytics/v1/model/list_asset_models_request.py +173 -0
- huaweicloudsdkiotanalytics/v1/model/list_asset_models_response.py +145 -0
- huaweicloudsdkiotanalytics/v1/model/list_assets_new_request.py +201 -0
- huaweicloudsdkiotanalytics/v1/model/list_assets_new_response.py +145 -0
- huaweicloudsdkiotanalytics/v1/model/list_batch_jobs_request.py +289 -0
- huaweicloudsdkiotanalytics/v1/model/list_batch_jobs_response.py +141 -0
- huaweicloudsdkiotanalytics/v1/model/list_computing_resources_request.py +173 -0
- huaweicloudsdkiotanalytics/v1/model/list_computing_resources_response.py +145 -0
- huaweicloudsdkiotanalytics/v1/model/list_data_stores_request.py +231 -0
- huaweicloudsdkiotanalytics/v1/model/list_data_stores_response.py +145 -0
- huaweicloudsdkiotanalytics/v1/model/list_groups_request.py +260 -0
- huaweicloudsdkiotanalytics/v1/model/list_groups_response.py +145 -0
- huaweicloudsdkiotanalytics/v1/model/list_history_request.py +139 -0
- huaweicloudsdkiotanalytics/v1/model/list_history_response.py +145 -0
- huaweicloudsdkiotanalytics/v1/model/list_metrics_request.py +139 -0
- huaweicloudsdkiotanalytics/v1/model/list_metrics_response.py +145 -0
- huaweicloudsdkiotanalytics/v1/model/list_pipeline_jobs_request.py +318 -0
- huaweicloudsdkiotanalytics/v1/model/list_pipeline_jobs_response.py +145 -0
- huaweicloudsdkiotanalytics/v1/model/list_runs_request.py +405 -0
- huaweicloudsdkiotanalytics/v1/model/list_runs_response.py +145 -0
- huaweicloudsdkiotanalytics/v1/model/list_tables_request.py +260 -0
- huaweicloudsdkiotanalytics/v1/model/list_tables_response.py +145 -0
- huaweicloudsdkiotanalytics/v1/model/list_tag_values_request.py +229 -0
- huaweicloudsdkiotanalytics/v1/model/list_tag_values_response.py +174 -0
- huaweicloudsdkiotanalytics/v1/model/metric.py +202 -0
- huaweicloudsdkiotanalytics/v1/model/metric_input.py +142 -0
- huaweicloudsdkiotanalytics/v1/model/metric_list.py +144 -0
- huaweicloudsdkiotanalytics/v1/model/metric_value.py +144 -0
- huaweicloudsdkiotanalytics/v1/model/model_arts_content_req.py +254 -0
- huaweicloudsdkiotanalytics/v1/model/model_arts_content_rsp.py +260 -0
- huaweicloudsdkiotanalytics/v1/model/model_property.py +202 -0
- huaweicloudsdkiotanalytics/v1/model/named_formula.py +142 -0
- huaweicloudsdkiotanalytics/v1/model/node_content_req.py +142 -0
- huaweicloudsdkiotanalytics/v1/model/node_content_rsp.py +144 -0
- huaweicloudsdkiotanalytics/v1/model/obs_content_req.py +170 -0
- huaweicloudsdkiotanalytics/v1/model/obs_content_rsp.py +173 -0
- huaweicloudsdkiotanalytics/v1/model/output_request.py +172 -0
- huaweicloudsdkiotanalytics/v1/model/output_response.py +230 -0
- huaweicloudsdkiotanalytics/v1/model/output_with_model.py +200 -0
- huaweicloudsdkiotanalytics/v1/model/pipeline_job_info_dto.py +463 -0
- huaweicloudsdkiotanalytics/v1/model/property_filter.py +170 -0
- huaweicloudsdkiotanalytics/v1/model/property_model_request.py +282 -0
- huaweicloudsdkiotanalytics/v1/model/property_model_response.py +311 -0
- huaweicloudsdkiotanalytics/v1/model/property_reference_model.py +200 -0
- huaweicloudsdkiotanalytics/v1/model/property_reference_req.py +115 -0
- huaweicloudsdkiotanalytics/v1/model/property_reference_response.py +229 -0
- huaweicloudsdkiotanalytics/v1/model/property_request.py +172 -0
- huaweicloudsdkiotanalytics/v1/model/property_response.py +340 -0
- huaweicloudsdkiotanalytics/v1/model/property_value.py +173 -0
- huaweicloudsdkiotanalytics/v1/model/publish_root_asset_request.py +114 -0
- huaweicloudsdkiotanalytics/v1/model/publish_root_asset_response.py +85 -0
- huaweicloudsdkiotanalytics/v1/model/raw_request.py +226 -0
- huaweicloudsdkiotanalytics/v1/model/raw_value.py +144 -0
- huaweicloudsdkiotanalytics/v1/model/run.py +366 -0
- huaweicloudsdkiotanalytics/v1/model/run_detail.py +168 -0
- huaweicloudsdkiotanalytics/v1/model/sasl_plain_auth_info.py +144 -0
- huaweicloudsdkiotanalytics/v1/model/schedule.py +342 -0
- huaweicloudsdkiotanalytics/v1/model/show_all_data_source_request.py +202 -0
- huaweicloudsdkiotanalytics/v1/model/show_all_data_source_response.py +145 -0
- huaweicloudsdkiotanalytics/v1/model/show_asset_model_request.py +114 -0
- huaweicloudsdkiotanalytics/v1/model/show_asset_model_response.py +290 -0
- huaweicloudsdkiotanalytics/v1/model/show_asset_new_request.py +142 -0
- huaweicloudsdkiotanalytics/v1/model/show_asset_new_response.py +522 -0
- huaweicloudsdkiotanalytics/v1/model/show_batch_job_request.py +114 -0
- huaweicloudsdkiotanalytics/v1/model/show_batch_job_response.py +369 -0
- huaweicloudsdkiotanalytics/v1/model/show_data_source_request.py +114 -0
- huaweicloudsdkiotanalytics/v1/model/show_data_source_response.py +257 -0
- huaweicloudsdkiotanalytics/v1/model/show_dataset_request.py +200 -0
- huaweicloudsdkiotanalytics/v1/model/show_dataset_response.py +199 -0
- huaweicloudsdkiotanalytics/v1/model/show_job_by_id_request.py +114 -0
- huaweicloudsdkiotanalytics/v1/model/show_job_by_id_response.py +141 -0
- huaweicloudsdkiotanalytics/v1/model/show_jobs_request.py +202 -0
- huaweicloudsdkiotanalytics/v1/model/show_jobs_response.py +145 -0
- huaweicloudsdkiotanalytics/v1/model/show_last_property_value_request.py +139 -0
- huaweicloudsdkiotanalytics/v1/model/show_last_property_value_response.py +116 -0
- huaweicloudsdkiotanalytics/v1/model/show_metric_value_request.py +139 -0
- huaweicloudsdkiotanalytics/v1/model/show_metric_value_response.py +145 -0
- huaweicloudsdkiotanalytics/v1/model/show_pipeline_job_request.py +114 -0
- huaweicloudsdkiotanalytics/v1/model/show_pipeline_job_response.py +141 -0
- huaweicloudsdkiotanalytics/v1/model/show_property_raw_value_request.py +139 -0
- huaweicloudsdkiotanalytics/v1/model/show_property_raw_value_response.py +145 -0
- huaweicloudsdkiotanalytics/v1/model/show_property_values_request.py +139 -0
- huaweicloudsdkiotanalytics/v1/model/show_property_values_response.py +116 -0
- huaweicloudsdkiotanalytics/v1/model/show_run_request.py +171 -0
- huaweicloudsdkiotanalytics/v1/model/show_run_response.py +290 -0
- huaweicloudsdkiotanalytics/v1/model/show_table_preview_request.py +114 -0
- huaweicloudsdkiotanalytics/v1/model/show_table_preview_response.py +145 -0
- huaweicloudsdkiotanalytics/v1/model/show_table_schema_request.py +114 -0
- huaweicloudsdkiotanalytics/v1/model/show_table_schema_response.py +373 -0
- huaweicloudsdkiotanalytics/v1/model/smn_content_req.py +170 -0
- huaweicloudsdkiotanalytics/v1/model/smn_content_rsp.py +173 -0
- huaweicloudsdkiotanalytics/v1/model/sql_job.py +114 -0
- huaweicloudsdkiotanalytics/v1/model/sql_job_query_dataset.py +172 -0
- huaweicloudsdkiotanalytics/v1/model/sql_job_run.py +114 -0
- huaweicloudsdkiotanalytics/v1/model/sql_job_run_detail.py +434 -0
- huaweicloudsdkiotanalytics/v1/model/sql_job_run_response_body.py +201 -0
- huaweicloudsdkiotanalytics/v1/model/start_job_request.py +201 -0
- huaweicloudsdkiotanalytics/v1/model/start_job_response.py +116 -0
- huaweicloudsdkiotanalytics/v1/model/start_pipeline_job_request.py +201 -0
- huaweicloudsdkiotanalytics/v1/model/start_pipeline_job_response.py +116 -0
- huaweicloudsdkiotanalytics/v1/model/stop_job_request.py +143 -0
- huaweicloudsdkiotanalytics/v1/model/stop_job_response.py +116 -0
- huaweicloudsdkiotanalytics/v1/model/stop_pipeline_job_request.py +143 -0
- huaweicloudsdkiotanalytics/v1/model/stop_pipeline_job_response.py +116 -0
- huaweicloudsdkiotanalytics/v1/model/storage_group.py +202 -0
- huaweicloudsdkiotanalytics/v1/model/stream_model.py +170 -0
- huaweicloudsdkiotanalytics/v1/model/stream_output.py +142 -0
- huaweicloudsdkiotanalytics/v1/model/stream_response.py +173 -0
- huaweicloudsdkiotanalytics/v1/model/streaming_job_info_dto.py +405 -0
- huaweicloudsdkiotanalytics/v1/model/table.py +463 -0
- huaweicloudsdkiotanalytics/v1/model/tag.py +144 -0
- huaweicloudsdkiotanalytics/v1/model/tag_info_dto.py +173 -0
- huaweicloudsdkiotanalytics/v1/model/time_span.py +142 -0
- huaweicloudsdkiotanalytics/v1/model/time_span_dt.py +144 -0
- huaweicloudsdkiotanalytics/v1/model/transform_metric.py +170 -0
- huaweicloudsdkiotanalytics/v1/model/transform_metrics.py +195 -0
- huaweicloudsdkiotanalytics/v1/model/transform_metrics_request.py +226 -0
- huaweicloudsdkiotanalytics/v1/model/transform_model.py +196 -0
- huaweicloudsdkiotanalytics/v1/model/transform_response.py +194 -0
- huaweicloudsdkiotanalytics/v1/model/update_asset_model_request.py +139 -0
- huaweicloudsdkiotanalytics/v1/model/update_asset_model_response.py +290 -0
- huaweicloudsdkiotanalytics/v1/model/update_asset_new_request.py +139 -0
- huaweicloudsdkiotanalytics/v1/model/update_asset_new_response.py +522 -0
- huaweicloudsdkiotanalytics/v1/model/update_batch_job_request.py +139 -0
- huaweicloudsdkiotanalytics/v1/model/update_batch_job_response.py +369 -0
- huaweicloudsdkiotanalytics/v1/model/update_data_source_request.py +139 -0
- huaweicloudsdkiotanalytics/v1/model/update_data_source_response.py +257 -0
- huaweicloudsdkiotanalytics/v1/model/update_data_store.py +202 -0
- huaweicloudsdkiotanalytics/v1/model/update_data_store_request.py +139 -0
- huaweicloudsdkiotanalytics/v1/model/update_data_store_response.py +319 -0
- huaweicloudsdkiotanalytics/v1/model/update_datasource_req_dto.py +167 -0
- huaweicloudsdkiotanalytics/v1/model/update_group_request.py +139 -0
- huaweicloudsdkiotanalytics/v1/model/update_group_response.py +406 -0
- huaweicloudsdkiotanalytics/v1/model/update_pipeline_job_request.py +172 -0
- huaweicloudsdkiotanalytics/v1/model/update_pipeline_job_response.py +203 -0
- huaweicloudsdkiotanalytics/v1/model/update_streaming_job_request.py +172 -0
- huaweicloudsdkiotanalytics/v1/model/update_streaming_job_response.py +203 -0
- huaweicloudsdkiotanalytics/v1/model/validate_sql_request.py +111 -0
- huaweicloudsdkiotanalytics/v1/model/validate_sql_request_body.py +115 -0
- huaweicloudsdkiotanalytics/v1/model/validate_sql_response.py +116 -0
- huaweicloudsdkiotanalytics/v1/model/vpcep_info.py +198 -0
- huaweicloudsdkiotanalytics/v1/model/vpcep_info_rsp.py +227 -0
- huaweicloudsdkiotanalytics/v1/region/__init__.py +0 -0
- huaweicloudsdkiotanalytics/v1/region/iotanalytics_region.py +31 -0
- huaweicloudsdkiotanalytics-3.1.160.dist-info/LICENSE +13 -0
- huaweicloudsdkiotanalytics-3.1.160.dist-info/METADATA +26 -0
- huaweicloudsdkiotanalytics-3.1.160.dist-info/RECORD +273 -0
- huaweicloudsdkiotanalytics-3.1.160.dist-info/WHEEL +5 -0
- huaweicloudsdkiotanalytics-3.1.160.dist-info/top_level.txt +1 -0
@@ -0,0 +1,200 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
import six
|
4
|
+
|
5
|
+
from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
|
6
|
+
|
7
|
+
|
8
|
+
class Column:
|
9
|
+
|
10
|
+
"""
|
11
|
+
Attributes:
|
12
|
+
openapi_types (dict): The key is attribute name
|
13
|
+
and the value is attribute type.
|
14
|
+
attribute_map (dict): The key is attribute name
|
15
|
+
and the value is json key in definition.
|
16
|
+
"""
|
17
|
+
sensitive_list = []
|
18
|
+
|
19
|
+
openapi_types = {
|
20
|
+
'column_name': 'str',
|
21
|
+
'description': 'str',
|
22
|
+
'type': 'str',
|
23
|
+
'is_partition_column': 'bool'
|
24
|
+
}
|
25
|
+
|
26
|
+
attribute_map = {
|
27
|
+
'column_name': 'column_name',
|
28
|
+
'description': 'description',
|
29
|
+
'type': 'type',
|
30
|
+
'is_partition_column': 'is_partition_column'
|
31
|
+
}
|
32
|
+
|
33
|
+
def __init__(self, column_name=None, description=None, type=None, is_partition_column=None):
|
34
|
+
r"""Column
|
35
|
+
|
36
|
+
The model defined in huaweicloud sdk
|
37
|
+
|
38
|
+
:param column_name: 列名称。
|
39
|
+
:type column_name: str
|
40
|
+
:param description: 列描述。
|
41
|
+
:type description: str
|
42
|
+
:param type: 列类型。
|
43
|
+
:type type: str
|
44
|
+
:param is_partition_column: 是否分区列。
|
45
|
+
:type is_partition_column: bool
|
46
|
+
"""
|
47
|
+
|
48
|
+
|
49
|
+
|
50
|
+
self._column_name = None
|
51
|
+
self._description = None
|
52
|
+
self._type = None
|
53
|
+
self._is_partition_column = None
|
54
|
+
self.discriminator = None
|
55
|
+
|
56
|
+
self.column_name = column_name
|
57
|
+
if description is not None:
|
58
|
+
self.description = description
|
59
|
+
self.type = type
|
60
|
+
if is_partition_column is not None:
|
61
|
+
self.is_partition_column = is_partition_column
|
62
|
+
|
63
|
+
@property
|
64
|
+
def column_name(self):
|
65
|
+
r"""Gets the column_name of this Column.
|
66
|
+
|
67
|
+
列名称。
|
68
|
+
|
69
|
+
:return: The column_name of this Column.
|
70
|
+
:rtype: str
|
71
|
+
"""
|
72
|
+
return self._column_name
|
73
|
+
|
74
|
+
@column_name.setter
|
75
|
+
def column_name(self, column_name):
|
76
|
+
r"""Sets the column_name of this Column.
|
77
|
+
|
78
|
+
列名称。
|
79
|
+
|
80
|
+
:param column_name: The column_name of this Column.
|
81
|
+
:type column_name: str
|
82
|
+
"""
|
83
|
+
self._column_name = column_name
|
84
|
+
|
85
|
+
@property
|
86
|
+
def description(self):
|
87
|
+
r"""Gets the description of this Column.
|
88
|
+
|
89
|
+
列描述。
|
90
|
+
|
91
|
+
:return: The description of this Column.
|
92
|
+
:rtype: str
|
93
|
+
"""
|
94
|
+
return self._description
|
95
|
+
|
96
|
+
@description.setter
|
97
|
+
def description(self, description):
|
98
|
+
r"""Sets the description of this Column.
|
99
|
+
|
100
|
+
列描述。
|
101
|
+
|
102
|
+
:param description: The description of this Column.
|
103
|
+
:type description: str
|
104
|
+
"""
|
105
|
+
self._description = description
|
106
|
+
|
107
|
+
@property
|
108
|
+
def type(self):
|
109
|
+
r"""Gets the type of this Column.
|
110
|
+
|
111
|
+
列类型。
|
112
|
+
|
113
|
+
:return: The type of this Column.
|
114
|
+
:rtype: str
|
115
|
+
"""
|
116
|
+
return self._type
|
117
|
+
|
118
|
+
@type.setter
|
119
|
+
def type(self, type):
|
120
|
+
r"""Sets the type of this Column.
|
121
|
+
|
122
|
+
列类型。
|
123
|
+
|
124
|
+
:param type: The type of this Column.
|
125
|
+
:type type: str
|
126
|
+
"""
|
127
|
+
self._type = type
|
128
|
+
|
129
|
+
@property
|
130
|
+
def is_partition_column(self):
|
131
|
+
r"""Gets the is_partition_column of this Column.
|
132
|
+
|
133
|
+
是否分区列。
|
134
|
+
|
135
|
+
:return: The is_partition_column of this Column.
|
136
|
+
:rtype: bool
|
137
|
+
"""
|
138
|
+
return self._is_partition_column
|
139
|
+
|
140
|
+
@is_partition_column.setter
|
141
|
+
def is_partition_column(self, is_partition_column):
|
142
|
+
r"""Sets the is_partition_column of this Column.
|
143
|
+
|
144
|
+
是否分区列。
|
145
|
+
|
146
|
+
:param is_partition_column: The is_partition_column of this Column.
|
147
|
+
:type is_partition_column: bool
|
148
|
+
"""
|
149
|
+
self._is_partition_column = is_partition_column
|
150
|
+
|
151
|
+
def to_dict(self):
|
152
|
+
"""Returns the model properties as a dict"""
|
153
|
+
result = {}
|
154
|
+
|
155
|
+
for attr, _ in six.iteritems(self.openapi_types):
|
156
|
+
value = getattr(self, attr)
|
157
|
+
if isinstance(value, list):
|
158
|
+
result[attr] = list(map(
|
159
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
160
|
+
value
|
161
|
+
))
|
162
|
+
elif hasattr(value, "to_dict"):
|
163
|
+
result[attr] = value.to_dict()
|
164
|
+
elif isinstance(value, dict):
|
165
|
+
result[attr] = dict(map(
|
166
|
+
lambda item: (item[0], item[1].to_dict())
|
167
|
+
if hasattr(item[1], "to_dict") else item,
|
168
|
+
value.items()
|
169
|
+
))
|
170
|
+
else:
|
171
|
+
if attr in self.sensitive_list:
|
172
|
+
result[attr] = "****"
|
173
|
+
else:
|
174
|
+
result[attr] = value
|
175
|
+
|
176
|
+
return result
|
177
|
+
|
178
|
+
def to_str(self):
|
179
|
+
"""Returns the string representation of the model"""
|
180
|
+
import simplejson as json
|
181
|
+
if six.PY2:
|
182
|
+
import sys
|
183
|
+
reload(sys)
|
184
|
+
sys.setdefaultencoding("utf-8")
|
185
|
+
return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
|
186
|
+
|
187
|
+
def __repr__(self):
|
188
|
+
"""For `print`"""
|
189
|
+
return self.to_str()
|
190
|
+
|
191
|
+
def __eq__(self, other):
|
192
|
+
"""Returns true if both objects are equal"""
|
193
|
+
if not isinstance(other, Column):
|
194
|
+
return False
|
195
|
+
|
196
|
+
return self.__dict__ == other.__dict__
|
197
|
+
|
198
|
+
def __ne__(self, other):
|
199
|
+
"""Returns true if both objects are not equal"""
|
200
|
+
return not self == other
|
@@ -0,0 +1,347 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
import six
|
4
|
+
|
5
|
+
from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
|
6
|
+
|
7
|
+
|
8
|
+
class ComputingResource:
|
9
|
+
|
10
|
+
"""
|
11
|
+
Attributes:
|
12
|
+
openapi_types (dict): The key is attribute name
|
13
|
+
and the value is attribute type.
|
14
|
+
attribute_map (dict): The key is attribute name
|
15
|
+
and the value is json key in definition.
|
16
|
+
"""
|
17
|
+
sensitive_list = []
|
18
|
+
|
19
|
+
openapi_types = {
|
20
|
+
'computing_resource_id': 'str',
|
21
|
+
'computing_resource_name': 'str',
|
22
|
+
'description': 'str',
|
23
|
+
'owner': 'str',
|
24
|
+
'created_time': 'str',
|
25
|
+
'computing_resource_type': 'str',
|
26
|
+
'cu_count': 'int',
|
27
|
+
'charging_mode': 'int',
|
28
|
+
'resource_mode': 'int'
|
29
|
+
}
|
30
|
+
|
31
|
+
attribute_map = {
|
32
|
+
'computing_resource_id': 'computing_resource_id',
|
33
|
+
'computing_resource_name': 'computing_resource_name',
|
34
|
+
'description': 'description',
|
35
|
+
'owner': 'owner',
|
36
|
+
'created_time': 'created_time',
|
37
|
+
'computing_resource_type': 'computing_resource_type',
|
38
|
+
'cu_count': 'cu_count',
|
39
|
+
'charging_mode': 'charging_mode',
|
40
|
+
'resource_mode': 'resource_mode'
|
41
|
+
}
|
42
|
+
|
43
|
+
def __init__(self, computing_resource_id=None, computing_resource_name=None, description=None, owner=None, created_time=None, computing_resource_type=None, cu_count=None, charging_mode=None, resource_mode=None):
|
44
|
+
r"""ComputingResource
|
45
|
+
|
46
|
+
The model defined in huaweicloud sdk
|
47
|
+
|
48
|
+
:param computing_resource_id: 计算资源ID。
|
49
|
+
:type computing_resource_id: str
|
50
|
+
:param computing_resource_name: 计算资源名称。
|
51
|
+
:type computing_resource_name: str
|
52
|
+
:param description: 计算资源描述信息。
|
53
|
+
:type description: str
|
54
|
+
:param owner: 创建计算资源的用户。
|
55
|
+
:type owner: str
|
56
|
+
:param created_time: 创建计算资源的时间。时间格式为ISO日期时间格式yyyy-MM-dd'T'HH:mm:ss'Z'
|
57
|
+
:type created_time: str
|
58
|
+
:param computing_resource_type: 计算资源的类型,。目前支持:sql
|
59
|
+
:type computing_resource_type: str
|
60
|
+
:param cu_count: 与该计算资源绑定的计算单元数。设置值当前只支持16,64,256。
|
61
|
+
:type cu_count: int
|
62
|
+
:param charging_mode: 计算资源的收费模式。“1”表示按照CU时收费。“2”表示按照包年包月收费。
|
63
|
+
:type charging_mode: int
|
64
|
+
:param resource_mode: 计算资源类型。0:共享资源 1:专属资源
|
65
|
+
:type resource_mode: int
|
66
|
+
"""
|
67
|
+
|
68
|
+
|
69
|
+
|
70
|
+
self._computing_resource_id = None
|
71
|
+
self._computing_resource_name = None
|
72
|
+
self._description = None
|
73
|
+
self._owner = None
|
74
|
+
self._created_time = None
|
75
|
+
self._computing_resource_type = None
|
76
|
+
self._cu_count = None
|
77
|
+
self._charging_mode = None
|
78
|
+
self._resource_mode = None
|
79
|
+
self.discriminator = None
|
80
|
+
|
81
|
+
if computing_resource_id is not None:
|
82
|
+
self.computing_resource_id = computing_resource_id
|
83
|
+
if computing_resource_name is not None:
|
84
|
+
self.computing_resource_name = computing_resource_name
|
85
|
+
if description is not None:
|
86
|
+
self.description = description
|
87
|
+
if owner is not None:
|
88
|
+
self.owner = owner
|
89
|
+
if created_time is not None:
|
90
|
+
self.created_time = created_time
|
91
|
+
if computing_resource_type is not None:
|
92
|
+
self.computing_resource_type = computing_resource_type
|
93
|
+
if cu_count is not None:
|
94
|
+
self.cu_count = cu_count
|
95
|
+
if charging_mode is not None:
|
96
|
+
self.charging_mode = charging_mode
|
97
|
+
if resource_mode is not None:
|
98
|
+
self.resource_mode = resource_mode
|
99
|
+
|
100
|
+
@property
|
101
|
+
def computing_resource_id(self):
|
102
|
+
r"""Gets the computing_resource_id of this ComputingResource.
|
103
|
+
|
104
|
+
计算资源ID。
|
105
|
+
|
106
|
+
:return: The computing_resource_id of this ComputingResource.
|
107
|
+
:rtype: str
|
108
|
+
"""
|
109
|
+
return self._computing_resource_id
|
110
|
+
|
111
|
+
@computing_resource_id.setter
|
112
|
+
def computing_resource_id(self, computing_resource_id):
|
113
|
+
r"""Sets the computing_resource_id of this ComputingResource.
|
114
|
+
|
115
|
+
计算资源ID。
|
116
|
+
|
117
|
+
:param computing_resource_id: The computing_resource_id of this ComputingResource.
|
118
|
+
:type computing_resource_id: str
|
119
|
+
"""
|
120
|
+
self._computing_resource_id = computing_resource_id
|
121
|
+
|
122
|
+
@property
|
123
|
+
def computing_resource_name(self):
|
124
|
+
r"""Gets the computing_resource_name of this ComputingResource.
|
125
|
+
|
126
|
+
计算资源名称。
|
127
|
+
|
128
|
+
:return: The computing_resource_name of this ComputingResource.
|
129
|
+
:rtype: str
|
130
|
+
"""
|
131
|
+
return self._computing_resource_name
|
132
|
+
|
133
|
+
@computing_resource_name.setter
|
134
|
+
def computing_resource_name(self, computing_resource_name):
|
135
|
+
r"""Sets the computing_resource_name of this ComputingResource.
|
136
|
+
|
137
|
+
计算资源名称。
|
138
|
+
|
139
|
+
:param computing_resource_name: The computing_resource_name of this ComputingResource.
|
140
|
+
:type computing_resource_name: str
|
141
|
+
"""
|
142
|
+
self._computing_resource_name = computing_resource_name
|
143
|
+
|
144
|
+
@property
|
145
|
+
def description(self):
|
146
|
+
r"""Gets the description of this ComputingResource.
|
147
|
+
|
148
|
+
计算资源描述信息。
|
149
|
+
|
150
|
+
:return: The description of this ComputingResource.
|
151
|
+
:rtype: str
|
152
|
+
"""
|
153
|
+
return self._description
|
154
|
+
|
155
|
+
@description.setter
|
156
|
+
def description(self, description):
|
157
|
+
r"""Sets the description of this ComputingResource.
|
158
|
+
|
159
|
+
计算资源描述信息。
|
160
|
+
|
161
|
+
:param description: The description of this ComputingResource.
|
162
|
+
:type description: str
|
163
|
+
"""
|
164
|
+
self._description = description
|
165
|
+
|
166
|
+
@property
|
167
|
+
def owner(self):
|
168
|
+
r"""Gets the owner of this ComputingResource.
|
169
|
+
|
170
|
+
创建计算资源的用户。
|
171
|
+
|
172
|
+
:return: The owner of this ComputingResource.
|
173
|
+
:rtype: str
|
174
|
+
"""
|
175
|
+
return self._owner
|
176
|
+
|
177
|
+
@owner.setter
|
178
|
+
def owner(self, owner):
|
179
|
+
r"""Sets the owner of this ComputingResource.
|
180
|
+
|
181
|
+
创建计算资源的用户。
|
182
|
+
|
183
|
+
:param owner: The owner of this ComputingResource.
|
184
|
+
:type owner: str
|
185
|
+
"""
|
186
|
+
self._owner = owner
|
187
|
+
|
188
|
+
@property
|
189
|
+
def created_time(self):
|
190
|
+
r"""Gets the created_time of this ComputingResource.
|
191
|
+
|
192
|
+
创建计算资源的时间。时间格式为ISO日期时间格式yyyy-MM-dd'T'HH:mm:ss'Z'
|
193
|
+
|
194
|
+
:return: The created_time of this ComputingResource.
|
195
|
+
:rtype: str
|
196
|
+
"""
|
197
|
+
return self._created_time
|
198
|
+
|
199
|
+
@created_time.setter
|
200
|
+
def created_time(self, created_time):
|
201
|
+
r"""Sets the created_time of this ComputingResource.
|
202
|
+
|
203
|
+
创建计算资源的时间。时间格式为ISO日期时间格式yyyy-MM-dd'T'HH:mm:ss'Z'
|
204
|
+
|
205
|
+
:param created_time: The created_time of this ComputingResource.
|
206
|
+
:type created_time: str
|
207
|
+
"""
|
208
|
+
self._created_time = created_time
|
209
|
+
|
210
|
+
@property
|
211
|
+
def computing_resource_type(self):
|
212
|
+
r"""Gets the computing_resource_type of this ComputingResource.
|
213
|
+
|
214
|
+
计算资源的类型,。目前支持:sql
|
215
|
+
|
216
|
+
:return: The computing_resource_type of this ComputingResource.
|
217
|
+
:rtype: str
|
218
|
+
"""
|
219
|
+
return self._computing_resource_type
|
220
|
+
|
221
|
+
@computing_resource_type.setter
|
222
|
+
def computing_resource_type(self, computing_resource_type):
|
223
|
+
r"""Sets the computing_resource_type of this ComputingResource.
|
224
|
+
|
225
|
+
计算资源的类型,。目前支持:sql
|
226
|
+
|
227
|
+
:param computing_resource_type: The computing_resource_type of this ComputingResource.
|
228
|
+
:type computing_resource_type: str
|
229
|
+
"""
|
230
|
+
self._computing_resource_type = computing_resource_type
|
231
|
+
|
232
|
+
@property
|
233
|
+
def cu_count(self):
|
234
|
+
r"""Gets the cu_count of this ComputingResource.
|
235
|
+
|
236
|
+
与该计算资源绑定的计算单元数。设置值当前只支持16,64,256。
|
237
|
+
|
238
|
+
:return: The cu_count of this ComputingResource.
|
239
|
+
:rtype: int
|
240
|
+
"""
|
241
|
+
return self._cu_count
|
242
|
+
|
243
|
+
@cu_count.setter
|
244
|
+
def cu_count(self, cu_count):
|
245
|
+
r"""Sets the cu_count of this ComputingResource.
|
246
|
+
|
247
|
+
与该计算资源绑定的计算单元数。设置值当前只支持16,64,256。
|
248
|
+
|
249
|
+
:param cu_count: The cu_count of this ComputingResource.
|
250
|
+
:type cu_count: int
|
251
|
+
"""
|
252
|
+
self._cu_count = cu_count
|
253
|
+
|
254
|
+
@property
|
255
|
+
def charging_mode(self):
|
256
|
+
r"""Gets the charging_mode of this ComputingResource.
|
257
|
+
|
258
|
+
计算资源的收费模式。“1”表示按照CU时收费。“2”表示按照包年包月收费。
|
259
|
+
|
260
|
+
:return: The charging_mode of this ComputingResource.
|
261
|
+
:rtype: int
|
262
|
+
"""
|
263
|
+
return self._charging_mode
|
264
|
+
|
265
|
+
@charging_mode.setter
|
266
|
+
def charging_mode(self, charging_mode):
|
267
|
+
r"""Sets the charging_mode of this ComputingResource.
|
268
|
+
|
269
|
+
计算资源的收费模式。“1”表示按照CU时收费。“2”表示按照包年包月收费。
|
270
|
+
|
271
|
+
:param charging_mode: The charging_mode of this ComputingResource.
|
272
|
+
:type charging_mode: int
|
273
|
+
"""
|
274
|
+
self._charging_mode = charging_mode
|
275
|
+
|
276
|
+
@property
|
277
|
+
def resource_mode(self):
|
278
|
+
r"""Gets the resource_mode of this ComputingResource.
|
279
|
+
|
280
|
+
计算资源类型。0:共享资源 1:专属资源
|
281
|
+
|
282
|
+
:return: The resource_mode of this ComputingResource.
|
283
|
+
:rtype: int
|
284
|
+
"""
|
285
|
+
return self._resource_mode
|
286
|
+
|
287
|
+
@resource_mode.setter
|
288
|
+
def resource_mode(self, resource_mode):
|
289
|
+
r"""Sets the resource_mode of this ComputingResource.
|
290
|
+
|
291
|
+
计算资源类型。0:共享资源 1:专属资源
|
292
|
+
|
293
|
+
:param resource_mode: The resource_mode of this ComputingResource.
|
294
|
+
:type resource_mode: int
|
295
|
+
"""
|
296
|
+
self._resource_mode = resource_mode
|
297
|
+
|
298
|
+
def to_dict(self):
|
299
|
+
"""Returns the model properties as a dict"""
|
300
|
+
result = {}
|
301
|
+
|
302
|
+
for attr, _ in six.iteritems(self.openapi_types):
|
303
|
+
value = getattr(self, attr)
|
304
|
+
if isinstance(value, list):
|
305
|
+
result[attr] = list(map(
|
306
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
307
|
+
value
|
308
|
+
))
|
309
|
+
elif hasattr(value, "to_dict"):
|
310
|
+
result[attr] = value.to_dict()
|
311
|
+
elif isinstance(value, dict):
|
312
|
+
result[attr] = dict(map(
|
313
|
+
lambda item: (item[0], item[1].to_dict())
|
314
|
+
if hasattr(item[1], "to_dict") else item,
|
315
|
+
value.items()
|
316
|
+
))
|
317
|
+
else:
|
318
|
+
if attr in self.sensitive_list:
|
319
|
+
result[attr] = "****"
|
320
|
+
else:
|
321
|
+
result[attr] = value
|
322
|
+
|
323
|
+
return result
|
324
|
+
|
325
|
+
def to_str(self):
|
326
|
+
"""Returns the string representation of the model"""
|
327
|
+
import simplejson as json
|
328
|
+
if six.PY2:
|
329
|
+
import sys
|
330
|
+
reload(sys)
|
331
|
+
sys.setdefaultencoding("utf-8")
|
332
|
+
return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
|
333
|
+
|
334
|
+
def __repr__(self):
|
335
|
+
"""For `print`"""
|
336
|
+
return self.to_str()
|
337
|
+
|
338
|
+
def __eq__(self, other):
|
339
|
+
"""Returns true if both objects are equal"""
|
340
|
+
if not isinstance(other, ComputingResource):
|
341
|
+
return False
|
342
|
+
|
343
|
+
return self.__dict__ == other.__dict__
|
344
|
+
|
345
|
+
def __ne__(self, other):
|
346
|
+
"""Returns true if both objects are not equal"""
|
347
|
+
return not self == other
|