Skip to content

Commit 7d34d41

Browse files
feat(all): auto-regenerate discovery clients (#1872)
1 parent d456fd6 commit 7d34d41

65 files changed

Lines changed: 20257 additions & 10905 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

analyticsadmin/v1alpha/analyticsadmin-api.json

Lines changed: 173 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2911,6 +2911,160 @@
29112911
}
29122912
}
29132913
},
2914+
"expandedDataSets": {
2915+
"methods": {
2916+
"create": {
2917+
"description": "Creates a ExpandedDataSet.",
2918+
"flatPath": "v1alpha/properties/{propertiesId}/expandedDataSets",
2919+
"httpMethod": "POST",
2920+
"id": "analyticsadmin.properties.expandedDataSets.create",
2921+
"parameterOrder": [
2922+
"parent"
2923+
],
2924+
"parameters": {
2925+
"parent": {
2926+
"description": "Required. Example format: properties/1234",
2927+
"location": "path",
2928+
"pattern": "^properties/[^/]+$",
2929+
"required": true,
2930+
"type": "string"
2931+
}
2932+
},
2933+
"path": "v1alpha/{+parent}/expandedDataSets",
2934+
"request": {
2935+
"$ref": "GoogleAnalyticsAdminV1alphaExpandedDataSet"
2936+
},
2937+
"response": {
2938+
"$ref": "GoogleAnalyticsAdminV1alphaExpandedDataSet"
2939+
},
2940+
"scopes": [
2941+
"https://www.googleapis.com/auth/analytics.edit"
2942+
]
2943+
},
2944+
"delete": {
2945+
"description": "Deletes a ExpandedDataSet on a property.",
2946+
"flatPath": "v1alpha/properties/{propertiesId}/expandedDataSets/{expandedDataSetsId}",
2947+
"httpMethod": "DELETE",
2948+
"id": "analyticsadmin.properties.expandedDataSets.delete",
2949+
"parameterOrder": [
2950+
"name"
2951+
],
2952+
"parameters": {
2953+
"name": {
2954+
"description": "Required. Example format: properties/1234/expandedDataSets/5678",
2955+
"location": "path",
2956+
"pattern": "^properties/[^/]+/expandedDataSets/[^/]+$",
2957+
"required": true,
2958+
"type": "string"
2959+
}
2960+
},
2961+
"path": "v1alpha/{+name}",
2962+
"response": {
2963+
"$ref": "GoogleProtobufEmpty"
2964+
},
2965+
"scopes": [
2966+
"https://www.googleapis.com/auth/analytics.edit"
2967+
]
2968+
},
2969+
"get": {
2970+
"description": "Lookup for a single ExpandedDataSet.",
2971+
"flatPath": "v1alpha/properties/{propertiesId}/expandedDataSets/{expandedDataSetsId}",
2972+
"httpMethod": "GET",
2973+
"id": "analyticsadmin.properties.expandedDataSets.get",
2974+
"parameterOrder": [
2975+
"name"
2976+
],
2977+
"parameters": {
2978+
"name": {
2979+
"description": "Required. The name of the Audience to get. Example format: properties/1234/expandedDataSets/5678",
2980+
"location": "path",
2981+
"pattern": "^properties/[^/]+/expandedDataSets/[^/]+$",
2982+
"required": true,
2983+
"type": "string"
2984+
}
2985+
},
2986+
"path": "v1alpha/{+name}",
2987+
"response": {
2988+
"$ref": "GoogleAnalyticsAdminV1alphaExpandedDataSet"
2989+
},
2990+
"scopes": [
2991+
"https://www.googleapis.com/auth/analytics.edit",
2992+
"https://www.googleapis.com/auth/analytics.readonly"
2993+
]
2994+
},
2995+
"list": {
2996+
"description": "Lists ExpandedDataSets on a property.",
2997+
"flatPath": "v1alpha/properties/{propertiesId}/expandedDataSets",
2998+
"httpMethod": "GET",
2999+
"id": "analyticsadmin.properties.expandedDataSets.list",
3000+
"parameterOrder": [
3001+
"parent"
3002+
],
3003+
"parameters": {
3004+
"pageSize": {
3005+
"description": "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).",
3006+
"format": "int32",
3007+
"location": "query",
3008+
"type": "integer"
3009+
},
3010+
"pageToken": {
3011+
"description": "A page token, received from a previous `ListExpandedDataSets` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListExpandedDataSet` must match the call that provided the page token.",
3012+
"location": "query",
3013+
"type": "string"
3014+
},
3015+
"parent": {
3016+
"description": "Required. Example format: properties/1234",
3017+
"location": "path",
3018+
"pattern": "^properties/[^/]+$",
3019+
"required": true,
3020+
"type": "string"
3021+
}
3022+
},
3023+
"path": "v1alpha/{+parent}/expandedDataSets",
3024+
"response": {
3025+
"$ref": "GoogleAnalyticsAdminV1alphaListExpandedDataSetsResponse"
3026+
},
3027+
"scopes": [
3028+
"https://www.googleapis.com/auth/analytics.edit",
3029+
"https://www.googleapis.com/auth/analytics.readonly"
3030+
]
3031+
},
3032+
"patch": {
3033+
"description": "Updates a ExpandedDataSet on a property.",
3034+
"flatPath": "v1alpha/properties/{propertiesId}/expandedDataSets/{expandedDataSetsId}",
3035+
"httpMethod": "PATCH",
3036+
"id": "analyticsadmin.properties.expandedDataSets.patch",
3037+
"parameterOrder": [
3038+
"name"
3039+
],
3040+
"parameters": {
3041+
"name": {
3042+
"description": "Output only. The resource name for this ExpandedDataSet resource. Format: properties/{property_id}/expandedDataSets/{expanded_data_set}",
3043+
"location": "path",
3044+
"pattern": "^properties/[^/]+/expandedDataSets/[^/]+$",
3045+
"required": true,
3046+
"type": "string"
3047+
},
3048+
"updateMask": {
3049+
"description": "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.",
3050+
"format": "google-fieldmask",
3051+
"location": "query",
3052+
"type": "string"
3053+
}
3054+
},
3055+
"path": "v1alpha/{+name}",
3056+
"request": {
3057+
"$ref": "GoogleAnalyticsAdminV1alphaExpandedDataSet"
3058+
},
3059+
"response": {
3060+
"$ref": "GoogleAnalyticsAdminV1alphaExpandedDataSet"
3061+
},
3062+
"scopes": [
3063+
"https://www.googleapis.com/auth/analytics.edit"
3064+
]
3065+
}
3066+
}
3067+
},
29143068
"firebaseLinks": {
29153069
"methods": {
29163070
"create": {
@@ -3588,7 +3742,7 @@
35883742
}
35893743
}
35903744
},
3591-
"revision": "20230214",
3745+
"revision": "20230221",
35923746
"rootUrl": "https://analyticsadmin.googleapis.com/",
35933747
"schemas": {
35943748
"GoogleAnalyticsAdminV1alphaAccessBetweenFilter": {
@@ -6019,6 +6173,24 @@
60196173
},
60206174
"type": "object"
60216175
},
6176+
"GoogleAnalyticsAdminV1alphaListExpandedDataSetsResponse": {
6177+
"description": "Response message for ListExpandedDataSets RPC.",
6178+
"id": "GoogleAnalyticsAdminV1alphaListExpandedDataSetsResponse",
6179+
"properties": {
6180+
"expandedDataSets": {
6181+
"description": "List of ExpandedDataSet. These will be ordered stably, but in an arbitrary order.",
6182+
"items": {
6183+
"$ref": "GoogleAnalyticsAdminV1alphaExpandedDataSet"
6184+
},
6185+
"type": "array"
6186+
},
6187+
"nextPageToken": {
6188+
"description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.",
6189+
"type": "string"
6190+
}
6191+
},
6192+
"type": "object"
6193+
},
60226194
"GoogleAnalyticsAdminV1alphaListFirebaseLinksResponse": {
60236195
"description": "Response message for ListFirebaseLinks RPC",
60246196
"id": "GoogleAnalyticsAdminV1alphaListFirebaseLinksResponse",

0 commit comments

Comments
 (0)