Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(all): auto-regenerate discovery clients #2276

Merged
merged 1 commit into from
Nov 28, 2023
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
48 changes: 44 additions & 4 deletions calendar/v3/calendar-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1138,7 +1138,7 @@
"type": "string"
},
"q": {
"description": "Free text search terms to find events that match these terms in the following fields: summary, description, location, attendee's displayName, attendee's email. Optional.",
"description": "Free text search terms to find events that match these terms in the following fields:\n\n- summary \n- description \n- location \n- attendee's displayName \n- attendee's email \n- workingLocationProperties.officeLocation.buildingId \n- workingLocationProperties.officeLocation.deskId \n- workingLocationProperties.officeLocation.label \n- workingLocationProperties.customLocation.label \nThese search terms also match predefined keywords against all display title translations of working location, out-of-office, and focus-time events. For example, searching for \"Office\" or \"Bureau\" returns working location events of type officeLocation, whereas searching for \"Out of office\" or \"Abwesend\" returns out-of-office events. Optional.",
"location": "query",
"type": "string"
},
Expand Down Expand Up @@ -1205,7 +1205,7 @@
"supportsSubscription": true
},
"move": {
"description": "Moves an event to another calendar, i.e. changes an event's organizer.",
"description": "Moves an event to another calendar, i.e. changes an event's organizer. Note that only default events can be moved; outOfOffice, focusTime and workingLocation events cannot be moved.",
"httpMethod": "POST",
"id": "calendar.events.move",
"parameterOrder": [
Expand Down Expand Up @@ -1541,7 +1541,7 @@
"type": "string"
},
"q": {
"description": "Free text search terms to find events that match these terms in the following fields: summary, description, location, attendee's displayName, attendee's email. Optional.",
"description": "Free text search terms to find events that match these terms in the following fields:\n\n- summary \n- description \n- location \n- attendee's displayName \n- attendee's email \n- workingLocationProperties.officeLocation.buildingId \n- workingLocationProperties.officeLocation.deskId \n- workingLocationProperties.officeLocation.label \n- workingLocationProperties.customLocation.label \nThese search terms also match predefined keywords against all display title translations of working location, out-of-office, and focus-time events. For example, searching for \"Office\" or \"Bureau\" returns working location events of type officeLocation, whereas searching for \"Out of office\" or \"Abwesend\" returns out-of-office events. Optional.",
"location": "query",
"type": "string"
},
Expand Down Expand Up @@ -1735,7 +1735,7 @@
}
}
},
"revision": "20230907",
"revision": "20231116",
"rootUrl": "https://www.googleapis.com/",
"schemas": {
"Acl": {
Expand Down Expand Up @@ -2417,6 +2417,10 @@
},
"type": "object"
},
"focusTimeProperties": {
"$ref": "EventFocusTimeProperties",
"description": "Focus Time event data."
},
"gadget": {
"description": "A gadget that extends this event. Gadgets are deprecated; this structure is instead only used for returning birthday calendar metadata.",
"properties": {
Expand Down Expand Up @@ -2538,6 +2542,10 @@
"$ref": "EventDateTime",
"description": "For an instance of a recurring event, this is the time at which this event would start according to the recurrence data in the recurring event identified by recurringEventId. It uniquely identifies the instance within the recurring event series even if the instance was moved to a different time. Immutable."
},
"outOfOfficeProperties": {
"$ref": "EventOutOfOfficeProperties",
"description": "Out of office event data."
},
"privateCopy": {
"default": "false",
"description": "If set to True, Event propagation is disabled. Note that it is not the same thing as Private event properties. Optional. Immutable. The default is False.",
Expand Down Expand Up @@ -2728,6 +2736,38 @@
},
"type": "object"
},
"EventFocusTimeProperties": {
"id": "EventFocusTimeProperties",
"properties": {
"autoDeclineMode": {
"description": "Whether to decline meeting invitations which overlap Focus Time events. Valid values are declineNone, meaning that no meeting invitations are declined; declineAllConflictingInvitations, meaning that all conflicting meeting invitations that conflict with the event are declined; and declineOnlyNewConflictingInvitations, meaning that only new conflicting meeting invitations which arrive while the Focus Time event is present are to be declined.",
"type": "string"
},
"chatStatus": {
"description": "The status to mark the user in Chat and related products. This can be available or doNotDisturb.",
"type": "string"
},
"declineMessage": {
"description": "Response message to set if an existing event or new invitation is automatically declined by Calendar.",
"type": "string"
}
},
"type": "object"
},
"EventOutOfOfficeProperties": {
"id": "EventOutOfOfficeProperties",
"properties": {
"autoDeclineMode": {
"description": "Whether to decline meeting invitations which overlap Out of office events. Valid values are declineNone, meaning that no meeting invitations are declined; declineAllConflictingInvitations, meaning that all conflicting meeting invitations that conflict with the event are declined; and declineOnlyNewConflictingInvitations, meaning that only new conflicting meeting invitations which arrive while the Out of office event is present are to be declined.",
"type": "string"
},
"declineMessage": {
"description": "Response message to set if an existing event or new invitation is automatically declined by Calendar.",
"type": "string"
}
},
"type": "object"
},
"EventReminder": {
"id": "EventReminder",
"properties": {
Expand Down
131 changes: 123 additions & 8 deletions calendar/v3/calendar-gen.go

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

1 change: 1 addition & 0 deletions go.work.sum
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ cloud.google.com/go v0.110.6 h1:8uYAkj3YHTP/1iwReuHPxLSbdcyc+dSBbzFMrVwDR6Q=
cloud.google.com/go v0.110.7 h1:rJyC7nWRg2jWGZ4wSJ5nY65GTdYJkg0cd/uXb+ACI6o=
cloud.google.com/go v0.110.8 h1:tyNdfIxjzaWctIiLYOTalaLKZ17SI44SKFW26QbOhME=
cloud.google.com/go v0.110.9 h1:e7ITSqGFFk4rbz/JFIqZh3G4VEHguhAL4BQcFlWtU68=
cloud.google.com/go v0.110.10 h1:LXy9GEO+timppncPIAZoOj3l58LIU9k+kn48AN7IO3Y=
golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs=
golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc=
golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg=
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -612,7 +612,7 @@
}
}
},
"revision": "20230917",
"revision": "20231127",
"rootUrl": "https://mybusinessbusinessinformation.googleapis.com/",
"schemas": {
"AdWordsLocationExtensions": {
Expand Down Expand Up @@ -1064,7 +1064,7 @@
"type": "string"
},
"totalSize": {
"description": "The approximate number of Locations in the list irrespective of pagination.",
"description": "The approximate number of Locations in the list irrespective of pagination. This field will only be returned if `filter` is used as a query parameter.",
"format": "int32",
"type": "integer"
}
Expand Down

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