Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions adsense/v2/adsense-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -2018,7 +2018,7 @@
}
}
},
"revision": "20250224",
"revision": "20250313",
"rootUrl": "https://adsense.googleapis.com/",
"schemas": {
"Account": {
Expand Down Expand Up @@ -2679,7 +2679,7 @@
"Ad serving demand has been restricted on the entity.",
"Ad serving has been disabled on the entity.",
"Ads are being served for the entity but Confirmed Click is being applied to the ads. See https://support.google.com/adsense/answer/10025624.",
"Ad personalization is restricted because the ad requests coming from the EEA and UK do not have a TCF string or the Consent Management Platform (CMP) indicated by the TCF string is not Google certified. As a result, basic/limited ads will be served. See https://support.google.com/adsense/answer/13554116"
"Ad personalization is restricted because the ad requests coming from the EEA and UK do not have a TCF string or the Consent Management Platform (CMP) indicated by the TCF string is not Google certified. As a result, basic/limited ads will be served. See https://support.google.com/adsense/answer/13554116."
],
"type": "string"
},
Expand Down Expand Up @@ -2772,7 +2772,7 @@
],
"enumDescriptions": [
"The type is unspecified.",
"Topics that are primarily related to the Google Publisher Policy (GPP) https://support.google.com/publisherpolicies/answer/10502938 or the Google Publisher Restrictions (GPR) policies https://support.google.com/publisherpolicies/answer/10437795.",
"Topics that are primarily related to the Google Publisher Policy (GPP) (https://support.google.com/publisherpolicies/answer/10502938) or the Google Publisher Restrictions (GPR) policies (https://support.google.com/publisherpolicies/answer/10437795).",
"Topics that are related to advertiser preferences. Certain advertisers may choose not to bid on content that are labeled with certain policies.",
"Any topics that are a result of a country or regional regulatory requirement body."
],
Expand Down
8 changes: 4 additions & 4 deletions adsense/v2/adsense-gen.go

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

