diff --git a/bigtableadmin/v2/bigtableadmin-api.json b/bigtableadmin/v2/bigtableadmin-api.json index f3cf8574587..e436bb871c8 100644 --- a/bigtableadmin/v2/bigtableadmin-api.json +++ b/bigtableadmin/v2/bigtableadmin-api.json @@ -1892,7 +1892,7 @@ } } }, - "revision": "20220614", + "revision": "20220706", "rootUrl": "https://bigtableadmin.googleapis.com/", "schemas": { "AppProfile": { @@ -2629,6 +2629,11 @@ "description": "The unique name of the instance. Values are of the form `projects/{project}/instances/a-z+[a-z0-9]`.", "type": "string" }, + "satisfiesPzs": { + "description": "Output only. Reserved for future use.", + "readOnly": true, + "type": "boolean" + }, "state": { "description": "Output only. The current state of the instance.", "enum": [ diff --git a/bigtableadmin/v2/bigtableadmin-gen.go b/bigtableadmin/v2/bigtableadmin-gen.go index 29e9bc185f1..2853f7e1d45 100644 --- a/bigtableadmin/v2/bigtableadmin-gen.go +++ b/bigtableadmin/v2/bigtableadmin-gen.go @@ -1730,6 +1730,9 @@ type Instance struct { // `projects/{project}/instances/a-z+[a-z0-9]`. Name string `json:"name,omitempty"` + // SatisfiesPzs: Output only. Reserved for future use. + SatisfiesPzs bool `json:"satisfiesPzs,omitempty"` + // State: Output only. The current state of the instance. // // Possible values: diff --git a/dlp/v2/dlp-api.json b/dlp/v2/dlp-api.json index 0006cd785ea..561fc4763cf 100644 --- a/dlp/v2/dlp-api.json +++ b/dlp/v2/dlp-api.json @@ -3412,7 +3412,7 @@ } } }, - "revision": "20220612", + "revision": "20220708", "rootUrl": "https://dlp.googleapis.com/", "schemas": { "GooglePrivacyDlpV2Action": { @@ -5252,7 +5252,7 @@ }, "proximity": { "$ref": "GooglePrivacyDlpV2Proximity", - "description": "Proximity of the finding within which the entire hotword must reside. The total length of the window cannot exceed 1000 characters. Note that the finding itself will be included in the window, so that hotwords may be used to match substrings of the finding itself. For example, the certainty of a phone number regex \"\\(\\d{3}\\) \\d{3}-\\d{4}\" could be adjusted upwards if the area code is known to be the local area code of a company office using the hotword regex \"\\(xxx\\)\", where \"xxx\" is the area code in question." + "description": "Range of characters within which the entire hotword must reside. The total length of the window cannot exceed 1000 characters. The finding itself will be included in the window, so that hotwords can be used to match substrings of the finding itself. Suppose you want Cloud DLP to promote the likelihood of the phone number regex \"\\(\\d{3}\\) \\d{3}-\\d{4}\" if the area code is known to be the area code of a company's office. In this case, use the hotword regex \"\\(xxx\\)\", where \"xxx\" is the area code in question. For tabular data, if you want to modify the likelihood of an entire column of findngs, see [Hotword example: Set the match likelihood of a table column] (https://cloud.google.com/dlp/docs/creating-custom-infotypes-likelihood#match-column-values)." } }, "type": "object" @@ -6784,7 +6784,7 @@ "type": "integer" }, "windowBefore": { - "description": "Number of characters before the finding to consider.", + "description": "Number of characters before the finding to consider. For tabular data, if you want to modify the likelihood of an entire column of findngs, set this to 1. For more information, see [Hotword example: Set the match likelihood of a table column] (https://cloud.google.com/dlp/docs/creating-custom-infotypes-likelihood#match-column-values).", "format": "int32", "type": "integer" } diff --git a/dlp/v2/dlp-gen.go b/dlp/v2/dlp-gen.go index f7a1bbc44de..8ed816b5810 100644 --- a/dlp/v2/dlp-gen.go +++ b/dlp/v2/dlp-gen.go @@ -3833,14 +3833,17 @@ type GooglePrivacyDlpV2HotwordRule struct { // findings. LikelihoodAdjustment *GooglePrivacyDlpV2LikelihoodAdjustment `json:"likelihoodAdjustment,omitempty"` - // Proximity: Proximity of the finding within which the entire hotword - // must reside. The total length of the window cannot exceed 1000 - // characters. Note that the finding itself will be included in the - // window, so that hotwords may be used to match substrings of the - // finding itself. For example, the certainty of a phone number regex - // "\(\d{3}\) \d{3}-\d{4}" could be adjusted upwards if the area code is - // known to be the local area code of a company office using the hotword - // regex "\(xxx\)", where "xxx" is the area code in question. + // Proximity: Range of characters within which the entire hotword must + // reside. The total length of the window cannot exceed 1000 characters. + // The finding itself will be included in the window, so that hotwords + // can be used to match substrings of the finding itself. Suppose you + // want Cloud DLP to promote the likelihood of the phone number regex + // "\(\d{3}\) \d{3}-\d{4}" if the area code is known to be the area code + // of a company's office. In this case, use the hotword regex "\(xxx\)", + // where "xxx" is the area code in question. For tabular data, if you + // want to modify the likelihood of an entire column of findngs, see + // [Hotword example: Set the match likelihood of a table column] + // (https://cloud.google.com/dlp/docs/creating-custom-infotypes-likelihood#match-column-values). Proximity *GooglePrivacyDlpV2Proximity `json:"proximity,omitempty"` // ForceSendFields is a list of field names (e.g. "HotwordRegex") to @@ -6452,6 +6455,10 @@ type GooglePrivacyDlpV2Proximity struct { WindowAfter int64 `json:"windowAfter,omitempty"` // WindowBefore: Number of characters before the finding to consider. + // For tabular data, if you want to modify the likelihood of an entire + // column of findngs, set this to 1. For more information, see [Hotword + // example: Set the match likelihood of a table column] + // (https://cloud.google.com/dlp/docs/creating-custom-infotypes-likelihood#match-column-values). WindowBefore int64 `json:"windowBefore,omitempty"` // ForceSendFields is a list of field names (e.g. "WindowAfter") to diff --git a/run/v1alpha1/run-api.json b/run/v1alpha1/run-api.json index 9b388fc0f6a..ed784d1e3af 100644 --- a/run/v1alpha1/run-api.json +++ b/run/v1alpha1/run-api.json @@ -268,7 +268,7 @@ } } }, - "revision": "20220617", + "revision": "20220710", "rootUrl": "https://run.googleapis.com/", "schemas": { "ConfigMapEnvSource": { @@ -1188,7 +1188,7 @@ "id": "SecretVolumeSource", "properties": { "defaultMode": { - "description": "Integer representation of mode bits to use on created files by default. Must be a value between 01 and 0777 (octal). If 0 or not set, it will default to 0644. Directories within the path are not affected by this setting. Notes * Internally, a umask of 0222 will be applied to any non-zero value. * This is an integer representation of the mode bits. So, the octal integer value should look exactly as the chmod numeric notation with a leading zero. Some examples: for chmod 777 (a=rwx), set to 0777 (octal) or 511 (base-10). For chmod 640 (u=rw,g=r), set to 0640 (octal) or 416 (base-10). For chmod 755 (u=rwx,g=rx,o=rx), set to 0755 (octal) or 493 (base-10). * This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", + "description": "Integer representation of mode bits to use on created files by default. Must be a value between 01 and 0777 (octal). If 0 or not set, it will default to 0444. Directories within the path are not affected by this setting. Notes * Internally, a umask of 0222 will be applied to any non-zero value. * This is an integer representation of the mode bits. So, the octal integer value should look exactly as the chmod numeric notation with a leading zero. Some examples: for chmod 777 (a=rwx), set to 0777 (octal) or 511 (base-10). For chmod 640 (u=rw,g=r), set to 0640 (octal) or 416 (base-10). For chmod 755 (u=rwx,g=rx,o=rx), set to 0755 (octal) or 493 (base-10). * This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", "format": "int32", "type": "integer" }, diff --git a/run/v1alpha1/run-gen.go b/run/v1alpha1/run-gen.go index e0fb4bc5c33..ea57c1bead1 100644 --- a/run/v1alpha1/run-gen.go +++ b/run/v1alpha1/run-gen.go @@ -1848,7 +1848,7 @@ func (s *SecretKeySelector) MarshalJSON() ([]byte, error) { type SecretVolumeSource struct { // DefaultMode: Integer representation of mode bits to use on created // files by default. Must be a value between 01 and 0777 (octal). If 0 - // or not set, it will default to 0644. Directories within the path are + // or not set, it will default to 0444. Directories within the path are // not affected by this setting. Notes * Internally, a umask of 0222 // will be applied to any non-zero value. * This is an integer // representation of the mode bits. So, the octal integer value should diff --git a/webrisk/v1/webrisk-api.json b/webrisk/v1/webrisk-api.json index 57b46558648..bddb1b507ed 100644 --- a/webrisk/v1/webrisk-api.json +++ b/webrisk/v1/webrisk-api.json @@ -127,14 +127,14 @@ "MALWARE", "SOCIAL_ENGINEERING", "UNWANTED_SOFTWARE", - "HIGH_RECALL" + "SOCIAL_ENGINEERING_EXTENDED_COVERAGE" ], "enumDescriptions": [ "No entries should match this threat type. This threat type is unused.", "Malware targeting any platform.", "Social engineering targeting any platform.", "Unwanted software targeting any platform.", - "High Recall Social Engineering list targeting any platform." + "Extended Coverage Social Engineering list targeting any platform." ], "location": "query", "repeated": true, @@ -377,14 +377,14 @@ "MALWARE", "SOCIAL_ENGINEERING", "UNWANTED_SOFTWARE", - "HIGH_RECALL" + "SOCIAL_ENGINEERING_EXTENDED_COVERAGE" ], "enumDescriptions": [ "No entries should match this threat type. This threat type is unused.", "Malware targeting any platform.", "Social engineering targeting any platform.", "Unwanted software targeting any platform.", - "High Recall Social Engineering list targeting any platform." + "Extended Coverage Social Engineering list targeting any platform." ], "location": "query", "type": "string" @@ -422,14 +422,14 @@ "MALWARE", "SOCIAL_ENGINEERING", "UNWANTED_SOFTWARE", - "HIGH_RECALL" + "SOCIAL_ENGINEERING_EXTENDED_COVERAGE" ], "enumDescriptions": [ "No entries should match this threat type. This threat type is unused.", "Malware targeting any platform.", "Social engineering targeting any platform.", "Unwanted software targeting any platform.", - "High Recall Social Engineering list targeting any platform." + "Extended Coverage Social Engineering list targeting any platform." ], "location": "query", "repeated": true, @@ -452,7 +452,7 @@ } } }, - "revision": "20220625", + "revision": "20220708", "rootUrl": "https://webrisk.googleapis.com/", "schemas": { "GoogleCloudWebriskV1ComputeThreatListDiffResponse": { @@ -608,14 +608,14 @@ "MALWARE", "SOCIAL_ENGINEERING", "UNWANTED_SOFTWARE", - "HIGH_RECALL" + "SOCIAL_ENGINEERING_EXTENDED_COVERAGE" ], "enumDescriptions": [ "No entries should match this threat type. This threat type is unused.", "Malware targeting any platform.", "Social engineering targeting any platform.", "Unwanted software targeting any platform.", - "High Recall Social Engineering list targeting any platform." + "Extended Coverage Social Engineering list targeting any platform." ], "type": "string" }, @@ -651,14 +651,14 @@ "MALWARE", "SOCIAL_ENGINEERING", "UNWANTED_SOFTWARE", - "HIGH_RECALL" + "SOCIAL_ENGINEERING_EXTENDED_COVERAGE" ], "enumDescriptions": [ "No entries should match this threat type. This threat type is unused.", "Malware targeting any platform.", "Social engineering targeting any platform.", "Unwanted software targeting any platform.", - "High Recall Social Engineering list targeting any platform." + "Extended Coverage Social Engineering list targeting any platform." ], "type": "string" }, @@ -679,14 +679,14 @@ "MALWARE", "SOCIAL_ENGINEERING", "UNWANTED_SOFTWARE", - "HIGH_RECALL" + "SOCIAL_ENGINEERING_EXTENDED_COVERAGE" ], "enumDescriptions": [ "No entries should match this threat type. This threat type is unused.", "Malware targeting any platform.", "Social engineering targeting any platform.", "Unwanted software targeting any platform.", - "High Recall Social Engineering list targeting any platform." + "Extended Coverage Social Engineering list targeting any platform." ], "type": "string" }, diff --git a/webrisk/v1/webrisk-gen.go b/webrisk/v1/webrisk-gen.go index e05b0ef76c5..0eff0005216 100644 --- a/webrisk/v1/webrisk-gen.go +++ b/webrisk/v1/webrisk-gen.go @@ -489,8 +489,8 @@ type GoogleCloudWebriskV1SearchHashesResponseThreatHash struct { // "MALWARE" - Malware targeting any platform. // "SOCIAL_ENGINEERING" - Social engineering targeting any platform. // "UNWANTED_SOFTWARE" - Unwanted software targeting any platform. - // "HIGH_RECALL" - High Recall Social Engineering list targeting any - // platform. + // "SOCIAL_ENGINEERING_EXTENDED_COVERAGE" - Extended Coverage Social + // Engineering list targeting any platform. ThreatTypes []string `json:"threatTypes,omitempty"` // ForceSendFields is a list of field names (e.g. "ExpireTime") to @@ -563,8 +563,8 @@ type GoogleCloudWebriskV1SearchUrisResponseThreatUri struct { // "MALWARE" - Malware targeting any platform. // "SOCIAL_ENGINEERING" - Social engineering targeting any platform. // "UNWANTED_SOFTWARE" - Unwanted software targeting any platform. - // "HIGH_RECALL" - High Recall Social Engineering list targeting any - // platform. + // "SOCIAL_ENGINEERING_EXTENDED_COVERAGE" - Extended Coverage Social + // Engineering list targeting any platform. ThreatTypes []string `json:"threatTypes,omitempty"` // ForceSendFields is a list of field names (e.g. "ExpireTime") to @@ -603,8 +603,8 @@ type GoogleCloudWebriskV1Submission struct { // "MALWARE" - Malware targeting any platform. // "SOCIAL_ENGINEERING" - Social engineering targeting any platform. // "UNWANTED_SOFTWARE" - Unwanted software targeting any platform. - // "HIGH_RECALL" - High Recall Social Engineering list targeting any - // platform. + // "SOCIAL_ENGINEERING_EXTENDED_COVERAGE" - Extended Coverage Social + // Engineering list targeting any platform. ThreatTypes []string `json:"threatTypes,omitempty"` // Uri: Required. The URI that is being reported for malicious content @@ -980,8 +980,8 @@ func (c *HashesSearchCall) HashPrefix(hashPrefix string) *HashesSearchCall { // "MALWARE" - Malware targeting any platform. // "SOCIAL_ENGINEERING" - Social engineering targeting any platform. // "UNWANTED_SOFTWARE" - Unwanted software targeting any platform. -// "HIGH_RECALL" - High Recall Social Engineering list targeting any -// platform. +// "SOCIAL_ENGINEERING_EXTENDED_COVERAGE" - Extended Coverage Social +// Engineering list targeting any platform. func (c *HashesSearchCall) ThreatTypes(threatTypes ...string) *HashesSearchCall { c.urlParams_.SetMulti("threatTypes", append([]string{}, threatTypes...)) return c @@ -1104,14 +1104,14 @@ func (c *HashesSearchCall) Do(opts ...googleapi.CallOption) (*GoogleCloudWebrisk // "MALWARE", // "SOCIAL_ENGINEERING", // "UNWANTED_SOFTWARE", - // "HIGH_RECALL" + // "SOCIAL_ENGINEERING_EXTENDED_COVERAGE" // ], // "enumDescriptions": [ // "No entries should match this threat type. This threat type is unused.", // "Malware targeting any platform.", // "Social engineering targeting any platform.", // "Unwanted software targeting any platform.", - // "High Recall Social Engineering list targeting any platform." + // "Extended Coverage Social Engineering list targeting any platform." // ], // "location": "query", // "repeated": true, @@ -2137,8 +2137,8 @@ func (c *ThreatListsComputeDiffCall) ConstraintsSupportedCompressions(constraint // "MALWARE" - Malware targeting any platform. // "SOCIAL_ENGINEERING" - Social engineering targeting any platform. // "UNWANTED_SOFTWARE" - Unwanted software targeting any platform. -// "HIGH_RECALL" - High Recall Social Engineering list targeting any -// platform. +// "SOCIAL_ENGINEERING_EXTENDED_COVERAGE" - Extended Coverage Social +// Engineering list targeting any platform. func (c *ThreatListsComputeDiffCall) ThreatType(threatType string) *ThreatListsComputeDiffCall { c.urlParams_.Set("threatType", threatType) return c @@ -2294,14 +2294,14 @@ func (c *ThreatListsComputeDiffCall) Do(opts ...googleapi.CallOption) (*GoogleCl // "MALWARE", // "SOCIAL_ENGINEERING", // "UNWANTED_SOFTWARE", - // "HIGH_RECALL" + // "SOCIAL_ENGINEERING_EXTENDED_COVERAGE" // ], // "enumDescriptions": [ // "No entries should match this threat type. This threat type is unused.", // "Malware targeting any platform.", // "Social engineering targeting any platform.", // "Unwanted software targeting any platform.", - // "High Recall Social Engineering list targeting any platform." + // "Extended Coverage Social Engineering list targeting any platform." // ], // "location": "query", // "type": "string" @@ -2353,8 +2353,8 @@ func (r *UrisService) Search() *UrisSearchCall { // "MALWARE" - Malware targeting any platform. // "SOCIAL_ENGINEERING" - Social engineering targeting any platform. // "UNWANTED_SOFTWARE" - Unwanted software targeting any platform. -// "HIGH_RECALL" - High Recall Social Engineering list targeting any -// platform. +// "SOCIAL_ENGINEERING_EXTENDED_COVERAGE" - Extended Coverage Social +// Engineering list targeting any platform. func (c *UrisSearchCall) ThreatTypes(threatTypes ...string) *UrisSearchCall { c.urlParams_.SetMulti("threatTypes", append([]string{}, threatTypes...)) return c @@ -2477,14 +2477,14 @@ func (c *UrisSearchCall) Do(opts ...googleapi.CallOption) (*GoogleCloudWebriskV1 // "MALWARE", // "SOCIAL_ENGINEERING", // "UNWANTED_SOFTWARE", - // "HIGH_RECALL" + // "SOCIAL_ENGINEERING_EXTENDED_COVERAGE" // ], // "enumDescriptions": [ // "No entries should match this threat type. This threat type is unused.", // "Malware targeting any platform.", // "Social engineering targeting any platform.", // "Unwanted software targeting any platform.", - // "High Recall Social Engineering list targeting any platform." + // "Extended Coverage Social Engineering list targeting any platform." // ], // "location": "query", // "repeated": true, diff --git a/youtube/v3/youtube-api.json b/youtube/v3/youtube-api.json index ab3b0a80835..5200a051713 100644 --- a/youtube/v3/youtube-api.json +++ b/youtube/v3/youtube-api.json @@ -1406,48 +1406,12 @@ "location": "query", "repeated": true, "type": "string" - }, - "resource.cueType": { - "enum": [ - "cueTypeUnspecified", - "cueTypeAd" - ], - "enumDescriptions": [ - "", - "" - ], - "location": "query", - "type": "string" - }, - "resource.durationSecs": { - "description": "The duration of this cuepoint.", - "format": "uint32", - "location": "query", - "type": "integer" - }, - "resource.etag": { - "location": "query", - "type": "string" - }, - "resource.id": { - "description": "The identifier for cuepoint resource.", - "location": "query", - "type": "string" - }, - "resource.insertionOffsetTimeMs": { - "description": "The time when the cuepoint should be inserted by offset to the broadcast actual start time.", - "format": "int64", - "location": "query", - "type": "string" - }, - "resource.walltimeMs": { - "description": "The wall clock time at which the cuepoint should be inserted. Only one of insertion_offset_time_ms and walltime_ms may be set at a time.", - "format": "uint64", - "location": "query", - "type": "string" } }, "path": "youtube/v3/liveBroadcasts/cuepoint", + "request": { + "$ref": "Cuepoint" + }, "response": { "$ref": "Cuepoint" }, @@ -3865,7 +3829,7 @@ } } }, - "revision": "20220711", + "revision": "20220713", "rootUrl": "https://youtube.googleapis.com/", "schemas": { "AbuseReport": { diff --git a/youtube/v3/youtube-gen.go b/youtube/v3/youtube-gen.go index 56fb3e8519a..a4f6b0d8e91 100644 --- a/youtube/v3/youtube-gen.go +++ b/youtube/v3/youtube-gen.go @@ -15590,14 +15590,16 @@ func (c *LiveBroadcastsInsertCall) Do(opts ...googleapi.CallOption) (*LiveBroadc type LiveBroadcastsInsertCuepointCall struct { s *Service + cuepoint *Cuepoint urlParams_ gensupport.URLParams ctx_ context.Context header_ http.Header } // InsertCuepoint: Insert cuepoints in a broadcast -func (r *LiveBroadcastsService) InsertCuepoint() *LiveBroadcastsInsertCuepointCall { +func (r *LiveBroadcastsService) InsertCuepoint(cuepoint *Cuepoint) *LiveBroadcastsInsertCuepointCall { c := &LiveBroadcastsInsertCuepointCall{s: r.s, urlParams_: make(gensupport.URLParams)} + c.cuepoint = cuepoint return c } @@ -15659,52 +15661,6 @@ func (c *LiveBroadcastsInsertCuepointCall) Part(part ...string) *LiveBroadcastsI return c } -// ResourceCueType sets the optional parameter "resource.cueType": -// -// Possible values: -// "cueTypeUnspecified" -// "cueTypeAd" -func (c *LiveBroadcastsInsertCuepointCall) ResourceCueType(resourceCueType string) *LiveBroadcastsInsertCuepointCall { - c.urlParams_.Set("resource.cueType", resourceCueType) - return c -} - -// ResourceDurationSecs sets the optional parameter -// "resource.durationSecs": The duration of this cuepoint. -func (c *LiveBroadcastsInsertCuepointCall) ResourceDurationSecs(resourceDurationSecs int64) *LiveBroadcastsInsertCuepointCall { - c.urlParams_.Set("resource.durationSecs", fmt.Sprint(resourceDurationSecs)) - return c -} - -// ResourceEtag sets the optional parameter "resource.etag": -func (c *LiveBroadcastsInsertCuepointCall) ResourceEtag(resourceEtag string) *LiveBroadcastsInsertCuepointCall { - c.urlParams_.Set("resource.etag", resourceEtag) - return c -} - -// ResourceId sets the optional parameter "resource.id": The identifier -// for cuepoint resource. -func (c *LiveBroadcastsInsertCuepointCall) ResourceId(resourceId string) *LiveBroadcastsInsertCuepointCall { - c.urlParams_.Set("resource.id", resourceId) - return c -} - -// ResourceInsertionOffsetTimeMs sets the optional parameter -// "resource.insertionOffsetTimeMs": The time when the cuepoint should -// be inserted by offset to the broadcast actual start time. -func (c *LiveBroadcastsInsertCuepointCall) ResourceInsertionOffsetTimeMs(resourceInsertionOffsetTimeMs int64) *LiveBroadcastsInsertCuepointCall { - c.urlParams_.Set("resource.insertionOffsetTimeMs", fmt.Sprint(resourceInsertionOffsetTimeMs)) - return c -} - -// ResourceWalltimeMs sets the optional parameter "resource.walltimeMs": -// The wall clock time at which the cuepoint should be inserted. Only -// one of insertion_offset_time_ms and walltime_ms may be set at a time. -func (c *LiveBroadcastsInsertCuepointCall) ResourceWalltimeMs(resourceWalltimeMs uint64) *LiveBroadcastsInsertCuepointCall { - c.urlParams_.Set("resource.walltimeMs", fmt.Sprint(resourceWalltimeMs)) - return c -} - // Fields allows partial responses to be retrieved. See // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse // for more information. @@ -15738,6 +15694,11 @@ func (c *LiveBroadcastsInsertCuepointCall) doRequest(alt string) (*http.Response } reqHeaders.Set("User-Agent", c.s.userAgent()) var body io.Reader = nil + body, err := googleapi.WithoutDataWrapper.JSONReader(c.cuepoint) + if err != nil { + return nil, err + } + reqHeaders.Set("Content-Type", "application/json") c.urlParams_.Set("alt", alt) c.urlParams_.Set("prettyPrint", "false") urls := googleapi.ResolveRelative(c.s.BasePath, "youtube/v3/liveBroadcasts/cuepoint") @@ -15814,48 +15775,12 @@ func (c *LiveBroadcastsInsertCuepointCall) Do(opts ...googleapi.CallOption) (*Cu // "location": "query", // "repeated": true, // "type": "string" - // }, - // "resource.cueType": { - // "enum": [ - // "cueTypeUnspecified", - // "cueTypeAd" - // ], - // "enumDescriptions": [ - // "", - // "" - // ], - // "location": "query", - // "type": "string" - // }, - // "resource.durationSecs": { - // "description": "The duration of this cuepoint.", - // "format": "uint32", - // "location": "query", - // "type": "integer" - // }, - // "resource.etag": { - // "location": "query", - // "type": "string" - // }, - // "resource.id": { - // "description": "The identifier for cuepoint resource.", - // "location": "query", - // "type": "string" - // }, - // "resource.insertionOffsetTimeMs": { - // "description": "The time when the cuepoint should be inserted by offset to the broadcast actual start time.", - // "format": "int64", - // "location": "query", - // "type": "string" - // }, - // "resource.walltimeMs": { - // "description": "The wall clock time at which the cuepoint should be inserted. Only one of insertion_offset_time_ms and walltime_ms may be set at a time.", - // "format": "uint64", - // "location": "query", - // "type": "string" // } // }, // "path": "youtube/v3/liveBroadcasts/cuepoint", + // "request": { + // "$ref": "Cuepoint" + // }, // "response": { // "$ref": "Cuepoint" // },