Skip to content

Commit 510f0f9

Browse files
feat(all): auto-regenerate discovery clients (#2276)
1 parent c18c15e commit 510f0f9

File tree

5 files changed

+172
-15
lines changed

5 files changed

+172
-15
lines changed

calendar/v3/calendar-api.json

+44-4
Original file line numberDiff line numberDiff line change
@@ -1138,7 +1138,7 @@
11381138
"type": "string"
11391139
},
11401140
"q": {
1141-
"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.",
1141+
"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.",
11421142
"location": "query",
11431143
"type": "string"
11441144
},
@@ -1205,7 +1205,7 @@
12051205
"supportsSubscription": true
12061206
},
12071207
"move": {
1208-
"description": "Moves an event to another calendar, i.e. changes an event's organizer.",
1208+
"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.",
12091209
"httpMethod": "POST",
12101210
"id": "calendar.events.move",
12111211
"parameterOrder": [
@@ -1541,7 +1541,7 @@
15411541
"type": "string"
15421542
},
15431543
"q": {
1544-
"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.",
1544+
"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.",
15451545
"location": "query",
15461546
"type": "string"
15471547
},
@@ -1735,7 +1735,7 @@
17351735
}
17361736
}
17371737
},
1738-
"revision": "20230907",
1738+
"revision": "20231116",
17391739
"rootUrl": "https://www.googleapis.com/",
17401740
"schemas": {
17411741
"Acl": {
@@ -2417,6 +2417,10 @@
24172417
},
24182418
"type": "object"
24192419
},
2420+
"focusTimeProperties": {
2421+
"$ref": "EventFocusTimeProperties",
2422+
"description": "Focus Time event data."
2423+
},
24202424
"gadget": {
24212425
"description": "A gadget that extends this event. Gadgets are deprecated; this structure is instead only used for returning birthday calendar metadata.",
24222426
"properties": {
@@ -2538,6 +2542,10 @@
25382542
"$ref": "EventDateTime",
25392543
"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."
25402544
},
2545+
"outOfOfficeProperties": {
2546+
"$ref": "EventOutOfOfficeProperties",
2547+
"description": "Out of office event data."
2548+
},
25412549
"privateCopy": {
25422550
"default": "false",
25432551
"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.",
@@ -2728,6 +2736,38 @@
27282736
},
27292737
"type": "object"
27302738
},
2739+
"EventFocusTimeProperties": {
2740+
"id": "EventFocusTimeProperties",
2741+
"properties": {
2742+
"autoDeclineMode": {
2743+
"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.",
2744+
"type": "string"
2745+
},
2746+
"chatStatus": {
2747+
"description": "The status to mark the user in Chat and related products. This can be available or doNotDisturb.",
2748+
"type": "string"
2749+
},
2750+
"declineMessage": {
2751+
"description": "Response message to set if an existing event or new invitation is automatically declined by Calendar.",
2752+
"type": "string"
2753+
}
2754+
},
2755+
"type": "object"
2756+
},
2757+
"EventOutOfOfficeProperties": {
2758+
"id": "EventOutOfOfficeProperties",
2759+
"properties": {
2760+
"autoDeclineMode": {
2761+
"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.",
2762+
"type": "string"
2763+
},
2764+
"declineMessage": {
2765+
"description": "Response message to set if an existing event or new invitation is automatically declined by Calendar.",
2766+
"type": "string"
2767+
}
2768+
},
2769+
"type": "object"
2770+
},
27312771
"EventReminder": {
27322772
"id": "EventReminder",
27332773
"properties": {

calendar/v3/calendar-gen.go

+123-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go.work.sum

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ cloud.google.com/go v0.110.6 h1:8uYAkj3YHTP/1iwReuHPxLSbdcyc+dSBbzFMrVwDR6Q=
55
cloud.google.com/go v0.110.7 h1:rJyC7nWRg2jWGZ4wSJ5nY65GTdYJkg0cd/uXb+ACI6o=
66
cloud.google.com/go v0.110.8 h1:tyNdfIxjzaWctIiLYOTalaLKZ17SI44SKFW26QbOhME=
77
cloud.google.com/go v0.110.9 h1:e7ITSqGFFk4rbz/JFIqZh3G4VEHguhAL4BQcFlWtU68=
8+
cloud.google.com/go v0.110.10 h1:LXy9GEO+timppncPIAZoOj3l58LIU9k+kn48AN7IO3Y=
89
golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs=
910
golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc=
1011
golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg=

mybusinessbusinessinformation/v1/mybusinessbusinessinformation-api.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,7 @@
612612
}
613613
}
614614
},
615-
"revision": "20230917",
615+
"revision": "20231127",
616616
"rootUrl": "https://mybusinessbusinessinformation.googleapis.com/",
617617
"schemas": {
618618
"AdWordsLocationExtensions": {
@@ -1064,7 +1064,7 @@
10641064
"type": "string"
10651065
},
10661066
"totalSize": {
1067-
"description": "The approximate number of Locations in the list irrespective of pagination.",
1067+
"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.",
10681068
"format": "int32",
10691069
"type": "integer"
10701070
}

mybusinessbusinessinformation/v1/mybusinessbusinessinformation-gen.go

+2-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)