@maxim_mazurok/gapi.client.analyticsadmin-v1alpha 0.0.20230926 → 0.0.20231001
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.
- package/index.d.ts +1015 -52
- package/package.json +1 -1
- package/readme.md +10 -0
- package/tests.ts +173 -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:
|
|
12
|
+
// Revision: 20231001
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -698,6 +698,9 @@ declare namespace gapi.client {
|
|
|
698
698
|
/** A snapshot of a CustomMetric resource in change history. */
|
|
699
699
|
customMetric?:
|
|
700
700
|
GoogleAnalyticsAdminV1alphaCustomMetric;
|
|
701
|
+
/** A snapshot of DataRedactionSettings resource in change history. */
|
|
702
|
+
dataRedactionSettings?:
|
|
703
|
+
GoogleAnalyticsAdminV1alphaDataRedactionSettings;
|
|
701
704
|
/** A snapshot of a data retention settings resource in change history. */
|
|
702
705
|
dataRetentionSettings?:
|
|
703
706
|
GoogleAnalyticsAdminV1alphaDataRetentionSettings;
|
|
@@ -905,6 +908,41 @@ declare namespace gapi.client {
|
|
|
905
908
|
// tslint:disable-next-line:no-empty-interface
|
|
906
909
|
interface GoogleAnalyticsAdminV1alphaCreateConnectedSiteTagResponse {
|
|
907
910
|
}
|
|
911
|
+
interface GoogleAnalyticsAdminV1alphaCreateRollupPropertyRequest {
|
|
912
|
+
/** Required. The roll-up property to create. */
|
|
913
|
+
rollupProperty?:
|
|
914
|
+
GoogleAnalyticsAdminV1alphaProperty;
|
|
915
|
+
/** Optional. The resource names of properties that will be sources to the created roll-up property. */
|
|
916
|
+
sourceProperties?:
|
|
917
|
+
string[];
|
|
918
|
+
}
|
|
919
|
+
interface GoogleAnalyticsAdminV1alphaCreateRollupPropertyResponse {
|
|
920
|
+
/** The created roll-up property. */
|
|
921
|
+
rollupProperty?:
|
|
922
|
+
GoogleAnalyticsAdminV1alphaProperty;
|
|
923
|
+
/** The created roll-up property source links. */
|
|
924
|
+
rollupPropertySourceLinks?:
|
|
925
|
+
GoogleAnalyticsAdminV1alphaRollupPropertySourceLink[];
|
|
926
|
+
}
|
|
927
|
+
interface GoogleAnalyticsAdminV1alphaCreateSubpropertyRequest {
|
|
928
|
+
/** Required. The ordinary property for which to create a subproperty. Format: properties/property_id Example: properties/123 */
|
|
929
|
+
parent?:
|
|
930
|
+
string;
|
|
931
|
+
/** Required. The subproperty to create. */
|
|
932
|
+
subproperty?:
|
|
933
|
+
GoogleAnalyticsAdminV1alphaProperty;
|
|
934
|
+
/** Optional. The subproperty event filter to create on an ordinary property. */
|
|
935
|
+
subpropertyEventFilter?:
|
|
936
|
+
GoogleAnalyticsAdminV1alphaSubpropertyEventFilter;
|
|
937
|
+
}
|
|
938
|
+
interface GoogleAnalyticsAdminV1alphaCreateSubpropertyResponse {
|
|
939
|
+
/** The created subproperty. */
|
|
940
|
+
subproperty?:
|
|
941
|
+
GoogleAnalyticsAdminV1alphaProperty;
|
|
942
|
+
/** The created subproperty event filter. */
|
|
943
|
+
subpropertyEventFilter?:
|
|
944
|
+
GoogleAnalyticsAdminV1alphaSubpropertyEventFilter;
|
|
945
|
+
}
|
|
908
946
|
interface GoogleAnalyticsAdminV1alphaCreateUserLinkRequest {
|
|
909
947
|
/** Optional. If set, then email the new user notifying them that they've been granted permissions to the resource. */
|
|
910
948
|
notifyNewUser?:
|
|
@@ -972,6 +1010,29 @@ declare namespace gapi.client {
|
|
|
972
1010
|
scope?:
|
|
973
1011
|
string;
|
|
974
1012
|
}
|
|
1013
|
+
interface GoogleAnalyticsAdminV1alphaDataRedactionSettings {
|
|
1014
|
+
/** If enabled, any event parameter or user property values that look like an email will be redacted. */
|
|
1015
|
+
emailRedactionEnabled?:
|
|
1016
|
+
boolean;
|
|
1017
|
+
/**
|
|
1018
|
+
* Output only. Name of this Data Redaction Settings resource. Format: properties/{property_id}/dataStreams/{data_stream}/dataRedactionSettings Example:
|
|
1019
|
+
* "properties/1000/dataStreams/2000/dataRedactionSettings"
|
|
1020
|
+
*/
|
|
1021
|
+
name?:
|
|
1022
|
+
string;
|
|
1023
|
+
/**
|
|
1024
|
+
* The query parameter keys to apply redaction logic to if present in the URL. Query parameter matching is case-insensitive. Must contain at least one element if
|
|
1025
|
+
* query_parameter_replacement_enabled is true. Keys cannot contain commas.
|
|
1026
|
+
*/
|
|
1027
|
+
queryParameterKeys?:
|
|
1028
|
+
string[];
|
|
1029
|
+
/**
|
|
1030
|
+
* Query Parameter redaction removes the key and value portions of a query parameter if it is in the configured set of query parameters. If enabled, URL query replacement logic will be
|
|
1031
|
+
* run for the Stream. Any query parameters defined in query_parameter_keys will be redacted.
|
|
1032
|
+
*/
|
|
1033
|
+
queryParameterRedactionEnabled?:
|
|
1034
|
+
boolean;
|
|
1035
|
+
}
|
|
975
1036
|
interface GoogleAnalyticsAdminV1alphaDataRetentionSettings {
|
|
976
1037
|
/** The length of time that event-level data is retained. */
|
|
977
1038
|
eventDataRetention?:
|
|
@@ -1574,6 +1635,14 @@ declare namespace gapi.client {
|
|
|
1574
1635
|
properties?:
|
|
1575
1636
|
GoogleAnalyticsAdminV1alphaProperty[];
|
|
1576
1637
|
}
|
|
1638
|
+
interface GoogleAnalyticsAdminV1alphaListRollupPropertySourceLinksResponse {
|
|
1639
|
+
/** A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
|
|
1640
|
+
nextPageToken?:
|
|
1641
|
+
string;
|
|
1642
|
+
/** List of RollupPropertySourceLinks. */
|
|
1643
|
+
rollupPropertySourceLinks?:
|
|
1644
|
+
GoogleAnalyticsAdminV1alphaRollupPropertySourceLink[];
|
|
1645
|
+
}
|
|
1577
1646
|
interface GoogleAnalyticsAdminV1alphaListSearchAds360LinksResponse {
|
|
1578
1647
|
/** A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
|
|
1579
1648
|
nextPageToken?:
|
|
@@ -1593,6 +1662,14 @@ declare namespace gapi.client {
|
|
|
1593
1662
|
skadnetworkConversionValueSchemas?:
|
|
1594
1663
|
GoogleAnalyticsAdminV1alphaSKAdNetworkConversionValueSchema[];
|
|
1595
1664
|
}
|
|
1665
|
+
interface GoogleAnalyticsAdminV1alphaListSubpropertyEventFiltersResponse {
|
|
1666
|
+
/** A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
|
|
1667
|
+
nextPageToken?:
|
|
1668
|
+
string;
|
|
1669
|
+
/** List of subproperty event filters. */
|
|
1670
|
+
subpropertyEventFilters?:
|
|
1671
|
+
GoogleAnalyticsAdminV1alphaSubpropertyEventFilter[];
|
|
1672
|
+
}
|
|
1596
1673
|
interface GoogleAnalyticsAdminV1alphaListUserLinksResponse {
|
|
1597
1674
|
/** A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
|
|
1598
1675
|
nextPageToken?:
|
|
@@ -1707,10 +1784,7 @@ declare namespace gapi.client {
|
|
|
1707
1784
|
*/
|
|
1708
1785
|
parent?:
|
|
1709
1786
|
string;
|
|
1710
|
-
/**
|
|
1711
|
-
* Immutable. The property type for this Property resource. When creating a property, if the type is "PROPERTY_TYPE_UNSPECIFIED", then "ORDINARY_PROPERTY" will be implied.
|
|
1712
|
-
* "SUBPROPERTY" and "ROLLUP_PROPERTY" types cannot yet be created with the Google Analytics Admin API.
|
|
1713
|
-
*/
|
|
1787
|
+
/** Immutable. The property type for this Property resource. When creating a property, if the type is "PROPERTY_TYPE_UNSPECIFIED", then "ORDINARY_PROPERTY" will be implied. */
|
|
1714
1788
|
propertyType?:
|
|
1715
1789
|
string;
|
|
1716
1790
|
/** Output only. The Google Analytics service level that applies to this property. */
|
|
@@ -1756,6 +1830,17 @@ declare namespace gapi.client {
|
|
|
1756
1830
|
accountTicketId?:
|
|
1757
1831
|
string;
|
|
1758
1832
|
}
|
|
1833
|
+
interface GoogleAnalyticsAdminV1alphaRollupPropertySourceLink {
|
|
1834
|
+
/**
|
|
1835
|
+
* Output only. Resource name of this RollupPropertySourceLink. Format: 'properties/{property_id}/rollupPropertySourceLinks/{rollup_property_source_link}' Format:
|
|
1836
|
+
* 'properties/123/rollupPropertySourceLinks/456'
|
|
1837
|
+
*/
|
|
1838
|
+
name?:
|
|
1839
|
+
string;
|
|
1840
|
+
/** Immutable. Resource name of the source property. Format: properties/{property_id} Example: "properties/789" */
|
|
1841
|
+
sourceProperty?:
|
|
1842
|
+
string;
|
|
1843
|
+
}
|
|
1759
1844
|
interface GoogleAnalyticsAdminV1alphaRunAccessReportRequest {
|
|
1760
1845
|
/**
|
|
1761
1846
|
* Date ranges of access records to read. If multiple date ranges are requested, each response row will contain a zero based date range index. If two date ranges overlap, the access
|
|
@@ -1952,6 +2037,63 @@ declare namespace gapi.client {
|
|
|
1952
2037
|
postbackWindowTwo?:
|
|
1953
2038
|
GoogleAnalyticsAdminV1alphaPostbackWindow;
|
|
1954
2039
|
}
|
|
2040
|
+
interface GoogleAnalyticsAdminV1alphaSubpropertyEventFilter {
|
|
2041
|
+
/** Immutable. Resource name of the Subproperty that uses this filter. */
|
|
2042
|
+
applyToProperty?:
|
|
2043
|
+
string;
|
|
2044
|
+
/** Required. Unordered list. Filter clauses that define the SubpropertyEventFilter. All clauses are AND'ed together to determine what data is sent to the subproperty. */
|
|
2045
|
+
filterClauses?:
|
|
2046
|
+
GoogleAnalyticsAdminV1alphaSubpropertyEventFilterClause[];
|
|
2047
|
+
/** Output only. Format: properties/{ordinary_property_id}/subpropertyEventFilters/{sub_property_event_filter} Example: properties/1234/subpropertyEventFilters/5678 */
|
|
2048
|
+
name?:
|
|
2049
|
+
string;
|
|
2050
|
+
}
|
|
2051
|
+
interface GoogleAnalyticsAdminV1alphaSubpropertyEventFilterClause {
|
|
2052
|
+
/** Required. The type for the filter clause. */
|
|
2053
|
+
filterClauseType?:
|
|
2054
|
+
string;
|
|
2055
|
+
/** Required. The logical expression for what events are sent to the subproperty. */
|
|
2056
|
+
filterExpression?:
|
|
2057
|
+
GoogleAnalyticsAdminV1alphaSubpropertyEventFilterExpression;
|
|
2058
|
+
}
|
|
2059
|
+
interface GoogleAnalyticsAdminV1alphaSubpropertyEventFilterCondition {
|
|
2060
|
+
/** Required. The field that is being filtered. */
|
|
2061
|
+
fieldName?:
|
|
2062
|
+
string;
|
|
2063
|
+
/** A filter for null values. */
|
|
2064
|
+
nullFilter?:
|
|
2065
|
+
boolean;
|
|
2066
|
+
/** A filter for a string-type dimension that matches a particular pattern. */
|
|
2067
|
+
stringFilter?:
|
|
2068
|
+
GoogleAnalyticsAdminV1alphaSubpropertyEventFilterConditionStringFilter;
|
|
2069
|
+
}
|
|
2070
|
+
interface GoogleAnalyticsAdminV1alphaSubpropertyEventFilterConditionStringFilter {
|
|
2071
|
+
/** Optional. If true, the string value is case sensitive. If false, the match is case-insensitive. */
|
|
2072
|
+
caseSensitive?:
|
|
2073
|
+
boolean;
|
|
2074
|
+
/** Required. The match type for the string filter. */
|
|
2075
|
+
matchType?:
|
|
2076
|
+
string;
|
|
2077
|
+
/** Required. The string value used for the matching. */
|
|
2078
|
+
value?:
|
|
2079
|
+
string;
|
|
2080
|
+
}
|
|
2081
|
+
interface GoogleAnalyticsAdminV1alphaSubpropertyEventFilterExpression {
|
|
2082
|
+
/** Creates a filter that matches a specific event. This cannot be set on the top level SubpropertyEventFilterExpression. */
|
|
2083
|
+
filterCondition?:
|
|
2084
|
+
GoogleAnalyticsAdminV1alphaSubpropertyEventFilterCondition;
|
|
2085
|
+
/** A filter expression to be NOT'ed (inverted, complemented). It can only include a filter. This cannot be set on the top level SubpropertyEventFilterExpression. */
|
|
2086
|
+
notExpression?:
|
|
2087
|
+
GoogleAnalyticsAdminV1alphaSubpropertyEventFilterExpression;
|
|
2088
|
+
/** A list of expressions to OR’ed together. Must only contain not_expression or filter_condition expressions. */
|
|
2089
|
+
orGroup?:
|
|
2090
|
+
GoogleAnalyticsAdminV1alphaSubpropertyEventFilterExpressionList;
|
|
2091
|
+
}
|
|
2092
|
+
interface GoogleAnalyticsAdminV1alphaSubpropertyEventFilterExpressionList {
|
|
2093
|
+
/** Required. Unordered list. A list of Subproperty event filter expressions */
|
|
2094
|
+
filterExpressions?:
|
|
2095
|
+
GoogleAnalyticsAdminV1alphaSubpropertyEventFilterExpression[];
|
|
2096
|
+
}
|
|
1955
2097
|
interface GoogleAnalyticsAdminV1alphaUpdateAccessBindingRequest {
|
|
1956
2098
|
/** Required. The access binding to update. */
|
|
1957
2099
|
accessBinding?:
|
|
@@ -7470,6 +7612,48 @@ declare namespace gapi.client {
|
|
|
7470
7612
|
uploadType?:
|
|
7471
7613
|
string;
|
|
7472
7614
|
}): Request<GoogleAnalyticsAdminV1alphaDataStream>;
|
|
7615
|
+
/** Lookup for a single DataRedactionSettings. */
|
|
7616
|
+
getDataRedactionSettings(request?: {
|
|
7617
|
+
/** V1 error format. */
|
|
7618
|
+
"$.xgafv"?:
|
|
7619
|
+
string;
|
|
7620
|
+
/** OAuth access token. */
|
|
7621
|
+
access_token?:
|
|
7622
|
+
string;
|
|
7623
|
+
/** Data format for response. */
|
|
7624
|
+
alt?:
|
|
7625
|
+
string;
|
|
7626
|
+
/** JSONP */
|
|
7627
|
+
callback?:
|
|
7628
|
+
string;
|
|
7629
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
7630
|
+
fields?:
|
|
7631
|
+
string;
|
|
7632
|
+
/** 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. */
|
|
7633
|
+
key?:
|
|
7634
|
+
string;
|
|
7635
|
+
/**
|
|
7636
|
+
* Required. The name of the settings to lookup. Format: properties/{property}/dataStreams/{data_stream}/dataRedactionSettings Example:
|
|
7637
|
+
* "properties/1000/dataStreams/2000/dataRedactionSettings"
|
|
7638
|
+
*/
|
|
7639
|
+
name:
|
|
7640
|
+
string;
|
|
7641
|
+
/** OAuth 2.0 token for the current user. */
|
|
7642
|
+
oauth_token?:
|
|
7643
|
+
string;
|
|
7644
|
+
/** Returns response with indentations and line breaks. */
|
|
7645
|
+
prettyPrint?:
|
|
7646
|
+
boolean;
|
|
7647
|
+
/** 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. */
|
|
7648
|
+
quotaUser?:
|
|
7649
|
+
string;
|
|
7650
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
7651
|
+
upload_protocol?:
|
|
7652
|
+
string;
|
|
7653
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
7654
|
+
uploadType?:
|
|
7655
|
+
string;
|
|
7656
|
+
}): Request<GoogleAnalyticsAdminV1alphaDataRedactionSettings>;
|
|
7473
7657
|
/** Returns the enhanced measurement settings for this data stream. Note that the stream must enable enhanced measurement for these settings to take effect. */
|
|
7474
7658
|
getEnhancedMeasurementSettings(request?: {
|
|
7475
7659
|
/** V1 error format. */
|
|
@@ -7689,6 +7873,105 @@ declare namespace gapi.client {
|
|
|
7689
7873
|
string;
|
|
7690
7874
|
},
|
|
7691
7875
|
body: GoogleAnalyticsAdminV1alphaDataStream): Request<GoogleAnalyticsAdminV1alphaDataStream>;
|
|
7876
|
+
/** Updates a DataRedactionSettings on a property. */
|
|
7877
|
+
updateDataRedactionSettings(request: {
|
|
7878
|
+
/** V1 error format. */
|
|
7879
|
+
"$.xgafv"?:
|
|
7880
|
+
string;
|
|
7881
|
+
/** OAuth access token. */
|
|
7882
|
+
access_token?:
|
|
7883
|
+
string;
|
|
7884
|
+
/** Data format for response. */
|
|
7885
|
+
alt?:
|
|
7886
|
+
string;
|
|
7887
|
+
/** JSONP */
|
|
7888
|
+
callback?:
|
|
7889
|
+
string;
|
|
7890
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
7891
|
+
fields?:
|
|
7892
|
+
string;
|
|
7893
|
+
/** 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. */
|
|
7894
|
+
key?:
|
|
7895
|
+
string;
|
|
7896
|
+
/**
|
|
7897
|
+
* Output only. Name of this Data Redaction Settings resource. Format: properties/{property_id}/dataStreams/{data_stream}/dataRedactionSettings Example:
|
|
7898
|
+
* "properties/1000/dataStreams/2000/dataRedactionSettings"
|
|
7899
|
+
*/
|
|
7900
|
+
name:
|
|
7901
|
+
string;
|
|
7902
|
+
/** OAuth 2.0 token for the current user. */
|
|
7903
|
+
oauth_token?:
|
|
7904
|
+
string;
|
|
7905
|
+
/** Returns response with indentations and line breaks. */
|
|
7906
|
+
prettyPrint?:
|
|
7907
|
+
boolean;
|
|
7908
|
+
/** 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. */
|
|
7909
|
+
quotaUser?:
|
|
7910
|
+
string;
|
|
7911
|
+
/**
|
|
7912
|
+
* 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
|
|
7913
|
+
* one path with the string "*" to match all fields.
|
|
7914
|
+
*/
|
|
7915
|
+
updateMask?:
|
|
7916
|
+
string;
|
|
7917
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
7918
|
+
upload_protocol?:
|
|
7919
|
+
string;
|
|
7920
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
7921
|
+
uploadType?:
|
|
7922
|
+
string;
|
|
7923
|
+
/** Request body */
|
|
7924
|
+
resource:
|
|
7925
|
+
GoogleAnalyticsAdminV1alphaDataRedactionSettings;
|
|
7926
|
+
}): Request<GoogleAnalyticsAdminV1alphaDataRedactionSettings>;
|
|
7927
|
+
updateDataRedactionSettings(request: {
|
|
7928
|
+
/** V1 error format. */
|
|
7929
|
+
"$.xgafv"?:
|
|
7930
|
+
string;
|
|
7931
|
+
/** OAuth access token. */
|
|
7932
|
+
access_token?:
|
|
7933
|
+
string;
|
|
7934
|
+
/** Data format for response. */
|
|
7935
|
+
alt?:
|
|
7936
|
+
string;
|
|
7937
|
+
/** JSONP */
|
|
7938
|
+
callback?:
|
|
7939
|
+
string;
|
|
7940
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
7941
|
+
fields?:
|
|
7942
|
+
string;
|
|
7943
|
+
/** 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. */
|
|
7944
|
+
key?:
|
|
7945
|
+
string;
|
|
7946
|
+
/**
|
|
7947
|
+
* Output only. Name of this Data Redaction Settings resource. Format: properties/{property_id}/dataStreams/{data_stream}/dataRedactionSettings Example:
|
|
7948
|
+
* "properties/1000/dataStreams/2000/dataRedactionSettings"
|
|
7949
|
+
*/
|
|
7950
|
+
name:
|
|
7951
|
+
string;
|
|
7952
|
+
/** OAuth 2.0 token for the current user. */
|
|
7953
|
+
oauth_token?:
|
|
7954
|
+
string;
|
|
7955
|
+
/** Returns response with indentations and line breaks. */
|
|
7956
|
+
prettyPrint?:
|
|
7957
|
+
boolean;
|
|
7958
|
+
/** 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. */
|
|
7959
|
+
quotaUser?:
|
|
7960
|
+
string;
|
|
7961
|
+
/**
|
|
7962
|
+
* 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
|
|
7963
|
+
* one path with the string "*" to match all fields.
|
|
7964
|
+
*/
|
|
7965
|
+
updateMask?:
|
|
7966
|
+
string;
|
|
7967
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
7968
|
+
upload_protocol?:
|
|
7969
|
+
string;
|
|
7970
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
7971
|
+
uploadType?:
|
|
7972
|
+
string;
|
|
7973
|
+
},
|
|
7974
|
+
body: GoogleAnalyticsAdminV1alphaDataRedactionSettings): Request<GoogleAnalyticsAdminV1alphaDataRedactionSettings>;
|
|
7692
7975
|
/** Updates the enhanced measurement settings for this data stream. Note that the stream must enable enhanced measurement for these settings to take effect. */
|
|
7693
7976
|
updateEnhancedMeasurementSettings(request: {
|
|
7694
7977
|
/** V1 error format. */
|
|
@@ -9212,8 +9495,8 @@ declare namespace gapi.client {
|
|
|
9212
9495
|
},
|
|
9213
9496
|
body: GoogleAnalyticsAdminV1alphaGoogleAdsLink): Request<GoogleAnalyticsAdminV1alphaGoogleAdsLink>;
|
|
9214
9497
|
}
|
|
9215
|
-
interface
|
|
9216
|
-
/** Creates a
|
|
9498
|
+
interface RollupPropertySourceLinksResource {
|
|
9499
|
+
/** Creates a roll-up property source link. Only roll-up properties can have source links, so this method will throw an error if used on other types of properties. */
|
|
9217
9500
|
create(request: {
|
|
9218
9501
|
/** V1 error format. */
|
|
9219
9502
|
"$.xgafv"?:
|
|
@@ -9236,7 +9519,7 @@ declare namespace gapi.client {
|
|
|
9236
9519
|
/** OAuth 2.0 token for the current user. */
|
|
9237
9520
|
oauth_token?:
|
|
9238
9521
|
string;
|
|
9239
|
-
/** Required. Example
|
|
9522
|
+
/** Required. Format: properties/{property_id} Example: properties/1234 */
|
|
9240
9523
|
parent:
|
|
9241
9524
|
string;
|
|
9242
9525
|
/** Returns response with indentations and line breaks. */
|
|
@@ -9253,8 +9536,8 @@ declare namespace gapi.client {
|
|
|
9253
9536
|
string;
|
|
9254
9537
|
/** Request body */
|
|
9255
9538
|
resource:
|
|
9256
|
-
|
|
9257
|
-
}): Request<
|
|
9539
|
+
GoogleAnalyticsAdminV1alphaRollupPropertySourceLink;
|
|
9540
|
+
}): Request<GoogleAnalyticsAdminV1alphaRollupPropertySourceLink>;
|
|
9258
9541
|
create(request: {
|
|
9259
9542
|
/** V1 error format. */
|
|
9260
9543
|
"$.xgafv"?:
|
|
@@ -9277,7 +9560,7 @@ declare namespace gapi.client {
|
|
|
9277
9560
|
/** OAuth 2.0 token for the current user. */
|
|
9278
9561
|
oauth_token?:
|
|
9279
9562
|
string;
|
|
9280
|
-
/** Required. Example
|
|
9563
|
+
/** Required. Format: properties/{property_id} Example: properties/1234 */
|
|
9281
9564
|
parent:
|
|
9282
9565
|
string;
|
|
9283
9566
|
/** Returns response with indentations and line breaks. */
|
|
@@ -9293,8 +9576,8 @@ declare namespace gapi.client {
|
|
|
9293
9576
|
uploadType?:
|
|
9294
9577
|
string;
|
|
9295
9578
|
},
|
|
9296
|
-
body:
|
|
9297
|
-
/** Deletes a
|
|
9579
|
+
body: GoogleAnalyticsAdminV1alphaRollupPropertySourceLink): Request<GoogleAnalyticsAdminV1alphaRollupPropertySourceLink>;
|
|
9580
|
+
/** Deletes a roll-up property source link. Only roll-up properties can have source links, so this method will throw an error if used on other types of properties. */
|
|
9298
9581
|
delete(request?: {
|
|
9299
9582
|
/** V1 error format. */
|
|
9300
9583
|
"$.xgafv"?:
|
|
@@ -9314,7 +9597,7 @@ declare namespace gapi.client {
|
|
|
9314
9597
|
/** 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. */
|
|
9315
9598
|
key?:
|
|
9316
9599
|
string;
|
|
9317
|
-
/** Required.
|
|
9600
|
+
/** Required. Format: properties/{property_id}/rollupPropertySourceLinks/{rollup_property_source_link_id} Example: properties/1234/rollupPropertySourceLinks/5678 */
|
|
9318
9601
|
name:
|
|
9319
9602
|
string;
|
|
9320
9603
|
/** OAuth 2.0 token for the current user. */
|
|
@@ -9333,7 +9616,7 @@ declare namespace gapi.client {
|
|
|
9333
9616
|
uploadType?:
|
|
9334
9617
|
string;
|
|
9335
9618
|
}): Request<{}>;
|
|
9336
|
-
/**
|
|
9619
|
+
/** Lookup for a single roll-up property source Link. Only roll-up properties can have source links, so this method will throw an error if used on other types of properties. */
|
|
9337
9620
|
get(request?: {
|
|
9338
9621
|
/** V1 error format. */
|
|
9339
9622
|
"$.xgafv"?:
|
|
@@ -9353,7 +9636,10 @@ declare namespace gapi.client {
|
|
|
9353
9636
|
/** 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. */
|
|
9354
9637
|
key?:
|
|
9355
9638
|
string;
|
|
9356
|
-
/**
|
|
9639
|
+
/**
|
|
9640
|
+
* Required. The name of the roll-up property source link to lookup. Format: properties/{property_id}/rollupPropertySourceLinks/{rollup_property_source_link_id} Example:
|
|
9641
|
+
* properties/123/rollupPropertySourceLinks/456
|
|
9642
|
+
*/
|
|
9357
9643
|
name:
|
|
9358
9644
|
string;
|
|
9359
9645
|
/** OAuth 2.0 token for the current user. */
|
|
@@ -9371,8 +9657,8 @@ declare namespace gapi.client {
|
|
|
9371
9657
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
9372
9658
|
uploadType?:
|
|
9373
9659
|
string;
|
|
9374
|
-
}): Request<
|
|
9375
|
-
/** Lists
|
|
9660
|
+
}): Request<GoogleAnalyticsAdminV1alphaRollupPropertySourceLink>;
|
|
9661
|
+
/** Lists roll-up property source Links on a property. Only roll-up properties can have source links, so this method will throw an error if used on other types of properties. */
|
|
9376
9662
|
list(request?: {
|
|
9377
9663
|
/** V1 error format. */
|
|
9378
9664
|
"$.xgafv"?:
|
|
@@ -9395,16 +9681,19 @@ declare namespace gapi.client {
|
|
|
9395
9681
|
/** OAuth 2.0 token for the current user. */
|
|
9396
9682
|
oauth_token?:
|
|
9397
9683
|
string;
|
|
9398
|
-
/**
|
|
9684
|
+
/**
|
|
9685
|
+
* Optional. 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
|
|
9686
|
+
* be returned. The maximum value is 200; (higher values will be coerced to the maximum)
|
|
9687
|
+
*/
|
|
9399
9688
|
pageSize?:
|
|
9400
9689
|
number;
|
|
9401
9690
|
/**
|
|
9402
|
-
* A page token, received from a previous `
|
|
9403
|
-
* `
|
|
9691
|
+
* Optional. A page token, received from a previous `ListRollupPropertySourceLinks` call. Provide this to retrieve the subsequent page. When paginating, all other parameters
|
|
9692
|
+
* provided to `ListRollupPropertySourceLinks` must match the call that provided the page token.
|
|
9404
9693
|
*/
|
|
9405
9694
|
pageToken?:
|
|
9406
9695
|
string;
|
|
9407
|
-
/** Required.
|
|
9696
|
+
/** Required. The name of the roll-up property to list roll-up property source links under. Format: properties/{property_id} Example: properties/1234 */
|
|
9408
9697
|
parent:
|
|
9409
9698
|
string;
|
|
9410
9699
|
/** Returns response with indentations and line breaks. */
|
|
@@ -9419,9 +9708,11 @@ declare namespace gapi.client {
|
|
|
9419
9708
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
9420
9709
|
uploadType?:
|
|
9421
9710
|
string;
|
|
9422
|
-
}): Request<
|
|
9423
|
-
|
|
9424
|
-
|
|
9711
|
+
}): Request<GoogleAnalyticsAdminV1alphaListRollupPropertySourceLinksResponse>;
|
|
9712
|
+
}
|
|
9713
|
+
interface SearchAds360LinksResource {
|
|
9714
|
+
/** Creates a SearchAds360Link. */
|
|
9715
|
+
create(request: {
|
|
9425
9716
|
/** V1 error format. */
|
|
9426
9717
|
"$.xgafv"?:
|
|
9427
9718
|
string;
|
|
@@ -9440,24 +9731,18 @@ declare namespace gapi.client {
|
|
|
9440
9731
|
/** 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. */
|
|
9441
9732
|
key?:
|
|
9442
9733
|
string;
|
|
9443
|
-
/**
|
|
9444
|
-
* Output only. The resource name for this SearchAds360Link resource. Format: properties/{propertyId}/searchAds360Links/{linkId} Note: linkId is not the Search Ads 360 advertiser
|
|
9445
|
-
* ID
|
|
9446
|
-
*/
|
|
9447
|
-
name:
|
|
9448
|
-
string;
|
|
9449
9734
|
/** OAuth 2.0 token for the current user. */
|
|
9450
9735
|
oauth_token?:
|
|
9451
9736
|
string;
|
|
9737
|
+
/** Required. Example format: properties/1234 */
|
|
9738
|
+
parent:
|
|
9739
|
+
string;
|
|
9452
9740
|
/** Returns response with indentations and line breaks. */
|
|
9453
9741
|
prettyPrint?:
|
|
9454
9742
|
boolean;
|
|
9455
9743
|
/** 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. */
|
|
9456
9744
|
quotaUser?:
|
|
9457
9745
|
string;
|
|
9458
|
-
/** Required. The list of fields to be updated. Omitted fields will not be updated. To replace the entire entity, use one path with the string "*" to match all fields. */
|
|
9459
|
-
updateMask?:
|
|
9460
|
-
string;
|
|
9461
9746
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
9462
9747
|
upload_protocol?:
|
|
9463
9748
|
string;
|
|
@@ -9468,7 +9753,7 @@ declare namespace gapi.client {
|
|
|
9468
9753
|
resource:
|
|
9469
9754
|
GoogleAnalyticsAdminV1alphaSearchAds360Link;
|
|
9470
9755
|
}): Request<GoogleAnalyticsAdminV1alphaSearchAds360Link>;
|
|
9471
|
-
|
|
9756
|
+
create(request: {
|
|
9472
9757
|
/** V1 error format. */
|
|
9473
9758
|
"$.xgafv"?:
|
|
9474
9759
|
string;
|
|
@@ -9487,24 +9772,18 @@ declare namespace gapi.client {
|
|
|
9487
9772
|
/** 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. */
|
|
9488
9773
|
key?:
|
|
9489
9774
|
string;
|
|
9490
|
-
/**
|
|
9491
|
-
* Output only. The resource name for this SearchAds360Link resource. Format: properties/{propertyId}/searchAds360Links/{linkId} Note: linkId is not the Search Ads 360 advertiser
|
|
9492
|
-
* ID
|
|
9493
|
-
*/
|
|
9494
|
-
name:
|
|
9495
|
-
string;
|
|
9496
9775
|
/** OAuth 2.0 token for the current user. */
|
|
9497
9776
|
oauth_token?:
|
|
9498
9777
|
string;
|
|
9778
|
+
/** Required. Example format: properties/1234 */
|
|
9779
|
+
parent:
|
|
9780
|
+
string;
|
|
9499
9781
|
/** Returns response with indentations and line breaks. */
|
|
9500
9782
|
prettyPrint?:
|
|
9501
9783
|
boolean;
|
|
9502
9784
|
/** 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. */
|
|
9503
9785
|
quotaUser?:
|
|
9504
9786
|
string;
|
|
9505
|
-
/** Required. The list of fields to be updated. Omitted fields will not be updated. To replace the entire entity, use one path with the string "*" to match all fields. */
|
|
9506
|
-
updateMask?:
|
|
9507
|
-
string;
|
|
9508
9787
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
9509
9788
|
upload_protocol?:
|
|
9510
9789
|
string;
|
|
@@ -9513,14 +9792,544 @@ declare namespace gapi.client {
|
|
|
9513
9792
|
string;
|
|
9514
9793
|
},
|
|
9515
9794
|
body: GoogleAnalyticsAdminV1alphaSearchAds360Link): Request<GoogleAnalyticsAdminV1alphaSearchAds360Link>;
|
|
9516
|
-
|
|
9517
|
-
|
|
9518
|
-
|
|
9519
|
-
|
|
9520
|
-
|
|
9521
|
-
|
|
9522
|
-
|
|
9523
|
-
|
|
9795
|
+
/** Deletes a SearchAds360Link on a property. */
|
|
9796
|
+
delete(request?: {
|
|
9797
|
+
/** V1 error format. */
|
|
9798
|
+
"$.xgafv"?:
|
|
9799
|
+
string;
|
|
9800
|
+
/** OAuth access token. */
|
|
9801
|
+
access_token?:
|
|
9802
|
+
string;
|
|
9803
|
+
/** Data format for response. */
|
|
9804
|
+
alt?:
|
|
9805
|
+
string;
|
|
9806
|
+
/** JSONP */
|
|
9807
|
+
callback?:
|
|
9808
|
+
string;
|
|
9809
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
9810
|
+
fields?:
|
|
9811
|
+
string;
|
|
9812
|
+
/** 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. */
|
|
9813
|
+
key?:
|
|
9814
|
+
string;
|
|
9815
|
+
/** Required. The name of the SearchAds360Link to delete. Example format: properties/1234/SearchAds360Links/5678 */
|
|
9816
|
+
name:
|
|
9817
|
+
string;
|
|
9818
|
+
/** OAuth 2.0 token for the current user. */
|
|
9819
|
+
oauth_token?:
|
|
9820
|
+
string;
|
|
9821
|
+
/** Returns response with indentations and line breaks. */
|
|
9822
|
+
prettyPrint?:
|
|
9823
|
+
boolean;
|
|
9824
|
+
/** 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. */
|
|
9825
|
+
quotaUser?:
|
|
9826
|
+
string;
|
|
9827
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
9828
|
+
upload_protocol?:
|
|
9829
|
+
string;
|
|
9830
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
9831
|
+
uploadType?:
|
|
9832
|
+
string;
|
|
9833
|
+
}): Request<{}>;
|
|
9834
|
+
/** Look up a single SearchAds360Link */
|
|
9835
|
+
get(request?: {
|
|
9836
|
+
/** V1 error format. */
|
|
9837
|
+
"$.xgafv"?:
|
|
9838
|
+
string;
|
|
9839
|
+
/** OAuth access token. */
|
|
9840
|
+
access_token?:
|
|
9841
|
+
string;
|
|
9842
|
+
/** Data format for response. */
|
|
9843
|
+
alt?:
|
|
9844
|
+
string;
|
|
9845
|
+
/** JSONP */
|
|
9846
|
+
callback?:
|
|
9847
|
+
string;
|
|
9848
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
9849
|
+
fields?:
|
|
9850
|
+
string;
|
|
9851
|
+
/** 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. */
|
|
9852
|
+
key?:
|
|
9853
|
+
string;
|
|
9854
|
+
/** Required. The name of the SearchAds360Link to get. Example format: properties/1234/SearchAds360Link/5678 */
|
|
9855
|
+
name:
|
|
9856
|
+
string;
|
|
9857
|
+
/** OAuth 2.0 token for the current user. */
|
|
9858
|
+
oauth_token?:
|
|
9859
|
+
string;
|
|
9860
|
+
/** Returns response with indentations and line breaks. */
|
|
9861
|
+
prettyPrint?:
|
|
9862
|
+
boolean;
|
|
9863
|
+
/** 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. */
|
|
9864
|
+
quotaUser?:
|
|
9865
|
+
string;
|
|
9866
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
9867
|
+
upload_protocol?:
|
|
9868
|
+
string;
|
|
9869
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
9870
|
+
uploadType?:
|
|
9871
|
+
string;
|
|
9872
|
+
}): Request<GoogleAnalyticsAdminV1alphaSearchAds360Link>;
|
|
9873
|
+
/** Lists all SearchAds360Links on a property. */
|
|
9874
|
+
list(request?: {
|
|
9875
|
+
/** V1 error format. */
|
|
9876
|
+
"$.xgafv"?:
|
|
9877
|
+
string;
|
|
9878
|
+
/** OAuth access token. */
|
|
9879
|
+
access_token?:
|
|
9880
|
+
string;
|
|
9881
|
+
/** Data format for response. */
|
|
9882
|
+
alt?:
|
|
9883
|
+
string;
|
|
9884
|
+
/** JSONP */
|
|
9885
|
+
callback?:
|
|
9886
|
+
string;
|
|
9887
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
9888
|
+
fields?:
|
|
9889
|
+
string;
|
|
9890
|
+
/** 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. */
|
|
9891
|
+
key?:
|
|
9892
|
+
string;
|
|
9893
|
+
/** OAuth 2.0 token for the current user. */
|
|
9894
|
+
oauth_token?:
|
|
9895
|
+
string;
|
|
9896
|
+
/** The maximum number of resources to return. If unspecified, at most 50 resources will be returned. The maximum value is 200 (higher values will be coerced to the maximum). */
|
|
9897
|
+
pageSize?:
|
|
9898
|
+
number;
|
|
9899
|
+
/**
|
|
9900
|
+
* A page token, received from a previous `ListSearchAds360Links` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to
|
|
9901
|
+
* `ListSearchAds360Links` must match the call that provided the page token.
|
|
9902
|
+
*/
|
|
9903
|
+
pageToken?:
|
|
9904
|
+
string;
|
|
9905
|
+
/** Required. Example format: properties/1234 */
|
|
9906
|
+
parent:
|
|
9907
|
+
string;
|
|
9908
|
+
/** Returns response with indentations and line breaks. */
|
|
9909
|
+
prettyPrint?:
|
|
9910
|
+
boolean;
|
|
9911
|
+
/** 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. */
|
|
9912
|
+
quotaUser?:
|
|
9913
|
+
string;
|
|
9914
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
9915
|
+
upload_protocol?:
|
|
9916
|
+
string;
|
|
9917
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
9918
|
+
uploadType?:
|
|
9919
|
+
string;
|
|
9920
|
+
}): Request<GoogleAnalyticsAdminV1alphaListSearchAds360LinksResponse>;
|
|
9921
|
+
/** Updates a SearchAds360Link on a property. */
|
|
9922
|
+
patch(request: {
|
|
9923
|
+
/** V1 error format. */
|
|
9924
|
+
"$.xgafv"?:
|
|
9925
|
+
string;
|
|
9926
|
+
/** OAuth access token. */
|
|
9927
|
+
access_token?:
|
|
9928
|
+
string;
|
|
9929
|
+
/** Data format for response. */
|
|
9930
|
+
alt?:
|
|
9931
|
+
string;
|
|
9932
|
+
/** JSONP */
|
|
9933
|
+
callback?:
|
|
9934
|
+
string;
|
|
9935
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
9936
|
+
fields?:
|
|
9937
|
+
string;
|
|
9938
|
+
/** 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. */
|
|
9939
|
+
key?:
|
|
9940
|
+
string;
|
|
9941
|
+
/**
|
|
9942
|
+
* Output only. The resource name for this SearchAds360Link resource. Format: properties/{propertyId}/searchAds360Links/{linkId} Note: linkId is not the Search Ads 360 advertiser
|
|
9943
|
+
* ID
|
|
9944
|
+
*/
|
|
9945
|
+
name:
|
|
9946
|
+
string;
|
|
9947
|
+
/** OAuth 2.0 token for the current user. */
|
|
9948
|
+
oauth_token?:
|
|
9949
|
+
string;
|
|
9950
|
+
/** Returns response with indentations and line breaks. */
|
|
9951
|
+
prettyPrint?:
|
|
9952
|
+
boolean;
|
|
9953
|
+
/** 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. */
|
|
9954
|
+
quotaUser?:
|
|
9955
|
+
string;
|
|
9956
|
+
/** Required. The list of fields to be updated. Omitted fields will not be updated. To replace the entire entity, use one path with the string "*" to match all fields. */
|
|
9957
|
+
updateMask?:
|
|
9958
|
+
string;
|
|
9959
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
9960
|
+
upload_protocol?:
|
|
9961
|
+
string;
|
|
9962
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
9963
|
+
uploadType?:
|
|
9964
|
+
string;
|
|
9965
|
+
/** Request body */
|
|
9966
|
+
resource:
|
|
9967
|
+
GoogleAnalyticsAdminV1alphaSearchAds360Link;
|
|
9968
|
+
}): Request<GoogleAnalyticsAdminV1alphaSearchAds360Link>;
|
|
9969
|
+
patch(request: {
|
|
9970
|
+
/** V1 error format. */
|
|
9971
|
+
"$.xgafv"?:
|
|
9972
|
+
string;
|
|
9973
|
+
/** OAuth access token. */
|
|
9974
|
+
access_token?:
|
|
9975
|
+
string;
|
|
9976
|
+
/** Data format for response. */
|
|
9977
|
+
alt?:
|
|
9978
|
+
string;
|
|
9979
|
+
/** JSONP */
|
|
9980
|
+
callback?:
|
|
9981
|
+
string;
|
|
9982
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
9983
|
+
fields?:
|
|
9984
|
+
string;
|
|
9985
|
+
/** 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. */
|
|
9986
|
+
key?:
|
|
9987
|
+
string;
|
|
9988
|
+
/**
|
|
9989
|
+
* Output only. The resource name for this SearchAds360Link resource. Format: properties/{propertyId}/searchAds360Links/{linkId} Note: linkId is not the Search Ads 360 advertiser
|
|
9990
|
+
* ID
|
|
9991
|
+
*/
|
|
9992
|
+
name:
|
|
9993
|
+
string;
|
|
9994
|
+
/** OAuth 2.0 token for the current user. */
|
|
9995
|
+
oauth_token?:
|
|
9996
|
+
string;
|
|
9997
|
+
/** Returns response with indentations and line breaks. */
|
|
9998
|
+
prettyPrint?:
|
|
9999
|
+
boolean;
|
|
10000
|
+
/** 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. */
|
|
10001
|
+
quotaUser?:
|
|
10002
|
+
string;
|
|
10003
|
+
/** Required. The list of fields to be updated. Omitted fields will not be updated. To replace the entire entity, use one path with the string "*" to match all fields. */
|
|
10004
|
+
updateMask?:
|
|
10005
|
+
string;
|
|
10006
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
10007
|
+
upload_protocol?:
|
|
10008
|
+
string;
|
|
10009
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
10010
|
+
uploadType?:
|
|
10011
|
+
string;
|
|
10012
|
+
},
|
|
10013
|
+
body: GoogleAnalyticsAdminV1alphaSearchAds360Link): Request<GoogleAnalyticsAdminV1alphaSearchAds360Link>;
|
|
10014
|
+
}
|
|
10015
|
+
interface SubpropertyEventFiltersResource {
|
|
10016
|
+
/** Creates a subproperty Event Filter. */
|
|
10017
|
+
create(request: {
|
|
10018
|
+
/** V1 error format. */
|
|
10019
|
+
"$.xgafv"?:
|
|
10020
|
+
string;
|
|
10021
|
+
/** OAuth access token. */
|
|
10022
|
+
access_token?:
|
|
10023
|
+
string;
|
|
10024
|
+
/** Data format for response. */
|
|
10025
|
+
alt?:
|
|
10026
|
+
string;
|
|
10027
|
+
/** JSONP */
|
|
10028
|
+
callback?:
|
|
10029
|
+
string;
|
|
10030
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
10031
|
+
fields?:
|
|
10032
|
+
string;
|
|
10033
|
+
/** 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. */
|
|
10034
|
+
key?:
|
|
10035
|
+
string;
|
|
10036
|
+
/** OAuth 2.0 token for the current user. */
|
|
10037
|
+
oauth_token?:
|
|
10038
|
+
string;
|
|
10039
|
+
/** Required. The ordinary property for which to create a subproperty event filter. Format: properties/property_id Example: properties/123 */
|
|
10040
|
+
parent:
|
|
10041
|
+
string;
|
|
10042
|
+
/** Returns response with indentations and line breaks. */
|
|
10043
|
+
prettyPrint?:
|
|
10044
|
+
boolean;
|
|
10045
|
+
/** 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. */
|
|
10046
|
+
quotaUser?:
|
|
10047
|
+
string;
|
|
10048
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
10049
|
+
upload_protocol?:
|
|
10050
|
+
string;
|
|
10051
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
10052
|
+
uploadType?:
|
|
10053
|
+
string;
|
|
10054
|
+
/** Request body */
|
|
10055
|
+
resource:
|
|
10056
|
+
GoogleAnalyticsAdminV1alphaSubpropertyEventFilter;
|
|
10057
|
+
}): Request<GoogleAnalyticsAdminV1alphaSubpropertyEventFilter>;
|
|
10058
|
+
create(request: {
|
|
10059
|
+
/** V1 error format. */
|
|
10060
|
+
"$.xgafv"?:
|
|
10061
|
+
string;
|
|
10062
|
+
/** OAuth access token. */
|
|
10063
|
+
access_token?:
|
|
10064
|
+
string;
|
|
10065
|
+
/** Data format for response. */
|
|
10066
|
+
alt?:
|
|
10067
|
+
string;
|
|
10068
|
+
/** JSONP */
|
|
10069
|
+
callback?:
|
|
10070
|
+
string;
|
|
10071
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
10072
|
+
fields?:
|
|
10073
|
+
string;
|
|
10074
|
+
/** 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. */
|
|
10075
|
+
key?:
|
|
10076
|
+
string;
|
|
10077
|
+
/** OAuth 2.0 token for the current user. */
|
|
10078
|
+
oauth_token?:
|
|
10079
|
+
string;
|
|
10080
|
+
/** Required. The ordinary property for which to create a subproperty event filter. Format: properties/property_id Example: properties/123 */
|
|
10081
|
+
parent:
|
|
10082
|
+
string;
|
|
10083
|
+
/** Returns response with indentations and line breaks. */
|
|
10084
|
+
prettyPrint?:
|
|
10085
|
+
boolean;
|
|
10086
|
+
/** 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. */
|
|
10087
|
+
quotaUser?:
|
|
10088
|
+
string;
|
|
10089
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
10090
|
+
upload_protocol?:
|
|
10091
|
+
string;
|
|
10092
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
10093
|
+
uploadType?:
|
|
10094
|
+
string;
|
|
10095
|
+
},
|
|
10096
|
+
body: GoogleAnalyticsAdminV1alphaSubpropertyEventFilter): Request<GoogleAnalyticsAdminV1alphaSubpropertyEventFilter>;
|
|
10097
|
+
/** Deletes a subproperty event filter. */
|
|
10098
|
+
delete(request?: {
|
|
10099
|
+
/** V1 error format. */
|
|
10100
|
+
"$.xgafv"?:
|
|
10101
|
+
string;
|
|
10102
|
+
/** OAuth access token. */
|
|
10103
|
+
access_token?:
|
|
10104
|
+
string;
|
|
10105
|
+
/** Data format for response. */
|
|
10106
|
+
alt?:
|
|
10107
|
+
string;
|
|
10108
|
+
/** JSONP */
|
|
10109
|
+
callback?:
|
|
10110
|
+
string;
|
|
10111
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
10112
|
+
fields?:
|
|
10113
|
+
string;
|
|
10114
|
+
/** 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. */
|
|
10115
|
+
key?:
|
|
10116
|
+
string;
|
|
10117
|
+
/**
|
|
10118
|
+
* Required. Resource name of the subproperty event filter to delete. Format: properties/property_id/subpropertyEventFilters/subproperty_event_filter Example:
|
|
10119
|
+
* properties/123/subpropertyEventFilters/456
|
|
10120
|
+
*/
|
|
10121
|
+
name:
|
|
10122
|
+
string;
|
|
10123
|
+
/** OAuth 2.0 token for the current user. */
|
|
10124
|
+
oauth_token?:
|
|
10125
|
+
string;
|
|
10126
|
+
/** Returns response with indentations and line breaks. */
|
|
10127
|
+
prettyPrint?:
|
|
10128
|
+
boolean;
|
|
10129
|
+
/** 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. */
|
|
10130
|
+
quotaUser?:
|
|
10131
|
+
string;
|
|
10132
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
10133
|
+
upload_protocol?:
|
|
10134
|
+
string;
|
|
10135
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
10136
|
+
uploadType?:
|
|
10137
|
+
string;
|
|
10138
|
+
}): Request<{}>;
|
|
10139
|
+
/** Lookup for a single subproperty Event Filter. */
|
|
10140
|
+
get(request?: {
|
|
10141
|
+
/** V1 error format. */
|
|
10142
|
+
"$.xgafv"?:
|
|
10143
|
+
string;
|
|
10144
|
+
/** OAuth access token. */
|
|
10145
|
+
access_token?:
|
|
10146
|
+
string;
|
|
10147
|
+
/** Data format for response. */
|
|
10148
|
+
alt?:
|
|
10149
|
+
string;
|
|
10150
|
+
/** JSONP */
|
|
10151
|
+
callback?:
|
|
10152
|
+
string;
|
|
10153
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
10154
|
+
fields?:
|
|
10155
|
+
string;
|
|
10156
|
+
/** 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. */
|
|
10157
|
+
key?:
|
|
10158
|
+
string;
|
|
10159
|
+
/**
|
|
10160
|
+
* Required. Resource name of the subproperty event filter to lookup. Format: properties/property_id/subpropertyEventFilters/subproperty_event_filter Example:
|
|
10161
|
+
* properties/123/subpropertyEventFilters/456
|
|
10162
|
+
*/
|
|
10163
|
+
name:
|
|
10164
|
+
string;
|
|
10165
|
+
/** OAuth 2.0 token for the current user. */
|
|
10166
|
+
oauth_token?:
|
|
10167
|
+
string;
|
|
10168
|
+
/** Returns response with indentations and line breaks. */
|
|
10169
|
+
prettyPrint?:
|
|
10170
|
+
boolean;
|
|
10171
|
+
/** 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. */
|
|
10172
|
+
quotaUser?:
|
|
10173
|
+
string;
|
|
10174
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
10175
|
+
upload_protocol?:
|
|
10176
|
+
string;
|
|
10177
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
10178
|
+
uploadType?:
|
|
10179
|
+
string;
|
|
10180
|
+
}): Request<GoogleAnalyticsAdminV1alphaSubpropertyEventFilter>;
|
|
10181
|
+
/** List all subproperty Event Filters on a property. */
|
|
10182
|
+
list(request?: {
|
|
10183
|
+
/** V1 error format. */
|
|
10184
|
+
"$.xgafv"?:
|
|
10185
|
+
string;
|
|
10186
|
+
/** OAuth access token. */
|
|
10187
|
+
access_token?:
|
|
10188
|
+
string;
|
|
10189
|
+
/** Data format for response. */
|
|
10190
|
+
alt?:
|
|
10191
|
+
string;
|
|
10192
|
+
/** JSONP */
|
|
10193
|
+
callback?:
|
|
10194
|
+
string;
|
|
10195
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
10196
|
+
fields?:
|
|
10197
|
+
string;
|
|
10198
|
+
/** 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. */
|
|
10199
|
+
key?:
|
|
10200
|
+
string;
|
|
10201
|
+
/** OAuth 2.0 token for the current user. */
|
|
10202
|
+
oauth_token?:
|
|
10203
|
+
string;
|
|
10204
|
+
/**
|
|
10205
|
+
* Optional. 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
|
|
10206
|
+
* be returned. The maximum value is 200; (higher values will be coerced to the maximum)
|
|
10207
|
+
*/
|
|
10208
|
+
pageSize?:
|
|
10209
|
+
number;
|
|
10210
|
+
/**
|
|
10211
|
+
* Optional. A page token, received from a previous `ListSubpropertyEventFilters` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided
|
|
10212
|
+
* to `ListSubpropertyEventFilters` must match the call that provided the page token.
|
|
10213
|
+
*/
|
|
10214
|
+
pageToken?:
|
|
10215
|
+
string;
|
|
10216
|
+
/** Required. Resource name of the ordinary property. Format: properties/property_id Example: properties/123 */
|
|
10217
|
+
parent:
|
|
10218
|
+
string;
|
|
10219
|
+
/** Returns response with indentations and line breaks. */
|
|
10220
|
+
prettyPrint?:
|
|
10221
|
+
boolean;
|
|
10222
|
+
/** 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. */
|
|
10223
|
+
quotaUser?:
|
|
10224
|
+
string;
|
|
10225
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
10226
|
+
upload_protocol?:
|
|
10227
|
+
string;
|
|
10228
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
10229
|
+
uploadType?:
|
|
10230
|
+
string;
|
|
10231
|
+
}): Request<GoogleAnalyticsAdminV1alphaListSubpropertyEventFiltersResponse>;
|
|
10232
|
+
/** Updates a subproperty Event Filter. */
|
|
10233
|
+
patch(request: {
|
|
10234
|
+
/** V1 error format. */
|
|
10235
|
+
"$.xgafv"?:
|
|
10236
|
+
string;
|
|
10237
|
+
/** OAuth access token. */
|
|
10238
|
+
access_token?:
|
|
10239
|
+
string;
|
|
10240
|
+
/** Data format for response. */
|
|
10241
|
+
alt?:
|
|
10242
|
+
string;
|
|
10243
|
+
/** JSONP */
|
|
10244
|
+
callback?:
|
|
10245
|
+
string;
|
|
10246
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
10247
|
+
fields?:
|
|
10248
|
+
string;
|
|
10249
|
+
/** 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. */
|
|
10250
|
+
key?:
|
|
10251
|
+
string;
|
|
10252
|
+
/** Output only. Format: properties/{ordinary_property_id}/subpropertyEventFilters/{sub_property_event_filter} Example: properties/1234/subpropertyEventFilters/5678 */
|
|
10253
|
+
name:
|
|
10254
|
+
string;
|
|
10255
|
+
/** OAuth 2.0 token for the current user. */
|
|
10256
|
+
oauth_token?:
|
|
10257
|
+
string;
|
|
10258
|
+
/** Returns response with indentations and line breaks. */
|
|
10259
|
+
prettyPrint?:
|
|
10260
|
+
boolean;
|
|
10261
|
+
/** 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. */
|
|
10262
|
+
quotaUser?:
|
|
10263
|
+
string;
|
|
10264
|
+
/**
|
|
10265
|
+
* Required. The list of fields to update. Field names must be in snake case (for example, "field_to_update"). Omitted fields will not be updated. To replace the entire entity, use
|
|
10266
|
+
* one path with the string "*" to match all fields.
|
|
10267
|
+
*/
|
|
10268
|
+
updateMask?:
|
|
10269
|
+
string;
|
|
10270
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
10271
|
+
upload_protocol?:
|
|
10272
|
+
string;
|
|
10273
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
10274
|
+
uploadType?:
|
|
10275
|
+
string;
|
|
10276
|
+
/** Request body */
|
|
10277
|
+
resource:
|
|
10278
|
+
GoogleAnalyticsAdminV1alphaSubpropertyEventFilter;
|
|
10279
|
+
}): Request<GoogleAnalyticsAdminV1alphaSubpropertyEventFilter>;
|
|
10280
|
+
patch(request: {
|
|
10281
|
+
/** V1 error format. */
|
|
10282
|
+
"$.xgafv"?:
|
|
10283
|
+
string;
|
|
10284
|
+
/** OAuth access token. */
|
|
10285
|
+
access_token?:
|
|
10286
|
+
string;
|
|
10287
|
+
/** Data format for response. */
|
|
10288
|
+
alt?:
|
|
10289
|
+
string;
|
|
10290
|
+
/** JSONP */
|
|
10291
|
+
callback?:
|
|
10292
|
+
string;
|
|
10293
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
10294
|
+
fields?:
|
|
10295
|
+
string;
|
|
10296
|
+
/** 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. */
|
|
10297
|
+
key?:
|
|
10298
|
+
string;
|
|
10299
|
+
/** Output only. Format: properties/{ordinary_property_id}/subpropertyEventFilters/{sub_property_event_filter} Example: properties/1234/subpropertyEventFilters/5678 */
|
|
10300
|
+
name:
|
|
10301
|
+
string;
|
|
10302
|
+
/** OAuth 2.0 token for the current user. */
|
|
10303
|
+
oauth_token?:
|
|
10304
|
+
string;
|
|
10305
|
+
/** Returns response with indentations and line breaks. */
|
|
10306
|
+
prettyPrint?:
|
|
10307
|
+
boolean;
|
|
10308
|
+
/** 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. */
|
|
10309
|
+
quotaUser?:
|
|
10310
|
+
string;
|
|
10311
|
+
/**
|
|
10312
|
+
* Required. The list of fields to update. Field names must be in snake case (for example, "field_to_update"). Omitted fields will not be updated. To replace the entire entity, use
|
|
10313
|
+
* one path with the string "*" to match all fields.
|
|
10314
|
+
*/
|
|
10315
|
+
updateMask?:
|
|
10316
|
+
string;
|
|
10317
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
10318
|
+
upload_protocol?:
|
|
10319
|
+
string;
|
|
10320
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
10321
|
+
uploadType?:
|
|
10322
|
+
string;
|
|
10323
|
+
},
|
|
10324
|
+
body: GoogleAnalyticsAdminV1alphaSubpropertyEventFilter): Request<GoogleAnalyticsAdminV1alphaSubpropertyEventFilter>;
|
|
10325
|
+
}
|
|
10326
|
+
interface UserLinksResource {
|
|
10327
|
+
/**
|
|
10328
|
+
* Lists all user links on an account or property, including implicit ones that come from effective permissions granted by groups or organization admin roles. If a returned user link
|
|
10329
|
+
* does not have direct permissions, they cannot be removed from the account or property directly with the DeleteUserLink command. They have to be removed from the group/etc that gives
|
|
10330
|
+
* them permissions, which is currently only usable/discoverable in the GA or GMP UIs.
|
|
10331
|
+
*/
|
|
10332
|
+
audit(request: {
|
|
9524
10333
|
/** V1 error format. */
|
|
9525
10334
|
"$.xgafv"?:
|
|
9526
10335
|
string;
|
|
@@ -10442,6 +11251,156 @@ declare namespace gapi.client {
|
|
|
10442
11251
|
string;
|
|
10443
11252
|
},
|
|
10444
11253
|
body: GoogleAnalyticsAdminV1alphaCreateConnectedSiteTagRequest): Request<{}>;
|
|
11254
|
+
/** Create a roll-up property and all roll-up property source links. */
|
|
11255
|
+
createRollupProperty(request: {
|
|
11256
|
+
/** V1 error format. */
|
|
11257
|
+
"$.xgafv"?:
|
|
11258
|
+
string;
|
|
11259
|
+
/** OAuth access token. */
|
|
11260
|
+
access_token?:
|
|
11261
|
+
string;
|
|
11262
|
+
/** Data format for response. */
|
|
11263
|
+
alt?:
|
|
11264
|
+
string;
|
|
11265
|
+
/** JSONP */
|
|
11266
|
+
callback?:
|
|
11267
|
+
string;
|
|
11268
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
11269
|
+
fields?:
|
|
11270
|
+
string;
|
|
11271
|
+
/** 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. */
|
|
11272
|
+
key?:
|
|
11273
|
+
string;
|
|
11274
|
+
/** OAuth 2.0 token for the current user. */
|
|
11275
|
+
oauth_token?:
|
|
11276
|
+
string;
|
|
11277
|
+
/** Returns response with indentations and line breaks. */
|
|
11278
|
+
prettyPrint?:
|
|
11279
|
+
boolean;
|
|
11280
|
+
/** 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. */
|
|
11281
|
+
quotaUser?:
|
|
11282
|
+
string;
|
|
11283
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
11284
|
+
upload_protocol?:
|
|
11285
|
+
string;
|
|
11286
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
11287
|
+
uploadType?:
|
|
11288
|
+
string;
|
|
11289
|
+
/** Request body */
|
|
11290
|
+
resource:
|
|
11291
|
+
GoogleAnalyticsAdminV1alphaCreateRollupPropertyRequest;
|
|
11292
|
+
}): Request<GoogleAnalyticsAdminV1alphaCreateRollupPropertyResponse>;
|
|
11293
|
+
createRollupProperty(request: {
|
|
11294
|
+
/** V1 error format. */
|
|
11295
|
+
"$.xgafv"?:
|
|
11296
|
+
string;
|
|
11297
|
+
/** OAuth access token. */
|
|
11298
|
+
access_token?:
|
|
11299
|
+
string;
|
|
11300
|
+
/** Data format for response. */
|
|
11301
|
+
alt?:
|
|
11302
|
+
string;
|
|
11303
|
+
/** JSONP */
|
|
11304
|
+
callback?:
|
|
11305
|
+
string;
|
|
11306
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
11307
|
+
fields?:
|
|
11308
|
+
string;
|
|
11309
|
+
/** 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. */
|
|
11310
|
+
key?:
|
|
11311
|
+
string;
|
|
11312
|
+
/** OAuth 2.0 token for the current user. */
|
|
11313
|
+
oauth_token?:
|
|
11314
|
+
string;
|
|
11315
|
+
/** Returns response with indentations and line breaks. */
|
|
11316
|
+
prettyPrint?:
|
|
11317
|
+
boolean;
|
|
11318
|
+
/** 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. */
|
|
11319
|
+
quotaUser?:
|
|
11320
|
+
string;
|
|
11321
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
11322
|
+
upload_protocol?:
|
|
11323
|
+
string;
|
|
11324
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
11325
|
+
uploadType?:
|
|
11326
|
+
string;
|
|
11327
|
+
},
|
|
11328
|
+
body: GoogleAnalyticsAdminV1alphaCreateRollupPropertyRequest): Request<GoogleAnalyticsAdminV1alphaCreateRollupPropertyResponse>;
|
|
11329
|
+
/** Create a subproperty and a subproperty event filter that applies to the created subproperty. */
|
|
11330
|
+
createSubproperty(request: {
|
|
11331
|
+
/** V1 error format. */
|
|
11332
|
+
"$.xgafv"?:
|
|
11333
|
+
string;
|
|
11334
|
+
/** OAuth access token. */
|
|
11335
|
+
access_token?:
|
|
11336
|
+
string;
|
|
11337
|
+
/** Data format for response. */
|
|
11338
|
+
alt?:
|
|
11339
|
+
string;
|
|
11340
|
+
/** JSONP */
|
|
11341
|
+
callback?:
|
|
11342
|
+
string;
|
|
11343
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
11344
|
+
fields?:
|
|
11345
|
+
string;
|
|
11346
|
+
/** 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. */
|
|
11347
|
+
key?:
|
|
11348
|
+
string;
|
|
11349
|
+
/** OAuth 2.0 token for the current user. */
|
|
11350
|
+
oauth_token?:
|
|
11351
|
+
string;
|
|
11352
|
+
/** Returns response with indentations and line breaks. */
|
|
11353
|
+
prettyPrint?:
|
|
11354
|
+
boolean;
|
|
11355
|
+
/** 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. */
|
|
11356
|
+
quotaUser?:
|
|
11357
|
+
string;
|
|
11358
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
11359
|
+
upload_protocol?:
|
|
11360
|
+
string;
|
|
11361
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
11362
|
+
uploadType?:
|
|
11363
|
+
string;
|
|
11364
|
+
/** Request body */
|
|
11365
|
+
resource:
|
|
11366
|
+
GoogleAnalyticsAdminV1alphaCreateSubpropertyRequest;
|
|
11367
|
+
}): Request<GoogleAnalyticsAdminV1alphaCreateSubpropertyResponse>;
|
|
11368
|
+
createSubproperty(request: {
|
|
11369
|
+
/** V1 error format. */
|
|
11370
|
+
"$.xgafv"?:
|
|
11371
|
+
string;
|
|
11372
|
+
/** OAuth access token. */
|
|
11373
|
+
access_token?:
|
|
11374
|
+
string;
|
|
11375
|
+
/** Data format for response. */
|
|
11376
|
+
alt?:
|
|
11377
|
+
string;
|
|
11378
|
+
/** JSONP */
|
|
11379
|
+
callback?:
|
|
11380
|
+
string;
|
|
11381
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
11382
|
+
fields?:
|
|
11383
|
+
string;
|
|
11384
|
+
/** 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. */
|
|
11385
|
+
key?:
|
|
11386
|
+
string;
|
|
11387
|
+
/** OAuth 2.0 token for the current user. */
|
|
11388
|
+
oauth_token?:
|
|
11389
|
+
string;
|
|
11390
|
+
/** Returns response with indentations and line breaks. */
|
|
11391
|
+
prettyPrint?:
|
|
11392
|
+
boolean;
|
|
11393
|
+
/** 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. */
|
|
11394
|
+
quotaUser?:
|
|
11395
|
+
string;
|
|
11396
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
11397
|
+
upload_protocol?:
|
|
11398
|
+
string;
|
|
11399
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
11400
|
+
uploadType?:
|
|
11401
|
+
string;
|
|
11402
|
+
},
|
|
11403
|
+
body: GoogleAnalyticsAdminV1alphaCreateSubpropertyRequest): Request<GoogleAnalyticsAdminV1alphaCreateSubpropertyResponse>;
|
|
10445
11404
|
/**
|
|
10446
11405
|
* Marks target Property as soft-deleted (ie: "trashed") and returns it. This API does not have a method to restore soft-deleted properties. However, they can be restored using the
|
|
10447
11406
|
* Trash Can UI. If the properties are not restored before the expiration time, the Property and all child resources (eg: GoogleAdsLinks, Streams, UserLinks) will be permanently
|
|
@@ -11541,8 +12500,12 @@ declare namespace gapi.client {
|
|
|
11541
12500
|
FirebaseLinksResource;
|
|
11542
12501
|
googleAdsLinks:
|
|
11543
12502
|
GoogleAdsLinksResource;
|
|
12503
|
+
rollupPropertySourceLinks:
|
|
12504
|
+
RollupPropertySourceLinksResource;
|
|
11544
12505
|
searchAds360Links:
|
|
11545
12506
|
SearchAds360LinksResource;
|
|
12507
|
+
subpropertyEventFilters:
|
|
12508
|
+
SubpropertyEventFiltersResource;
|
|
11546
12509
|
userLinks:
|
|
11547
12510
|
UserLinksResource;
|
|
11548
12511
|
}
|