Skip to content

Commit

Permalink
docs rebuild
Browse files Browse the repository at this point in the history
  • Loading branch information
max-ostapenko committed Feb 13, 2024
1 parent 2f579a5 commit dde85c9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Common functions for the GA4 Data Import API code samples.
def get_project_number(project_id: str)
```

[[view_source]](https://github.com/max-ostapenko/ga4_data_import/blob/main/ga4_data_import/common.py#L9)
[[view_source]](https://github.com/max-ostapenko/ga4_data_import/blob/main/ga4_data_import/common.py#L7)

Get the project number from the project id.

Expand Down Expand Up @@ -79,7 +79,7 @@ Create a new bucket with the provided name in the provided project.
def add_bucket_read_access(bucket_name: str, service_account_email: str)
```

[[view_source]](https://github.com/max-ostapenko/ga4_data_import/blob/main/ga4_data_import/storage.py#L28)
[[view_source]](https://github.com/max-ostapenko/ga4_data_import/blob/main/ga4_data_import/storage.py#L31)

Add read access to the bucket for the compute service account.

Expand All @@ -102,7 +102,7 @@ Workflow deployment module to configure BigQuery export to Cloud Storage.
def deploy_workflow(project_id, region, workflow_id, service_account_email)
```

[[view_source]](https://github.com/max-ostapenko/ga4_data_import/blob/main/ga4_data_import/workflow.py#L20)
[[view_source]](https://github.com/max-ostapenko/ga4_data_import/blob/main/ga4_data_import/workflow.py#L15)

Deploy a workflow to the project.

Expand All @@ -122,7 +122,7 @@ def deploy_scheduler(project_id, region, scheduler_id, service_account_email,
schedule, workflow_id, query, storage_path)
```

[[view_source]](https://github.com/max-ostapenko/ga4_data_import/blob/main/ga4_data_import/workflow.py#L90)
[[view_source]](https://github.com/max-ostapenko/ga4_data_import/blob/main/ga4_data_import/workflow.py#L85)

Deploy a trigger to the project.

Expand Down Expand Up @@ -151,7 +151,7 @@ This file contains functions for creating a Compute Engine instance and static a
def create_static_address(project_id: str, region: str, instance_name: str)
```

[[view_source]](https://github.com/max-ostapenko/ga4_data_import/blob/main/ga4_data_import/compute.py#L32)
[[view_source]](https://github.com/max-ostapenko/ga4_data_import/blob/main/ga4_data_import/compute.py#L23)

Create a static address with the provided name, project id, and region.

Expand Down Expand Up @@ -180,7 +180,7 @@ def create_instance(instance_name: str,
service_account_email: str = "")
```

[[view_source]](https://github.com/max-ostapenko/ga4_data_import/blob/main/ga4_data_import/compute.py#L66)
[[view_source]](https://github.com/max-ostapenko/ga4_data_import/blob/main/ga4_data_import/compute.py#L57)

Create a Compute Engine instance with the provided name, project id, zone, and bucket name.

Expand Down Expand Up @@ -209,7 +209,7 @@ def add_server_pub_key(project_id: str, zone: str, instance_name: str,
pub_key: str, username: str)
```

[[view_source]](https://github.com/max-ostapenko/ga4_data_import/blob/main/ga4_data_import/compute.py#L202)
[[view_source]](https://github.com/max-ostapenko/ga4_data_import/blob/main/ga4_data_import/compute.py#L196)

Add the provided SSH public key to the instance metadata.

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "ga4_data_import"
version = "0.1.61"
version = "0.1.65"
description = "Google Analytics 4 Data Import pipeline"
readme = "README.md"
requires-python = ">=3.7"
Expand Down

0 comments on commit dde85c9

Please sign in to comment.