Skip to content

Commit 39766e8

Browse files
amanda-tarafajskeet
authored andcommitted
feat: Generate Google.Apis.WorkspaceEvents.v1 version 1.73.0.4002
1 parent 670130e commit 39766e8

File tree

3 files changed

+138
-3
lines changed

3 files changed

+138
-3
lines changed

DiscoveryJson/workspaceevents.v1.json

Lines changed: 41 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -558,6 +558,11 @@
558558
"pattern": "^tasks/[^/]+$",
559559
"required": true,
560560
"type": "string"
561+
},
562+
"tenant": {
563+
"description": "Optional tenant, provided as a path parameter. Experimental, might still change for 1.0 release.",
564+
"location": "query",
565+
"type": "string"
561566
}
562567
},
563568
"path": "v1/{+name}",
@@ -580,6 +585,11 @@
580585
"pattern": "^tasks/[^/]+$",
581586
"required": true,
582587
"type": "string"
588+
},
589+
"tenant": {
590+
"description": "Optional tenant, provided as a path parameter. Experimental, might still change for 1.0 release.",
591+
"location": "query",
592+
"type": "string"
583593
}
584594
},
585595
"path": "v1/{+name}:subscribe",
@@ -611,6 +621,11 @@
611621
"pattern": "^tasks/[^/]+/pushNotificationConfigs$",
612622
"required": true,
613623
"type": "string"
624+
},
625+
"tenant": {
626+
"description": "Optional tenant, provided as a path parameter. Experimental, might still change for 1.0 release.",
627+
"location": "query",
628+
"type": "string"
614629
}
615630
},
616631
"path": "v1/{+parent}",
@@ -636,6 +651,11 @@
636651
"pattern": "^tasks/[^/]+/pushNotificationConfigs/[^/]+$",
637652
"required": true,
638653
"type": "string"
654+
},
655+
"tenant": {
656+
"description": "Optional tenant, provided as a path parameter. Experimental, might still change for 1.0 release.",
657+
"location": "query",
658+
"type": "string"
639659
}
640660
},
641661
"path": "v1/{+name}",
@@ -658,6 +678,11 @@
658678
"pattern": "^tasks/[^/]+/pushNotificationConfigs/[^/]+$",
659679
"required": true,
660680
"type": "string"
681+
},
682+
"tenant": {
683+
"description": "Optional tenant, provided as a path parameter. Experimental, might still change for 1.0 release.",
684+
"location": "query",
685+
"type": "string"
661686
}
662687
},
663688
"path": "v1/{+name}",
@@ -691,6 +716,11 @@
691716
"pattern": "^tasks/[^/]+$",
692717
"required": true,
693718
"type": "string"
719+
},
720+
"tenant": {
721+
"description": "Optional tenant, provided as a path parameter. Experimental, might still change for 1.0 release.",
722+
"location": "query",
723+
"type": "string"
694724
}
695725
},
696726
"path": "v1/{+parent}/pushNotificationConfigs",
@@ -703,7 +733,7 @@
703733
}
704734
}
705735
},
706-
"revision": "20251118",
736+
"revision": "20251216",
707737
"rootUrl": "https://workspaceevents.googleapis.com/",
708738
"schemas": {
709739
"Artifact": {
@@ -767,7 +797,12 @@
767797
},
768798
"CancelTaskRequest": {
769799
"id": "CancelTaskRequest",
770-
"properties": {},
800+
"properties": {
801+
"tenant": {
802+
"description": "Optional tenant, provided as a path parameter. Experimental, might still change for 1.0 release.",
803+
"type": "string"
804+
}
805+
},
771806
"type": "object"
772807
},
773808
"DataPart": {
@@ -1061,6 +1096,10 @@
10611096
},
10621097
"description": "Optional metadata for the request.",
10631098
"type": "object"
1099+
},
1100+
"tenant": {
1101+
"description": "Optional tenant, provided as a path parameter. Experimental, might still change for 1.0 release.",
1102+
"type": "string"
10641103
}
10651104
},
10661105
"type": "object"

