1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00

Update go.mod, go.sum and vendor

Running `go mod vendor` generates new additions and deletions.
This commit is contained in:
Indradhanush Gupta
2019-09-14 16:23:09 +05:30
parent 1ee3e6d213
commit f737c53864
660 changed files with 73712 additions and 17787 deletions

View File

@@ -27,6 +27,7 @@
"description": "Reads and writes Google Sheets.",
"discoveryVersion": "v1",
"documentationLink": "https://developers.google.com/sheets/",
"fullyEncodeReservedExpansion": true,
"icons": {
"x16": "http://www.google.com/images/icons/product/search-16.gif",
"x32": "http://www.google.com/images/icons/product/search-32.gif"
@@ -808,7 +809,7 @@
}
}
},
"revision": "20190429",
"revision": "20190813",
"rootUrl": "https://sheets.googleapis.com/",
"schemas": {
"AddBandingRequest": {
@@ -1166,6 +1167,10 @@
"titleTextPosition": {
"$ref": "TextPosition",
"description": "The axis title text position."
},
"viewWindowOptions": {
"$ref": "ChartAxisViewWindowOptions",
"description": "The view window options for this axis."
}
},
"type": "object"
@@ -2243,6 +2248,39 @@
},
"type": "object"
},
"ChartAxisViewWindowOptions": {
"description": "The options that define a \"view window\" for a chart (such as the visible\nvalues in an axis).",
"id": "ChartAxisViewWindowOptions",
"properties": {
"viewWindowMax": {
"description": "The maximum numeric value to be shown in this view window. If unset, will\nautomatically determine a maximum value that looks good for the data.",
"format": "double",
"type": "number"
},
"viewWindowMin": {
"description": "The minimum numeric value to be shown in this view window. If unset, will\nautomatically determine a minimum value that looks good for the data.",
"format": "double",
"type": "number"
},
"viewWindowMode": {
"description": "The view window's mode.",
"enum": [
"DEFAULT_VIEW_WINDOW_MODE",
"VIEW_WINDOW_MODE_UNSUPPORTED",
"EXPLICIT",
"PRETTY"
],
"enumDescriptions": [
"The default view window mode used in the Sheets editor for this chart\ntype. In most cases, if set, the default mode is equivalent to\n`PRETTY`.",
"Do not use. Represents that the currently set mode is not supported by\nthe API.",
"Follows the min and max exactly if specified. If a value is unspecified,\nit will fall back to the `PRETTY` value.",
"Chooses a min and max that make the chart look good. Both min and max are\nignored in this mode."
],
"type": "string"
}
},
"type": "object"
},
"ChartData": {
"description": "The data included in a domain or series.",
"id": "ChartData",
@@ -2824,6 +2862,36 @@
},
"type": "object"
},
"DeleteDuplicatesRequest": {
"description": "Removes rows within this range that contain values in the specified columns\nthat are duplicates of values in any previous row. Rows with identical values\nbut different letter cases, formatting, or formulas are considered to be\nduplicates.\n\nThis request also removes duplicate rows hidden from view (for example, due\nto a filter). When removing duplicates, the first instance of each duplicate\nrow scanning from the top downwards is kept in the resulting range. Content\noutside of the specified range isn't removed, and rows considered duplicates\ndo not have to be adjacent to each other in the range.",
"id": "DeleteDuplicatesRequest",
"properties": {
"comparisonColumns": {
"description": "The columns in the range to analyze for duplicate values. If no columns are\nselected then all columns are analyzed for duplicates.",
"items": {
"$ref": "DimensionRange"
},
"type": "array"
},
"range": {
"$ref": "GridRange",
"description": "The range to remove duplicates rows from."
}
},
"type": "object"
},
"DeleteDuplicatesResponse": {
"description": "The result of removing duplicates in a range.",
"id": "DeleteDuplicatesResponse",
"properties": {
"duplicatesRemovedCount": {
"description": "The number of duplicate rows removed.",
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"DeleteEmbeddedObjectRequest": {
"description": "Deletes the embedded object with the given ID.",
"id": "DeleteEmbeddedObjectRequest",
@@ -4610,6 +4678,10 @@
"$ref": "DeleteDimensionGroupRequest",
"description": "Deletes a group over the specified range."
},
"deleteDuplicates": {
"$ref": "DeleteDuplicatesRequest",
"description": "Removes rows containing duplicate values in specified columns of a cell\nrange."
},
"deleteEmbeddedObject": {
"$ref": "DeleteEmbeddedObjectRequest",
"description": "Deletes an embedded object (e.g, chart, image) in a sheet."
@@ -4690,6 +4762,10 @@
"$ref": "TextToColumnsRequest",
"description": "Converts a column of text into many columns of text."
},
"trimWhitespace": {
"$ref": "TrimWhitespaceRequest",
"description": "Trims cells of whitespace (such as spaces, tabs, or new lines)."
},
"unmergeCells": {
"$ref": "UnmergeCellsRequest",
"description": "Unmerges merged cells."
@@ -4801,6 +4877,10 @@
"$ref": "DeleteDimensionGroupResponse",
"description": "A reply from deleting a dimension group."
},
"deleteDuplicates": {
"$ref": "DeleteDuplicatesResponse",
"description": "A reply from removing rows containing duplicate values."
},
"duplicateFilterView": {
"$ref": "DuplicateFilterViewResponse",
"description": "A reply from duplicating a filter view."
@@ -4813,6 +4893,10 @@
"$ref": "FindReplaceResponse",
"description": "A reply from doing a find/replace."
},
"trimWhitespace": {
"$ref": "TrimWhitespaceResponse",
"description": "A reply from trimming whitespace."
},
"updateConditionalFormatRule": {
"$ref": "UpdateConditionalFormatRuleResponse",
"description": "A reply from updating a conditional format rule."
@@ -5399,6 +5483,29 @@
},
"type": "object"
},
"TrimWhitespaceRequest": {
"description": "Trims the whitespace (such as spaces, tabs, or new lines) in every cell in\nthe specified range. This request removes all whitespace from the start and\nend of each cell's text, and reduces any subsequence of remaining whitespace\ncharacters to a single space. If the resulting trimmed text starts with a '+'\nor '=' character, the text remains as a string value and isn't interpreted\nas a formula.",
"id": "TrimWhitespaceRequest",
"properties": {
"range": {
"$ref": "GridRange",
"description": "The range whose cells to trim."
}
},
"type": "object"
},
"TrimWhitespaceResponse": {
"description": "The result of trimming whitespace in cells.",
"id": "TrimWhitespaceResponse",
"properties": {
"cellsChangedCount": {
"description": "The number of cells that were trimmed of whitespace.",
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"UnmergeCellsRequest": {
"description": "Unmerges cells in the given range.",
"id": "UnmergeCellsRequest",

View File

@@ -1025,6 +1025,9 @@ type BasicChartAxis struct {
// TitleTextPosition: The axis title text position.
TitleTextPosition *TextPosition `json:"titleTextPosition,omitempty"`
// ViewWindowOptions: The view window options for this axis.
ViewWindowOptions *ChartAxisViewWindowOptions `json:"viewWindowOptions,omitempty"`
// ForceSendFields is a list of field names (e.g. "Format") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
@@ -2918,6 +2921,78 @@ func (s *CellFormat) MarshalJSON() ([]byte, error) {
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// ChartAxisViewWindowOptions: The options that define a "view window"
// for a chart (such as the visible
// values in an axis).
type ChartAxisViewWindowOptions struct {
// ViewWindowMax: The maximum numeric value to be shown in this view
// window. If unset, will
// automatically determine a maximum value that looks good for the data.
ViewWindowMax float64 `json:"viewWindowMax,omitempty"`
// ViewWindowMin: The minimum numeric value to be shown in this view
// window. If unset, will
// automatically determine a minimum value that looks good for the data.
ViewWindowMin float64 `json:"viewWindowMin,omitempty"`
// ViewWindowMode: The view window's mode.
//
// Possible values:
// "DEFAULT_VIEW_WINDOW_MODE" - The default view window mode used in
// the Sheets editor for this chart
// type. In most cases, if set, the default mode is equivalent
// to
// `PRETTY`.
// "VIEW_WINDOW_MODE_UNSUPPORTED" - Do not use. Represents that the
// currently set mode is not supported by
// the API.
// "EXPLICIT" - Follows the min and max exactly if specified. If a
// value is unspecified,
// it will fall back to the `PRETTY` value.
// "PRETTY" - Chooses a min and max that make the chart look good.
// Both min and max are
// ignored in this mode.
ViewWindowMode string `json:"viewWindowMode,omitempty"`
// ForceSendFields is a list of field names (e.g. "ViewWindowMax") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "ViewWindowMax") to include
// in API requests with the JSON null value. By default, fields with
// empty values are omitted from API requests. However, any field with
// an empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *ChartAxisViewWindowOptions) MarshalJSON() ([]byte, error) {
type NoMethod ChartAxisViewWindowOptions
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
func (s *ChartAxisViewWindowOptions) UnmarshalJSON(data []byte) error {
type NoMethod ChartAxisViewWindowOptions
var s1 struct {
ViewWindowMax gensupport.JSONFloat64 `json:"viewWindowMax"`
ViewWindowMin gensupport.JSONFloat64 `json:"viewWindowMin"`
*NoMethod
}
s1.NoMethod = (*NoMethod)(s)
if err := json.Unmarshal(data, &s1); err != nil {
return err
}
s.ViewWindowMax = float64(s1.ViewWindowMax)
s.ViewWindowMin = float64(s1.ViewWindowMin)
return nil
}
// ChartData: The data included in a domain or series.
type ChartData struct {
// SourceRange: The source ranges of the data.
@@ -4130,6 +4205,87 @@ func (s *DeleteDimensionRequest) MarshalJSON() ([]byte, error) {
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// DeleteDuplicatesRequest: Removes rows within this range that contain
// values in the specified columns
// that are duplicates of values in any previous row. Rows with
// identical values
// but different letter cases, formatting, or formulas are considered to
// be
// duplicates.
//
// This request also removes duplicate rows hidden from view (for
// example, due
// to a filter). When removing duplicates, the first instance of each
// duplicate
// row scanning from the top downwards is kept in the resulting range.
// Content
// outside of the specified range isn't removed, and rows considered
// duplicates
// do not have to be adjacent to each other in the range.
type DeleteDuplicatesRequest struct {
// ComparisonColumns: The columns in the range to analyze for duplicate
// values. If no columns are
// selected then all columns are analyzed for duplicates.
ComparisonColumns []*DimensionRange `json:"comparisonColumns,omitempty"`
// Range: The range to remove duplicates rows from.
Range *GridRange `json:"range,omitempty"`
// ForceSendFields is a list of field names (e.g. "ComparisonColumns")
// to unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "ComparisonColumns") to
// include in API requests with the JSON null value. By default, fields
// with empty values are omitted from API requests. However, any field
// with an empty value appearing in NullFields will be sent to the
// server as null. It is an error if a field in this list has a
// non-empty value. This may be used to include null fields in Patch
// requests.
NullFields []string `json:"-"`
}
func (s *DeleteDuplicatesRequest) MarshalJSON() ([]byte, error) {
type NoMethod DeleteDuplicatesRequest
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// DeleteDuplicatesResponse: The result of removing duplicates in a
// range.
type DeleteDuplicatesResponse struct {
// DuplicatesRemovedCount: The number of duplicate rows removed.
DuplicatesRemovedCount int64 `json:"duplicatesRemovedCount,omitempty"`
// ForceSendFields is a list of field names (e.g.
// "DuplicatesRemovedCount") to unconditionally include in API requests.
// By default, fields with empty values are omitted from API requests.
// However, any non-pointer, non-interface field appearing in
// ForceSendFields will be sent to the server regardless of whether the
// field is empty or not. This may be used to include empty fields in
// Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "DuplicatesRemovedCount")
// to include in API requests with the JSON null value. By default,
// fields with empty values are omitted from API requests. However, any
// field with an empty value appearing in NullFields will be sent to the
// server as null. It is an error if a field in this list has a
// non-empty value. This may be used to include null fields in Patch
// requests.
NullFields []string `json:"-"`
}
func (s *DeleteDuplicatesResponse) MarshalJSON() ([]byte, error) {
type NoMethod DeleteDuplicatesResponse
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// DeleteEmbeddedObjectRequest: Deletes the embedded object with the
// given ID.
type DeleteEmbeddedObjectRequest struct {
@@ -7320,6 +7476,11 @@ type Request struct {
// DeleteDimensionGroup: Deletes a group over the specified range.
DeleteDimensionGroup *DeleteDimensionGroupRequest `json:"deleteDimensionGroup,omitempty"`
// DeleteDuplicates: Removes rows containing duplicate values in
// specified columns of a cell
// range.
DeleteDuplicates *DeleteDuplicatesRequest `json:"deleteDuplicates,omitempty"`
// DeleteEmbeddedObject: Deletes an embedded object (e.g, chart, image)
// in a sheet.
DeleteEmbeddedObject *DeleteEmbeddedObjectRequest `json:"deleteEmbeddedObject,omitempty"`
@@ -7384,6 +7545,10 @@ type Request struct {
// TextToColumns: Converts a column of text into many columns of text.
TextToColumns *TextToColumnsRequest `json:"textToColumns,omitempty"`
// TrimWhitespace: Trims cells of whitespace (such as spaces, tabs, or
// new lines).
TrimWhitespace *TrimWhitespaceRequest `json:"trimWhitespace,omitempty"`
// UnmergeCells: Unmerges merged cells.
UnmergeCells *UnmergeCellsRequest `json:"unmergeCells,omitempty"`
@@ -7492,6 +7657,10 @@ type Response struct {
// DeleteDimensionGroup: A reply from deleting a dimension group.
DeleteDimensionGroup *DeleteDimensionGroupResponse `json:"deleteDimensionGroup,omitempty"`
// DeleteDuplicates: A reply from removing rows containing duplicate
// values.
DeleteDuplicates *DeleteDuplicatesResponse `json:"deleteDuplicates,omitempty"`
// DuplicateFilterView: A reply from duplicating a filter view.
DuplicateFilterView *DuplicateFilterViewResponse `json:"duplicateFilterView,omitempty"`
@@ -7501,6 +7670,9 @@ type Response struct {
// FindReplace: A reply from doing a find/replace.
FindReplace *FindReplaceResponse `json:"findReplace,omitempty"`
// TrimWhitespace: A reply from trimming whitespace.
TrimWhitespace *TrimWhitespaceResponse `json:"trimWhitespace,omitempty"`
// UpdateConditionalFormatRule: A reply from updating a conditional
// format rule.
UpdateConditionalFormatRule *UpdateConditionalFormatRuleResponse `json:"updateConditionalFormatRule,omitempty"`
@@ -8494,6 +8666,74 @@ func (s *TreemapChartSpec) UnmarshalJSON(data []byte) error {
return nil
}
// TrimWhitespaceRequest: Trims the whitespace (such as spaces, tabs, or
// new lines) in every cell in
// the specified range. This request removes all whitespace from the
// start and
// end of each cell's text, and reduces any subsequence of remaining
// whitespace
// characters to a single space. If the resulting trimmed text starts
// with a '+'
// or '=' character, the text remains as a string value and isn't
// interpreted
// as a formula.
type TrimWhitespaceRequest struct {
// Range: The range whose cells to trim.
Range *GridRange `json:"range,omitempty"`
// ForceSendFields is a list of field names (e.g. "Range") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Range") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *TrimWhitespaceRequest) MarshalJSON() ([]byte, error) {
type NoMethod TrimWhitespaceRequest
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// TrimWhitespaceResponse: The result of trimming whitespace in cells.
type TrimWhitespaceResponse struct {
// CellsChangedCount: The number of cells that were trimmed of
// whitespace.
CellsChangedCount int64 `json:"cellsChangedCount,omitempty"`
// ForceSendFields is a list of field names (e.g. "CellsChangedCount")
// to unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "CellsChangedCount") to
// include in API requests with the JSON null value. By default, fields
// with empty values are omitted from API requests. However, any field
// with an empty value appearing in NullFields will be sent to the
// server as null. It is an error if a field in this list has a
// non-empty value. This may be used to include null fields in Patch
// requests.
NullFields []string `json:"-"`
}
func (s *TrimWhitespaceResponse) MarshalJSON() ([]byte, error) {
type NoMethod TrimWhitespaceResponse
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// UnmergeCellsRequest: Unmerges cells in the given range.
type UnmergeCellsRequest struct {
// Range: The range within which all cells should be unmerged.
@@ -9670,6 +9910,7 @@ func (c *SpreadsheetsBatchUpdateCall) Header() http.Header {
func (c *SpreadsheetsBatchUpdateCall) doRequest(alt string) (*http.Response, error) {
reqHeaders := make(http.Header)
reqHeaders.Set("x-goog-api-client", "gl-go/1.11.0 gdcl/20190802")
for k, v := range c.header_ {
reqHeaders[k] = v
}
@@ -9809,6 +10050,7 @@ func (c *SpreadsheetsCreateCall) Header() http.Header {
func (c *SpreadsheetsCreateCall) doRequest(alt string) (*http.Response, error) {
reqHeaders := make(http.Header)
reqHeaders.Set("x-goog-api-client", "gl-go/1.11.0 gdcl/20190802")
for k, v := range c.header_ {
reqHeaders[k] = v
}
@@ -9985,6 +10227,7 @@ func (c *SpreadsheetsGetCall) Header() http.Header {
func (c *SpreadsheetsGetCall) doRequest(alt string) (*http.Response, error) {
reqHeaders := make(http.Header)
reqHeaders.Set("x-goog-api-client", "gl-go/1.11.0 gdcl/20190802")
for k, v := range c.header_ {
reqHeaders[k] = v
}
@@ -10160,6 +10403,7 @@ func (c *SpreadsheetsGetByDataFilterCall) Header() http.Header {
func (c *SpreadsheetsGetByDataFilterCall) doRequest(alt string) (*http.Response, error) {
reqHeaders := make(http.Header)
reqHeaders.Set("x-goog-api-client", "gl-go/1.11.0 gdcl/20190802")
for k, v := range c.header_ {
reqHeaders[k] = v
}
@@ -10314,6 +10558,7 @@ func (c *SpreadsheetsDeveloperMetadataGetCall) Header() http.Header {
func (c *SpreadsheetsDeveloperMetadataGetCall) doRequest(alt string) (*http.Response, error) {
reqHeaders := make(http.Header)
reqHeaders.Set("x-goog-api-client", "gl-go/1.11.0 gdcl/20190802")
for k, v := range c.header_ {
reqHeaders[k] = v
}
@@ -10467,6 +10712,7 @@ func (c *SpreadsheetsDeveloperMetadataSearchCall) Header() http.Header {
func (c *SpreadsheetsDeveloperMetadataSearchCall) doRequest(alt string) (*http.Response, error) {
reqHeaders := make(http.Header)
reqHeaders.Set("x-goog-api-client", "gl-go/1.11.0 gdcl/20190802")
for k, v := range c.header_ {
reqHeaders[k] = v
}
@@ -10611,6 +10857,7 @@ func (c *SpreadsheetsSheetsCopyToCall) Header() http.Header {
func (c *SpreadsheetsSheetsCopyToCall) doRequest(alt string) (*http.Response, error) {
reqHeaders := make(http.Header)
reqHeaders.Set("x-goog-api-client", "gl-go/1.11.0 gdcl/20190802")
for k, v := range c.header_ {
reqHeaders[k] = v
}
@@ -10846,6 +11093,7 @@ func (c *SpreadsheetsValuesAppendCall) Header() http.Header {
func (c *SpreadsheetsValuesAppendCall) doRequest(alt string) (*http.Response, error) {
reqHeaders := make(http.Header)
reqHeaders.Set("x-goog-api-client", "gl-go/1.11.0 gdcl/20190802")
for k, v := range c.header_ {
reqHeaders[k] = v
}
@@ -11043,6 +11291,7 @@ func (c *SpreadsheetsValuesBatchClearCall) Header() http.Header {
func (c *SpreadsheetsValuesBatchClearCall) doRequest(alt string) (*http.Response, error) {
reqHeaders := make(http.Header)
reqHeaders.Set("x-goog-api-client", "gl-go/1.11.0 gdcl/20190802")
for k, v := range c.header_ {
reqHeaders[k] = v
}
@@ -11190,6 +11439,7 @@ func (c *SpreadsheetsValuesBatchClearByDataFilterCall) Header() http.Header {
func (c *SpreadsheetsValuesBatchClearByDataFilterCall) doRequest(alt string) (*http.Response, error) {
reqHeaders := make(http.Header)
reqHeaders.Set("x-goog-api-client", "gl-go/1.11.0 gdcl/20190802")
for k, v := range c.header_ {
reqHeaders[k] = v
}
@@ -11398,6 +11648,7 @@ func (c *SpreadsheetsValuesBatchGetCall) Header() http.Header {
func (c *SpreadsheetsValuesBatchGetCall) doRequest(alt string) (*http.Response, error) {
reqHeaders := make(http.Header)
reqHeaders.Set("x-goog-api-client", "gl-go/1.11.0 gdcl/20190802")
for k, v := range c.header_ {
reqHeaders[k] = v
}
@@ -11575,6 +11826,7 @@ func (c *SpreadsheetsValuesBatchGetByDataFilterCall) Header() http.Header {
func (c *SpreadsheetsValuesBatchGetByDataFilterCall) doRequest(alt string) (*http.Response, error) {
reqHeaders := make(http.Header)
reqHeaders.Set("x-goog-api-client", "gl-go/1.11.0 gdcl/20190802")
for k, v := range c.header_ {
reqHeaders[k] = v
}
@@ -11719,6 +11971,7 @@ func (c *SpreadsheetsValuesBatchUpdateCall) Header() http.Header {
func (c *SpreadsheetsValuesBatchUpdateCall) doRequest(alt string) (*http.Response, error) {
reqHeaders := make(http.Header)
reqHeaders.Set("x-goog-api-client", "gl-go/1.11.0 gdcl/20190802")
for k, v := range c.header_ {
reqHeaders[k] = v
}
@@ -11863,6 +12116,7 @@ func (c *SpreadsheetsValuesBatchUpdateByDataFilterCall) Header() http.Header {
func (c *SpreadsheetsValuesBatchUpdateByDataFilterCall) doRequest(alt string) (*http.Response, error) {
reqHeaders := make(http.Header)
reqHeaders.Set("x-goog-api-client", "gl-go/1.11.0 gdcl/20190802")
for k, v := range c.header_ {
reqHeaders[k] = v
}
@@ -12010,6 +12264,7 @@ func (c *SpreadsheetsValuesClearCall) Header() http.Header {
func (c *SpreadsheetsValuesClearCall) doRequest(alt string) (*http.Response, error) {
reqHeaders := make(http.Header)
reqHeaders.Set("x-goog-api-client", "gl-go/1.11.0 gdcl/20190802")
for k, v := range c.header_ {
reqHeaders[k] = v
}
@@ -12219,6 +12474,7 @@ func (c *SpreadsheetsValuesGetCall) Header() http.Header {
func (c *SpreadsheetsValuesGetCall) doRequest(alt string) (*http.Response, error) {
reqHeaders := make(http.Header)
reqHeaders.Set("x-goog-api-client", "gl-go/1.11.0 gdcl/20190802")
for k, v := range c.header_ {
reqHeaders[k] = v
}
@@ -12456,6 +12712,7 @@ func (c *SpreadsheetsValuesUpdateCall) Header() http.Header {
func (c *SpreadsheetsValuesUpdateCall) doRequest(alt string) (*http.Response, error) {
reqHeaders := make(http.Header)
reqHeaders.Set("x-goog-api-client", "gl-go/1.11.0 gdcl/20190802")
for k, v := range c.header_ {
reqHeaders[k] = v
}