From b3d59933b7c0637c3c2007ba3001c0714cb4caca Mon Sep 17 00:00:00 2001 From: Daniel Sanche Date: Mon, 2 Dec 2024 16:27:44 -0800 Subject: [PATCH] renamed docs files --- ...async_client.rst => async_data_client.rst} | 0 ... => async_data_execute_query_iterator.rst} | 0 ...r.rst => async_data_mutations_batcher.rst} | 0 .../{async_table.rst => async_data_table.rst} | 0 ...eptions.rst => common_data_exceptions.rst} | 0 ...=> common_data_execute_query_metadata.rst} | 0 ...t => common_data_execute_query_values.rst} | 0 ...utations.rst => common_data_mutations.rst} | 0 ...> common_data_read_modify_write_rules.rst} | 0 ...ry.rst => common_data_read_rows_query.rst} | 0 .../{row.rst => common_data_row.rst} | 0 ...ilters.rst => common_data_row_filters.rst} | 0 docs/data_client/data_client_usage.rst | 39 +++++++++++++++++++ .../{client.rst => sync_data_client.rst} | 0 ...t => sync_data_execute_query_iterator.rst} | 0 ...er.rst => sync_data_mutations_batcher.rst} | 0 .../{table.rst => sync_data_table.rst} | 0 docs/data_client/usage.rst | 39 ------------------- docs/index.rst | 2 +- 19 files changed, 40 insertions(+), 40 deletions(-) rename docs/data_client/{async_client.rst => async_data_client.rst} (100%) rename docs/data_client/{async_execute_query_iterator.rst => async_data_execute_query_iterator.rst} (100%) rename docs/data_client/{async_mutations_batcher.rst => async_data_mutations_batcher.rst} (100%) rename docs/data_client/{async_table.rst => async_data_table.rst} (100%) rename docs/data_client/{exceptions.rst => common_data_exceptions.rst} (100%) rename docs/data_client/{execute_query_metadata.rst => common_data_execute_query_metadata.rst} (100%) rename docs/data_client/{execute_query_values.rst => common_data_execute_query_values.rst} (100%) rename docs/data_client/{mutations.rst => common_data_mutations.rst} (100%) rename docs/data_client/{read_modify_write_rules.rst => common_data_read_modify_write_rules.rst} (100%) rename docs/data_client/{read_rows_query.rst => common_data_read_rows_query.rst} (100%) rename docs/data_client/{row.rst => common_data_row.rst} (100%) rename docs/data_client/{row_filters.rst => common_data_row_filters.rst} (100%) create mode 100644 docs/data_client/data_client_usage.rst rename docs/data_client/{client.rst => sync_data_client.rst} (100%) rename docs/data_client/{execute_query_iterator.rst => sync_data_execute_query_iterator.rst} (100%) rename docs/data_client/{mutations_batcher.rst => sync_data_mutations_batcher.rst} (100%) rename docs/data_client/{table.rst => sync_data_table.rst} (100%) delete mode 100644 docs/data_client/usage.rst diff --git a/docs/data_client/async_client.rst b/docs/data_client/async_data_client.rst similarity index 100% rename from docs/data_client/async_client.rst rename to docs/data_client/async_data_client.rst diff --git a/docs/data_client/async_execute_query_iterator.rst b/docs/data_client/async_data_execute_query_iterator.rst similarity index 100% rename from docs/data_client/async_execute_query_iterator.rst rename to docs/data_client/async_data_execute_query_iterator.rst diff --git a/docs/data_client/async_mutations_batcher.rst b/docs/data_client/async_data_mutations_batcher.rst similarity index 100% rename from docs/data_client/async_mutations_batcher.rst rename to docs/data_client/async_data_mutations_batcher.rst diff --git a/docs/data_client/async_table.rst b/docs/data_client/async_data_table.rst similarity index 100% rename from docs/data_client/async_table.rst rename to docs/data_client/async_data_table.rst diff --git a/docs/data_client/exceptions.rst b/docs/data_client/common_data_exceptions.rst similarity index 100% rename from docs/data_client/exceptions.rst rename to docs/data_client/common_data_exceptions.rst diff --git a/docs/data_client/execute_query_metadata.rst b/docs/data_client/common_data_execute_query_metadata.rst similarity index 100% rename from docs/data_client/execute_query_metadata.rst rename to docs/data_client/common_data_execute_query_metadata.rst diff --git a/docs/data_client/execute_query_values.rst b/docs/data_client/common_data_execute_query_values.rst similarity index 100% rename from docs/data_client/execute_query_values.rst rename to docs/data_client/common_data_execute_query_values.rst diff --git a/docs/data_client/mutations.rst b/docs/data_client/common_data_mutations.rst similarity index 100% rename from docs/data_client/mutations.rst rename to docs/data_client/common_data_mutations.rst diff --git a/docs/data_client/read_modify_write_rules.rst b/docs/data_client/common_data_read_modify_write_rules.rst similarity index 100% rename from docs/data_client/read_modify_write_rules.rst rename to docs/data_client/common_data_read_modify_write_rules.rst diff --git a/docs/data_client/read_rows_query.rst b/docs/data_client/common_data_read_rows_query.rst similarity index 100% rename from docs/data_client/read_rows_query.rst rename to docs/data_client/common_data_read_rows_query.rst diff --git a/docs/data_client/row.rst b/docs/data_client/common_data_row.rst similarity index 100% rename from docs/data_client/row.rst rename to docs/data_client/common_data_row.rst diff --git a/docs/data_client/row_filters.rst b/docs/data_client/common_data_row_filters.rst similarity index 100% rename from docs/data_client/row_filters.rst rename to docs/data_client/common_data_row_filters.rst diff --git a/docs/data_client/data_client_usage.rst b/docs/data_client/data_client_usage.rst new file mode 100644 index 000000000..f5bbac278 --- /dev/null +++ b/docs/data_client/data_client_usage.rst @@ -0,0 +1,39 @@ +Data Client +=========== + +Sync Surface +------------ + +.. toctree:: + :maxdepth: 3 + + sync_data_client + sync_data_table + sync_data_mutations_batcher + sync_data_execute_query_iterator + +Async Surface +------------- + +.. toctree:: + :maxdepth: 3 + + async_data_client + async_data_table + async_data_mutations_batcher + async_data_execute_query_iterator + +Common Classes +-------------- + +.. toctree:: + :maxdepth: 3 + + common_data_read_rows_query + common_data_row + common_data_row_filters + common_data_mutations + common_data_read_modify_write_rules + common_data_exceptions + common_data_execute_query_values + common_data_execute_query_metadata diff --git a/docs/data_client/client.rst b/docs/data_client/sync_data_client.rst similarity index 100% rename from docs/data_client/client.rst rename to docs/data_client/sync_data_client.rst diff --git a/docs/data_client/execute_query_iterator.rst b/docs/data_client/sync_data_execute_query_iterator.rst similarity index 100% rename from docs/data_client/execute_query_iterator.rst rename to docs/data_client/sync_data_execute_query_iterator.rst diff --git a/docs/data_client/mutations_batcher.rst b/docs/data_client/sync_data_mutations_batcher.rst similarity index 100% rename from docs/data_client/mutations_batcher.rst rename to docs/data_client/sync_data_mutations_batcher.rst diff --git a/docs/data_client/table.rst b/docs/data_client/sync_data_table.rst similarity index 100% rename from docs/data_client/table.rst rename to docs/data_client/sync_data_table.rst diff --git a/docs/data_client/usage.rst b/docs/data_client/usage.rst deleted file mode 100644 index 8edc424ec..000000000 --- a/docs/data_client/usage.rst +++ /dev/null @@ -1,39 +0,0 @@ -Data Client -=========== - -Sync Surface ------------- - -.. toctree:: - :maxdepth: 3 - - client - table - mutations_batcher - execute_query_iterator - -Async Surface -------------- - -.. toctree:: - :maxdepth: 3 - - async_client - async_table - async_mutations_batcher - async_execute_query_iterator - -Common Classes --------------- - -.. toctree:: - :maxdepth: 3 - - read_rows_query - row - row_filters - mutations - read_modify_write_rules - exceptions - execute_query_values - execute_query_metadata diff --git a/docs/index.rst b/docs/index.rst index ee4a89f7e..c7f9721f3 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -7,7 +7,7 @@ Client Types .. toctree:: :maxdepth: 3 - data_client/usage + data_client/data_client_usage classic_client/usage