Google Analytics Admin API . properties . bigQueryLinks

Instance Methods

close()

Close httplib2 connections.

get(name, x__xgafv=None)

Lookup for a single BigQuery Link.

list(parent, pageSize=None, pageToken=None, x__xgafv=None)

Lists BigQuery Links on a property.

list_next()

Retrieves the next page of results.

Method Details

close()
Close httplib2 connections.
get(name, x__xgafv=None)
Lookup for a single BigQuery Link.

Args:
  name: string, Required. The name of the BigQuery link to lookup. Format: properties/{property_id}/bigQueryLinks/{bigquery_link_id} Example: properties/123/bigQueryLinks/456 (required)
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # A link between a GA4 Property and BigQuery project.
  "createTime": "A String", # Output only. Time when the link was created.
  "dailyExportEnabled": True or False, # If set true, enables daily data export to the linked Google Cloud project.
  "excludedEvents": [ # The list of event names that will be excluded from exports.
    "A String",
  ],
  "exportStreams": [ # The list of streams under the parent property for which data will be exported. Format: properties/{property_id}/dataStreams/{stream_id} Example: ['properties/1000/dataStreams/2000']
    "A String",
  ],
  "freshDailyExportEnabled": True or False, # If set true, enables fresh daily export to the linked Google Cloud project.
  "includeAdvertisingId": True or False, # If set true, exported data will include advertising identifiers for mobile app streams.
  "name": "A String", # Output only. Resource name of this BigQuery link. Format: 'properties/{property_id}/bigQueryLinks/{bigquery_link_id}' Format: 'properties/1234/bigQueryLinks/abc567'
  "project": "A String", # Immutable. The linked Google Cloud project. When creating a BigQueryLink, you may provide this resource name using either a project number or project ID. Once this resource has been created, the returned project will always have a project that contains a project number. Format: 'projects/{project number}' Example: 'projects/1234'
  "streamingExportEnabled": True or False, # If set true, enables streaming export to the linked Google Cloud project.
}
list(parent, pageSize=None, pageToken=None, x__xgafv=None)
Lists BigQuery Links on a property.

Args:
  parent: string, Required. The name of the property to list BigQuery links under. Format: properties/{property_id} Example: properties/1234 (required)
  pageSize: integer, The maximum number of resources to return. The service may return fewer than this value, even if there are additional pages. If unspecified, at most 50 resources will be returned. The maximum value is 200; (higher values will be coerced to the maximum)
  pageToken: string, A page token, received from a previous `ListBigQueryLinks` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListBigQueryLinks` must match the call that provided the page token.
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # Response message for ListBigQueryLinks RPC
  "bigqueryLinks": [ # List of BigQueryLinks.
    { # A link between a GA4 Property and BigQuery project.
      "createTime": "A String", # Output only. Time when the link was created.
      "dailyExportEnabled": True or False, # If set true, enables daily data export to the linked Google Cloud project.
      "excludedEvents": [ # The list of event names that will be excluded from exports.
        "A String",
      ],
      "exportStreams": [ # The list of streams under the parent property for which data will be exported. Format: properties/{property_id}/dataStreams/{stream_id} Example: ['properties/1000/dataStreams/2000']
        "A String",
      ],
      "freshDailyExportEnabled": True or False, # If set true, enables fresh daily export to the linked Google Cloud project.
      "includeAdvertisingId": True or False, # If set true, exported data will include advertising identifiers for mobile app streams.
      "name": "A String", # Output only. Resource name of this BigQuery link. Format: 'properties/{property_id}/bigQueryLinks/{bigquery_link_id}' Format: 'properties/1234/bigQueryLinks/abc567'
      "project": "A String", # Immutable. The linked Google Cloud project. When creating a BigQueryLink, you may provide this resource name using either a project number or project ID. Once this resource has been created, the returned project will always have a project that contains a project number. Format: 'projects/{project number}' Example: 'projects/1234'
      "streamingExportEnabled": True or False, # If set true, enables streaming export to the linked Google Cloud project.
    },
  ],
  "nextPageToken": "A String", # A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
}
list_next()
Retrieves the next page of results.

        Args:
          previous_request: The request for the previous page. (required)
          previous_response: The response from the request for the previous page. (required)

        Returns:
          A request object that you can call 'execute()' on to request the next
          page. Returns None if there are no more items in the collection.