Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (#2108)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation committed Aug 10, 2023
1 parent 3f3ed3d commit 80485e0
Show file tree
Hide file tree
Showing 61 changed files with 4,442 additions and 1,615 deletions.
9 changes: 8 additions & 1 deletion adexperiencereport/v1/adexperiencereport-api.json
Expand Up @@ -139,7 +139,7 @@
}
}
},
"revision": "20230403",
"revision": "20230807",
"rootUrl": "https://adexperiencereport.googleapis.com/",
"schemas": {
"PlatformSummary": {
Expand All @@ -154,6 +154,12 @@
"WARNING",
"FAILING"
],
"enumDeprecated": [
false,
false,
true,
false
],
"enumDescriptions": [
"Not reviewed.",
"Passing.",
Expand Down Expand Up @@ -191,6 +197,7 @@
"type": "string"
},
"region": {
"deprecated": true,
"description": "The site's regions on this platform. No longer populated, because there is no longer any semantic difference between sites in different regions.",
"items": {
"enum": [
Expand Down
50 changes: 49 additions & 1 deletion analyticsadmin/v1alpha/analyticsadmin-api.json
Expand Up @@ -2294,6 +2294,40 @@
"https://www.googleapis.com/auth/analytics.edit",
"https://www.googleapis.com/auth/analytics.readonly"
]
},
"patch": {
"description": "Updates a conversion event with the specified attributes.",
"flatPath": "v1alpha/properties/{propertiesId}/conversionEvents/{conversionEventsId}",
"httpMethod": "PATCH",
"id": "analyticsadmin.properties.conversionEvents.patch",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Output only. Resource name of this conversion event. Format: properties/{property}/conversionEvents/{conversion_event}",
"location": "path",
"pattern": "^properties/[^/]+/conversionEvents/[^/]+$",
"required": true,
"type": "string"
},
"updateMask": {
"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.",
"format": "google-fieldmask",
"location": "query",
"type": "string"
}
},
"path": "v1alpha/{+name}",
"request": {
"$ref": "GoogleAnalyticsAdminV1alphaConversionEvent"
},
"response": {
"$ref": "GoogleAnalyticsAdminV1alphaConversionEvent"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit"
]
}
}
},
Expand Down Expand Up @@ -4322,7 +4356,7 @@
}
}
},
"revision": "20230802",
"revision": "20230809",
"rootUrl": "https://analyticsadmin.googleapis.com/",
"schemas": {
"GoogleAnalyticsAdminV1alphaAccessBetweenFilter": {
Expand Down Expand Up @@ -5964,6 +5998,20 @@
"description": "A conversion event in a Google Analytics property.",
"id": "GoogleAnalyticsAdminV1alphaConversionEvent",
"properties": {
"countingMethod": {
"description": "Optional. The method by which conversions will be counted across multiple events within a session. If this value is not provided, it will be set to `ONCE_PER_EVENT`.",
"enum": [
"CONVERSION_COUNTING_METHOD_UNSPECIFIED",
"ONCE_PER_EVENT",
"ONCE_PER_SESSION"
],
"enumDescriptions": [
"Counting method not specified.",
"Each Event instance is considered a Conversion.",
"An Event instance is considered a Conversion at most once per session per user."
],
"type": "string"
},
"createTime": {
"description": "Output only. Time when this conversion event was created in the property.",
"format": "google-datetime",
Expand Down
188 changes: 181 additions & 7 deletions analyticsadmin/v1alpha/analyticsadmin-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

50 changes: 49 additions & 1 deletion analyticsadmin/v1beta/analyticsadmin-api.json
Expand Up @@ -742,6 +742,40 @@
"https://www.googleapis.com/auth/analytics.edit",
"https://www.googleapis.com/auth/analytics.readonly"
]
},
"patch": {
"description": "Updates a conversion event with the specified attributes.",
"flatPath": "v1beta/properties/{propertiesId}/conversionEvents/{conversionEventsId}",
"httpMethod": "PATCH",
"id": "analyticsadmin.properties.conversionEvents.patch",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Output only. Resource name of this conversion event. Format: properties/{property}/conversionEvents/{conversion_event}",
"location": "path",
"pattern": "^properties/[^/]+/conversionEvents/[^/]+$",
"required": true,
"type": "string"
},
"updateMask": {
"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.",
"format": "google-fieldmask",
"location": "query",
"type": "string"
}
},
"path": "v1beta/{+name}",
"request": {
"$ref": "GoogleAnalyticsAdminV1betaConversionEvent"
},
"response": {
"$ref": "GoogleAnalyticsAdminV1betaConversionEvent"
},
"scopes": [
"https://www.googleapis.com/auth/analytics.edit"
]
}
}
},
Expand Down Expand Up @@ -1594,7 +1628,7 @@
}
}
},
"revision": "20230718",
"revision": "20230809",
"rootUrl": "https://analyticsadmin.googleapis.com/",
"schemas": {
"GoogleAnalyticsAdminV1betaAccessBetweenFilter": {
Expand Down Expand Up @@ -2182,6 +2216,20 @@
"description": "A conversion event in a Google Analytics property.",
"id": "GoogleAnalyticsAdminV1betaConversionEvent",
"properties": {
"countingMethod": {
"description": "Optional. The method by which conversions will be counted across multiple events within a session. If this value is not provided, it will be set to `ONCE_PER_EVENT`.",
"enum": [
"CONVERSION_COUNTING_METHOD_UNSPECIFIED",
"ONCE_PER_EVENT",
"ONCE_PER_SESSION"
],
"enumDescriptions": [
"Counting method not specified.",
"Each Event instance is considered a Conversion.",
"An Event instance is considered a Conversion at most once per session per user."
],
"type": "string"
},
"createTime": {
"description": "Output only. Time when this conversion event was created in the property.",
"format": "google-datetime",
Expand Down

0 comments on commit 80485e0

Please sign in to comment.