@maxim_mazurok/gapi.client.analyticsadmin-v1alpha 0.0.20240625 → 0.0.20240707

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.
Files changed (2) hide show
  1. package/index.d.ts +150 -1
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -9,7 +9,7 @@
9
9
  // This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
10
10
  // In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
11
11
  // Generated from: https://analyticsadmin.googleapis.com/$discovery/rest?version=v1alpha
12
- // Revision: 20240625
12
+ // Revision: 20240707
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -374,6 +374,8 @@ declare namespace gapi.client {
374
374
  createTime?: string;
375
375
  /** If set true, enables daily data export to the linked Google Cloud project. */
376
376
  dailyExportEnabled?: boolean;
377
+ /** Required. Immutable. The geographic location where the created BigQuery dataset should reside. See https://cloud.google.com/bigquery/docs/locations for supported locations. */
378
+ datasetLocation?: string;
377
379
  /** The list of event names that will be excluded from exports. */
378
380
  excludedEvents?: string[];
379
381
  /** 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'] */
@@ -2903,6 +2905,91 @@ declare namespace gapi.client {
2903
2905
  ): Request<GoogleAnalyticsAdminV1alphaAudience>;
2904
2906
  }
2905
2907
  interface BigQueryLinksResource {
2908
+ /** Creates a BigQueryLink. */
2909
+ create(request: {
2910
+ /** V1 error format. */
2911
+ '$.xgafv'?: string;
2912
+ /** OAuth access token. */
2913
+ access_token?: string;
2914
+ /** Data format for response. */
2915
+ alt?: string;
2916
+ /** JSONP */
2917
+ callback?: string;
2918
+ /** Selector specifying which fields to include in a partial response. */
2919
+ fields?: string;
2920
+ /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2921
+ key?: string;
2922
+ /** OAuth 2.0 token for the current user. */
2923
+ oauth_token?: string;
2924
+ /** Required. Example format: properties/1234 */
2925
+ parent: string;
2926
+ /** Returns response with indentations and line breaks. */
2927
+ prettyPrint?: boolean;
2928
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
2929
+ quotaUser?: string;
2930
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2931
+ upload_protocol?: string;
2932
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2933
+ uploadType?: string;
2934
+ /** Request body */
2935
+ resource: GoogleAnalyticsAdminV1alphaBigQueryLink;
2936
+ }): Request<GoogleAnalyticsAdminV1alphaBigQueryLink>;
2937
+ create(
2938
+ request: {
2939
+ /** V1 error format. */
2940
+ '$.xgafv'?: string;
2941
+ /** OAuth access token. */
2942
+ access_token?: string;
2943
+ /** Data format for response. */
2944
+ alt?: string;
2945
+ /** JSONP */
2946
+ callback?: string;
2947
+ /** Selector specifying which fields to include in a partial response. */
2948
+ fields?: string;
2949
+ /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2950
+ key?: string;
2951
+ /** OAuth 2.0 token for the current user. */
2952
+ oauth_token?: string;
2953
+ /** Required. Example format: properties/1234 */
2954
+ parent: string;
2955
+ /** Returns response with indentations and line breaks. */
2956
+ prettyPrint?: boolean;
2957
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
2958
+ quotaUser?: string;
2959
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2960
+ upload_protocol?: string;
2961
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2962
+ uploadType?: string;
2963
+ },
2964
+ body: GoogleAnalyticsAdminV1alphaBigQueryLink
2965
+ ): Request<GoogleAnalyticsAdminV1alphaBigQueryLink>;
2966
+ /** Deletes a BigQueryLink on a property. */
2967
+ delete(request?: {
2968
+ /** V1 error format. */
2969
+ '$.xgafv'?: string;
2970
+ /** OAuth access token. */
2971
+ access_token?: string;
2972
+ /** Data format for response. */
2973
+ alt?: string;
2974
+ /** JSONP */
2975
+ callback?: string;
2976
+ /** Selector specifying which fields to include in a partial response. */
2977
+ fields?: string;
2978
+ /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2979
+ key?: string;
2980
+ /** Required. The BigQueryLink to delete. Example format: properties/1234/bigQueryLinks/5678 */
2981
+ name: string;
2982
+ /** OAuth 2.0 token for the current user. */
2983
+ oauth_token?: string;
2984
+ /** Returns response with indentations and line breaks. */
2985
+ prettyPrint?: boolean;
2986
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
2987
+ quotaUser?: string;
2988
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2989
+ upload_protocol?: string;
2990
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2991
+ uploadType?: string;
2992
+ }): Request<{}>;
2906
2993
  /** Lookup for a single BigQuery Link. */
2907
2994
  get(request?: {
2908
2995
  /** V1 error format. */
@@ -2961,6 +3048,68 @@ declare namespace gapi.client {
2961
3048
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2962
3049
  uploadType?: string;
2963
3050
  }): Request<GoogleAnalyticsAdminV1alphaListBigQueryLinksResponse>;
3051
+ /** Updates a BigQueryLink. */
3052
+ patch(request: {
3053
+ /** V1 error format. */
3054
+ '$.xgafv'?: string;
3055
+ /** OAuth access token. */
3056
+ access_token?: string;
3057
+ /** Data format for response. */
3058
+ alt?: string;
3059
+ /** JSONP */
3060
+ callback?: string;
3061
+ /** Selector specifying which fields to include in a partial response. */
3062
+ fields?: string;
3063
+ /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
3064
+ key?: string;
3065
+ /** Output only. Resource name of this BigQuery link. Format: 'properties/{property_id}/bigQueryLinks/{bigquery_link_id}' Format: 'properties/1234/bigQueryLinks/abc567' */
3066
+ name: string;
3067
+ /** OAuth 2.0 token for the current user. */
3068
+ oauth_token?: string;
3069
+ /** Returns response with indentations and line breaks. */
3070
+ prettyPrint?: boolean;
3071
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
3072
+ quotaUser?: string;
3073
+ /** Required. The list of fields to be updated. Field names must be in snake case (e.g., "field_to_update"). Omitted fields will not be updated. To replace the entire entity, use one path with the string "*" to match all fields. */
3074
+ updateMask?: string;
3075
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
3076
+ upload_protocol?: string;
3077
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3078
+ uploadType?: string;
3079
+ /** Request body */
3080
+ resource: GoogleAnalyticsAdminV1alphaBigQueryLink;
3081
+ }): Request<GoogleAnalyticsAdminV1alphaBigQueryLink>;
3082
+ patch(
3083
+ request: {
3084
+ /** V1 error format. */
3085
+ '$.xgafv'?: string;
3086
+ /** OAuth access token. */
3087
+ access_token?: string;
3088
+ /** Data format for response. */
3089
+ alt?: string;
3090
+ /** JSONP */
3091
+ callback?: string;
3092
+ /** Selector specifying which fields to include in a partial response. */
3093
+ fields?: string;
3094
+ /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
3095
+ key?: string;
3096
+ /** Output only. Resource name of this BigQuery link. Format: 'properties/{property_id}/bigQueryLinks/{bigquery_link_id}' Format: 'properties/1234/bigQueryLinks/abc567' */
3097
+ name: string;
3098
+ /** OAuth 2.0 token for the current user. */
3099
+ oauth_token?: string;
3100
+ /** Returns response with indentations and line breaks. */
3101
+ prettyPrint?: boolean;
3102
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
3103
+ quotaUser?: string;
3104
+ /** Required. The list of fields to be updated. Field names must be in snake case (e.g., "field_to_update"). Omitted fields will not be updated. To replace the entire entity, use one path with the string "*" to match all fields. */
3105
+ updateMask?: string;
3106
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
3107
+ upload_protocol?: string;
3108
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3109
+ uploadType?: string;
3110
+ },
3111
+ body: GoogleAnalyticsAdminV1alphaBigQueryLink
3112
+ ): Request<GoogleAnalyticsAdminV1alphaBigQueryLink>;
2964
3113
  }
2965
3114
  interface CalculatedMetricsResource {
2966
3115
  /** Creates a CalculatedMetric. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.analyticsadmin-v1alpha",
3
- "version": "0.0.20240625",
3
+ "version": "0.0.20240707",
4
4
  "description": "TypeScript typings for Google Analytics Admin API v1alpha",
5
5
  "repository": {
6
6
  "type": "git",