Src/Generated/Google.Apis.WorkspaceEvents.v1/Google.Apis.WorkspaceEvents.v1.cs

Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1131,6 +1131,12 @@ public CreateRequest(Google.Apis.Services.IClientService service, Google.Apis.Wo
11311131
[Google.Apis.Util.RequestParameterAttribute("configId", Google.Apis.Util.RequestParameterType.Query)]
11321132
public virtual string ConfigId { get; set; }
11331133

1134+
/// <summary>
1135+
/// Optional tenant, provided as a path parameter. Experimental, might still change for 1.0 release.
1136+
/// </summary>
1137+
[Google.Apis.Util.RequestParameterAttribute("tenant", Google.Apis.Util.RequestParameterType.Query)]
1138+
public virtual string Tenant { get; set; }
1139+
11341140
/// <summary>Gets or sets the body of this request.</summary>
11351141
Google.Apis.WorkspaceEvents.v1.Data.TaskPushNotificationConfig Body { get; set; }
11361142

@@ -1166,6 +1172,14 @@ protected override void InitParameters()
11661172
DefaultValue = null,
11671173
Pattern = null,
11681174
});
1175+
RequestParameters.Add("tenant", new Google.Apis.Discovery.Parameter
1176+
{
1177+
Name = "tenant",
1178+
IsRequired = false,
1179+
ParameterType = "query",
1180+
DefaultValue = null,
1181+
Pattern = null,
1182+
});
11691183
}
11701184
}
11711185

@@ -1195,6 +1209,12 @@ public DeleteRequest(Google.Apis.Services.IClientService service, string name) :
11951209
[Google.Apis.Util.RequestParameterAttribute("name", Google.Apis.Util.RequestParameterType.Path)]
11961210
public virtual string Name { get; private set; }
11971211

1212+
/// <summary>
1213+
/// Optional tenant, provided as a path parameter. Experimental, might still change for 1.0 release.
1214+
/// </summary>
1215+
[Google.Apis.Util.RequestParameterAttribute("tenant", Google.Apis.Util.RequestParameterType.Query)]
1216+
public virtual string Tenant { get; set; }
1217+
11981218
/// <summary>Gets the method name.</summary>
11991219
public override string MethodName => "delete";
12001220

@@ -1216,6 +1236,14 @@ protected override void InitParameters()
12161236
DefaultValue = null,
12171237
Pattern = @"^tasks/[^/]+/pushNotificationConfigs/[^/]+$",
12181238
});
1239+
RequestParameters.Add("tenant", new Google.Apis.Discovery.Parameter
1240+
{
1241+
Name = "tenant",
1242+
IsRequired = false,
1243+
ParameterType = "query",
1244+
DefaultValue = null,
1245+
Pattern = null,
1246+
});
12191247
}
12201248
}
12211249

@@ -1245,6 +1273,12 @@ public GetRequest(Google.Apis.Services.IClientService service, string name) : ba
12451273
[Google.Apis.Util.RequestParameterAttribute("name", Google.Apis.Util.RequestParameterType.Path)]
12461274
public virtual string Name { get; private set; }
12471275

1276+
/// <summary>
1277+
/// Optional tenant, provided as a path parameter. Experimental, might still change for 1.0 release.
1278+
/// </summary>
1279+
[Google.Apis.Util.RequestParameterAttribute("tenant", Google.Apis.Util.RequestParameterType.Query)]
1280+
public virtual string Tenant { get; set; }
1281+
12481282
/// <summary>Gets the method name.</summary>
12491283
public override string MethodName => "get";
12501284

@@ -1266,6 +1300,14 @@ protected override void InitParameters()
12661300
DefaultValue = null,
12671301
Pattern = @"^tasks/[^/]+/pushNotificationConfigs/[^/]+$",
12681302
});
1303+
RequestParameters.Add("tenant", new Google.Apis.Discovery.Parameter
1304+
{
1305+
Name = "tenant",
1306+
IsRequired = false,
1307+
ParameterType = "query",
1308+
DefaultValue = null,
1309+
Pattern = null,
1310+
});
12691311
}
12701312
}
12711313

@@ -1305,6 +1347,12 @@ public ListRequest(Google.Apis.Services.IClientService service, string parent) :
13051347
[Google.Apis.Util.RequestParameterAttribute("pageToken", Google.Apis.Util.RequestParameterType.Query)]
13061348
public virtual string PageToken { get; set; }
13071349

1350+
/// <summary>
1351+
/// Optional tenant, provided as a path parameter. Experimental, might still change for 1.0 release.
1352+
/// </summary>
1353+
[Google.Apis.Util.RequestParameterAttribute("tenant", Google.Apis.Util.RequestParameterType.Query)]
1354+
public virtual string Tenant { get; set; }
1355+
13081356
/// <summary>Gets the method name.</summary>
13091357
public override string MethodName => "list";
13101358

