Skip to content

Commit

Permalink
Merge pull request #23 from tryAGI/bot/update-openapi_202412231519
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Dec 23, 2024
2 parents 97e0ae3 + 1b0daaf commit 4fc6e40
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 25 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,6 @@ public sealed partial class TenantResponseVariant2
[global::System.Text.Json.Serialization.JsonPropertyName("belongsToNodes")]
public global::System.Collections.Generic.IList<string>? BelongsToNodes { get; set; }

/// <summary>
/// Experimental. The data version of the tenant is a monotonically increasing number starting from 0 which is incremented each time a tenant's data is offloaded to cloud storage.<br/>
/// Default Value: 0<br/>
/// Example: 3
/// </summary>
/// <example>3</example>
[global::System.Text.Json.Serialization.JsonPropertyName("dataVersion")]
public int? DataVersion { get; set; }

/// <summary>
/// Additional properties that are not explicitly defined in the schema
/// </summary>
Expand All @@ -35,18 +26,11 @@ public sealed partial class TenantResponseVariant2
/// <param name="belongsToNodes">
/// The list of nodes that owns that tenant data.
/// </param>
/// <param name="dataVersion">
/// Experimental. The data version of the tenant is a monotonically increasing number starting from 0 which is incremented each time a tenant's data is offloaded to cloud storage.<br/>
/// Default Value: 0<br/>
/// Example: 3
/// </param>
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
public TenantResponseVariant2(
global::System.Collections.Generic.IList<string>? belongsToNodes,
int? dataVersion)
global::System.Collections.Generic.IList<string>? belongsToNodes)
{
this.BelongsToNodes = belongsToNodes;
this.DataVersion = dataVersion;
}

/// <summary>
Expand Down
9 changes: 1 addition & 8 deletions src/libs/Weaviate/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ info:
name: Weaviate
url: https://github.com/weaviate
email: [email protected]
version: '1.28.0'
version: '1.28.2'
servers:
- url: https:///v1
paths:
Expand Down Expand Up @@ -5176,13 +5176,6 @@ components:
items:
type: string
description: The list of nodes that owns that tenant data.
dataVersion:
minimum: 0
type: integer
description: Experimental. The data version of the tenant is a monotonically increasing number starting from 0 which is incremented each time a tenant's data is offloaded to cloud storage.
default: 0
example: 3
x-nullable: true
description: attributes representing a single tenant response within weaviate
parameters:
CommonAfterParameterQuery:
Expand Down

0 comments on commit 4fc6e40

Please sign in to comment.