Skip to content

Commit

Permalink
feat: add GetKeyEvent, CreateKeyEvent, ListKeyEvents, `UpdateKe…
Browse files Browse the repository at this point in the history
…yEvent`, and `DeleteKeyEvent` methods

feat: mark `GetConversionEvent`, `CreateConversionEvent`, `ListConversionEvents`, `UpdateConversionEvent`, and `DeleteConversionEvent` methods as deprecated
docs: add deprecation comment to `GetConversionEvent`, `CreateConversionEvent`, `ListConversionEvents`, `UpdateConversionEvent`, and `DeleteConversionEvent` methods
docs: improve comment formatting of the `parent` field in `CreateFirebaseLinkRequest` and `ListFirebaseLinksRequest`
docs: improve comment formatting of the `name` field in `DeleteFirebaseLinkRequest`, `GetGlobalSiteTagRequest`, and `GetDataSharingSettingsRequest`
docs: improve comment formatting of `account` and `property` fields in `SearchChangeHistoryEventsRequest`
feat: add the `create_time` field to the `Audience` resource
feat: add the `primary` field to the `ChannelGroup` resource
feat: add `CreateBigQueryLink`, `UpdateBigQueryLink`, and `DeleteBigQueryLink` methods
feat: add the `dataset_location` field to the `BigQueryLink` resource
feat: add the `BIGQUERY_LINK` option to the `ChangeHistoryResourceType` enum
feat: add the `gmp_organization` field to the `Account` resource
fix!: Rename custom method `CreateSubpropertyRequest` to `ProvisionSubpropertyRequest`
feat: add `GetEventEditRule`, `CreateEventEditRule`, `ListEventEditRules`, `UpdateEventEditRule`, `DeleteEventEditRule`, and `ReorderEventEditRules` methods to the Admin API v1 alpha

PiperOrigin-RevId: 658468819

Source-Link: googleapis/googleapis@b479bc2

Source-Link: googleapis/googleapis-gen@f7eacec
Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWFuYWx5dGljcy1hZG1pbi8uT3dsQm90LnlhbWwiLCJoIjoiZjdlYWNlYzQyZDNiZjM2MzE1OGQzM2QyNDIyNDE0OWE4N2U4OWY4YyJ9
  • Loading branch information
gcf-owl-bot[bot] committed Aug 1, 2024
1 parent bbc97a9 commit 3e62f42
Show file tree
Hide file tree
Showing 206 changed files with 262,364 additions and 0 deletions.
13 changes: 13 additions & 0 deletions owl-bot-staging/google-analytics-admin/v1alpha/.coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[run]
branch = True

[report]
show_missing = True
omit =
google/analytics/admin/__init__.py
google/analytics/admin/gapic_version.py
exclude_lines =
# Re-enable the standard pragma
pragma: NO COVER
# Ignore debug-only repr
def __repr__
33 changes: 33 additions & 0 deletions owl-bot-staging/google-analytics-admin/v1alpha/.flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# -*- coding: utf-8 -*-
#
# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Generated by synthtool. DO NOT EDIT!
[flake8]
ignore = E203, E266, E501, W503
exclude =
# Exclude generated code.
**/proto/**
**/gapic/**
**/services/**
**/types/**
*_pb2.py

# Standard linting exemptions.
**/.nox/**
__pycache__,
.git,
*.pyc,
conf.py
2 changes: 2 additions & 0 deletions owl-bot-staging/google-analytics-admin/v1alpha/MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
recursive-include google/analytics/admin *.py
recursive-include google/analytics/admin_v1alpha *.py
49 changes: 49 additions & 0 deletions owl-bot-staging/google-analytics-admin/v1alpha/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
Python Client for Google Analytics Admin API
=================================================

Quick Start
-----------

In order to use this library, you first need to go through the following steps:

1. `Select or create a Cloud Platform project.`_
2. `Enable billing for your project.`_
3. Enable the Google Analytics Admin API.
4. `Setup Authentication.`_

.. _Select or create a Cloud Platform project.: https://console.cloud.google.com/project
.. _Enable billing for your project.: https://cloud.google.com/billing/docs/how-to/modify-project#enable_billing_for_a_project
.. _Setup Authentication.: https://googleapis.dev/python/google-api-core/latest/auth.html

Installation
~~~~~~~~~~~~

Install this library in a `virtualenv`_ using pip. `virtualenv`_ is a tool to
create isolated Python environments. The basic problem it addresses is one of
dependencies and versions, and indirectly permissions.

With `virtualenv`_, it's possible to install this library without needing system
install permissions, and without clashing with the installed system
dependencies.

.. _`virtualenv`: https://virtualenv.pypa.io/en/latest/


Mac/Linux
^^^^^^^^^

.. code-block:: console
python3 -m venv <your-env>
source <your-env>/bin/activate
<your-env>/bin/pip install /path/to/library
Windows
^^^^^^^

.. code-block:: console
python3 -m venv <your-env>
<your-env>\Scripts\activate
<your-env>\Scripts\pip.exe install \path\to\library
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
dl.field-list > dt {
min-width: 100px
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
AnalyticsAdminService
---------------------------------------

.. automodule:: google.analytics.admin_v1alpha.services.analytics_admin_service
:members:
:inherited-members:

.. automodule:: google.analytics.admin_v1alpha.services.analytics_admin_service.pagers
:members:
:inherited-members:
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Services for Google Analytics Admin v1alpha API
===============================================
.. toctree::
:maxdepth: 2

analytics_admin_service
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Types for Google Analytics Admin v1alpha API
============================================

.. automodule:: google.analytics.admin_v1alpha.types
:members:
:show-inheritance:
Loading

0 comments on commit 3e62f42

Please sign in to comment.