@@ -1342,6 +1390,14 @@ protected override void InitParameters()
13421390
DefaultValue = null,
13431391
Pattern = null,
13441392
});
1393+
RequestParameters.Add("tenant", new Google.Apis.Discovery.Parameter
1394+
{
1395+
Name = "tenant",
1396+
IsRequired = false,
1397+
ParameterType = "query",
1398+
DefaultValue = null,
1399+
Pattern = null,
1400+
});
13451401
}
13461402
}
13471403
}
@@ -1428,6 +1484,12 @@ public GetRequest(Google.Apis.Services.IClientService service, string name) : ba
14281484
[Google.Apis.Util.RequestParameterAttribute("historyLength", Google.Apis.Util.RequestParameterType.Query)]
14291485
public virtual System.Nullable<int> HistoryLength { get; set; }
14301486

1487+
/// <summary>
1488+
/// Optional tenant, provided as a path parameter. Experimental, might still change for 1.0 release.
1489+
/// </summary>
1490+
[Google.Apis.Util.RequestParameterAttribute("tenant", Google.Apis.Util.RequestParameterType.Query)]
1491+
public virtual string Tenant { get; set; }
1492+
14311493
/// <summary>Gets the method name.</summary>
14321494
public override string MethodName => "get";
14331495

@@ -1457,6 +1519,14 @@ protected override void InitParameters()
14571519
DefaultValue = null,
14581520
Pattern = null,
14591521
});
1522+
RequestParameters.Add("tenant", new Google.Apis.Discovery.Parameter
1523+
{
1524+
Name = "tenant",
1525+
IsRequired = false,
1526+
ParameterType = "query",
1527+
DefaultValue = null,
1528+
Pattern = null,
1529+
});
14601530
}
14611531
}
14621532

@@ -1489,6 +1559,12 @@ public SubscribeRequest(Google.Apis.Services.IClientService service, string name
14891559
[Google.Apis.Util.RequestParameterAttribute("name", Google.Apis.Util.RequestParameterType.Path)]
14901560
public virtual string Name { get; private set; }
14911561

1562+
/// <summary>
1563+
/// Optional tenant, provided as a path parameter. Experimental, might still change for 1.0 release.
1564+
/// </summary>
1565+
[Google.Apis.Util.RequestParameterAttribute("tenant", Google.Apis.Util.RequestParameterType.Query)]
1566+
public virtual string Tenant { get; set; }
1567+
14921568
/// <summary>Gets the method name.</summary>
14931569
public override string MethodName => "subscribe";
14941570

@@ -1510,6 +1586,14 @@ protected override void InitParameters()
15101586
DefaultValue = null,
15111587
Pattern = @"^tasks/[^/]+$",
15121588
});
1589+
RequestParameters.Add("tenant", new Google.Apis.Discovery.Parameter
1590+
{
1591+
Name = "tenant",
1592+
IsRequired = false,
1593+
ParameterType = "query",
1594+
DefaultValue = null,
1595+
Pattern = null,
1596+
});
15131597
}
15141598
}
15151599
}
@@ -1567,6 +1651,12 @@ public class AuthenticationInfo : Google.Apis.Requests.IDirectResponseSchema
15671651

15681652
public class CancelTaskRequest : Google.Apis.Requests.IDirectResponseSchema
15691653
{
1654+
/// <summary>
1655+
/// Optional tenant, provided as a path parameter. Experimental, might still change for 1.0 release.
1656+
/// </summary>
1657+
[Newtonsoft.Json.JsonPropertyAttribute("tenant")]
1658+
public virtual string Tenant { get; set; }
1659+
15701660
/// <summary>The ETag of the item.</summary>
15711661
public virtual string ETag { get; set; }
15721662
}
@@ -1889,6 +1979,12 @@ public class SendMessageRequest : Google.Apis.Requests.IDirectResponseSchema
18891979
[Newtonsoft.Json.JsonPropertyAttribute("metadata")]
18901980
public virtual System.Collections.Generic.IDictionary<string, object> Metadata { get; set; }
18911981

1982+
/// <summary>
1983+
/// Optional tenant, provided as a path parameter. Experimental, might still change for 1.0 release.
1984+
/// </summary>
1985+
[Newtonsoft.Json.JsonPropertyAttribute("tenant")]
1986+
public virtual string Tenant { get; set; }
1987+
18921988
/// <summary>The ETag of the item.</summary>
18931989
public virtual string ETag { get; set; }
18941990
}

Src/Generated/Google.Apis.WorkspaceEvents.v1/Google.Apis.WorkspaceEvents.v1.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<!-- nupkg information -->
44
<PropertyGroup>
55
<Title>Google.Apis.WorkspaceEvents.v1 Client Library</Title>
6-
<Version>1.73.0.3974</Version>
6+
<Version>1.73.0.4002</Version>
77
<Authors>Google LLC</Authors>
88
<Copyright>Copyright 2025 Google LLC</Copyright>
99
<PackageTags>Google</PackageTags>

0 commit comments

Comments
 (0)