51 changes: 50 additions & 1 deletion appengine/v1beta/appengine-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1762,6 +1762,55 @@
},
"resources": {
"applications": {
"methods": {
"patch": {
"description": "Updates the specified Application resource. You can update the following fields: auth_domain - Google authentication domain for controlling user access to the application. default_cookie_expiration - Cookie expiration policy for the application. iap - Identity-Aware Proxy properties for the application.",
"flatPath": "v1beta/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}",
"httpMethod": "PATCH",
"id": "appengine.projects.locations.applications.patch",
"parameterOrder": [
"projectsId",
"locationsId",
"applicationsId"
],
"parameters": {
"applicationsId": {
"description": "Part of `name`. See documentation of `projectsId`.",
"location": "path",
"required": true,
"type": "string"
},
"locationsId": {
"description": "Part of `name`. See documentation of `projectsId`.",
"location": "path",
"required": true,
"type": "string"
},
"projectsId": {
"description": "Part of `name`. Name of the Application resource to update. Example: apps/myapp.",
"location": "path",
"required": true,
"type": "string"
},
"updateMask": {
"description": "Required. Standard field mask for the set of fields to be updated.",
"format": "google-fieldmask",
"location": "query",
"type": "string"
}
},
"path": "v1beta/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}",
"request": {
"$ref": "Application"
},
"response": {
"$ref": "Operation"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
}
},
"resources": {
"authorizedDomains": {
"methods": {
Expand Down Expand Up @@ -2025,7 +2074,7 @@
}
}
},
"revision": "20250223",
"revision": "20250310",
"rootUrl": "https://appengine.googleapis.com/",
"schemas": {
"ApiConfigHandler": {
Expand Down
123 changes: 123 additions & 0 deletions appengine/v1beta/appengine-gen.go

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

34 changes: 33 additions & 1 deletion bigquery/v2/bigquery-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -2256,7 +2256,7 @@
}
}
},
"revision": "20250216",
"revision": "20250302",
"rootUrl": "https://bigquery.googleapis.com/",
"schemas": {
"AggregateClassificationMetrics": {
Expand Down Expand Up @@ -3375,6 +3375,13 @@
"description": "Optional. Specifies a string that represents a null value in a CSV file. For example, if you specify \"\\N\", BigQuery interprets \"\\N\" as a null value when querying a CSV file. The default value is the empty string. If you set this property to a custom value, BigQuery throws an error if an empty string is present for all data types except for STRING and BYTE. For STRING and BYTE columns, BigQuery interprets the empty string as an empty value.",
"type": "string"
},
"nullMarkers": {
"description": "Optional. A list of strings represented as SQL NULL value in a CSV file. null_marker and null_markers can't be set at the same time. If null_marker is set, null_markers has to be not set. If null_markers is set, null_marker has to be not set. If both null_marker and null_markers are set at the same time, a user error would be thrown. Any strings listed in null_markers, including empty string would be interpreted as SQL NULL. This applies to all column types.",
"items": {
"type": "string"
},
"type": "array"
},
"preserveAsciiControlCharacters": {
"description": "Optional. Indicates if the embedded ASCII control characters (the first 32 characters in the ASCII-table, from '\\x00' to '\\x1F') are preserved.",
"type": "boolean"
Expand All @@ -3389,6 +3396,10 @@
"description": "Optional. The number of rows at the top of a CSV file that BigQuery will skip when reading the data. The default value is 0. This property is useful if you have header rows in the file that should be skipped. When autodetect is on, the behavior is the following: * skipLeadingRows unspecified - Autodetect tries to detect headers in the first row. If they are not detected, the row is read as data. Otherwise data is read starting from the second row. * skipLeadingRows is 0 - Instructs autodetect that there are no headers and data should be read starting from the first row. * skipLeadingRows = N \u003e 0 - Autodetect skips N-1 rows and tries to detect headers in row N. If headers are not detected, row N is just skipped. Otherwise row N is used to extract column names for the detected schema.",
"format": "int64",
"type": "string"
},
"sourceColumnMatch": {
"description": "Optional. Controls the strategy used to match loaded columns to the schema. If not set, a sensible default is chosen based on how the schema is provided. If autodetect is used, then columns are matched by name. Otherwise, columns are matched by position. This is done to keep the behavior backward-compatible. Acceptable values are: POSITION - matches by position. This assumes that the columns are ordered the same way as the schema. NAME - matches by name. This reads the header row as column names and reorders columns to match the field names in the schema.",
"type": "string"
}
},
"type": "object"
Expand Down Expand Up @@ -5468,6 +5479,13 @@
"description": "Optional. Specifies a string that represents a null value in a CSV file. For example, if you specify \"\\N\", BigQuery interprets \"\\N\" as a null value when loading a CSV file. The default value is the empty string. If you set this property to a custom value, BigQuery throws an error if an empty string is present for all data types except for STRING and BYTE. For STRING and BYTE columns, BigQuery interprets the empty string as an empty value.",
"type": "string"
},
"nullMarkers": {
"description": "Optional. A list of strings represented as SQL NULL value in a CSV file. null_marker and null_markers can't be set at the same time. If null_marker is set, null_markers has to be not set. If null_markers is set, null_marker has to be not set. If both null_marker and null_markers are set at the same time, a user error would be thrown. Any strings listed in null_markers, including empty string would be interpreted as SQL NULL. This applies to all column types.",
"items": {
"type": "string"
},
"type": "array"
},
"parquetOptions": {
"$ref": "ParquetOptions",
"description": "Optional. Additional properties to set if sourceFormat is set to PARQUET."
Expand Down Expand Up @@ -5521,6 +5539,20 @@
"format": "int32",
"type": "integer"
},
"sourceColumnMatch": {
"description": "Optional. Controls the strategy used to match loaded columns to the schema. If not set, a sensible default is chosen based on how the schema is provided. If autodetect is used, then columns are matched by name. Otherwise, columns are matched by position. This is done to keep the behavior backward-compatible.",
"enum": [
"SOURCE_COLUMN_MATCH_UNSPECIFIED",
"POSITION",
"NAME"
],
"enumDescriptions": [
"Uses sensible defaults based on how the schema is provided. If autodetect is used, then columns are matched by name. Otherwise, columns are matched by position. This is done to keep the behavior backward-compatible.",
"Matches by position. This assumes that the columns are ordered the same way as the schema.",
"Matches by name. This reads the header row as column names and reorders columns to match the field names in the schema."
],
"type": "string"
},
"sourceFormat": {
"description": "Optional. The format of the data files. For CSV files, specify \"CSV\". For datastore backups, specify \"DATASTORE_BACKUP\". For newline-delimited JSON, specify \"NEWLINE_DELIMITED_JSON\". For Avro, specify \"AVRO\". For parquet, specify \"PARQUET\". For orc, specify \"ORC\". The default value is CSV.",
"type": "string"
Expand Down
Loading
Loading