diff --git a/src/libs/Vercel/Generated/Vercel.Models.CreateDeploymentCheckRunResponseVariant2SourceVariant1.g.cs b/src/libs/Vercel/Generated/Vercel.Models.CreateDeploymentCheckRunResponseVariant2SourceVariant1.g.cs index 23e1328b..773e2bb5 100644 --- a/src/libs/Vercel/Generated/Vercel.Models.CreateDeploymentCheckRunResponseVariant2SourceVariant1.g.cs +++ b/src/libs/Vercel/Generated/Vercel.Models.CreateDeploymentCheckRunResponseVariant2SourceVariant1.g.cs @@ -22,6 +22,20 @@ public sealed partial class CreateDeploymentCheckRunResponseVariant2SourceVarian [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Vercel.JsonConverters.CreateDeploymentCheckRunResponseVariant2SourceVariant1OriginJsonConverter))] public global::Vercel.CreateDeploymentCheckRunResponseVariant2SourceVariant1Origin Origin { get; set; } + /// + /// + /// + [global::System.Text.Json.Serialization.JsonPropertyName("invocationId")] + [global::System.Text.Json.Serialization.JsonRequired] + public required string InvocationId { get; set; } + + /// + /// + /// + [global::System.Text.Json.Serialization.JsonPropertyName("jobDefinitionId")] + [global::System.Text.Json.Serialization.JsonRequired] + public required string JobDefinitionId { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -31,17 +45,23 @@ public sealed partial class CreateDeploymentCheckRunResponseVariant2SourceVarian /// /// Initializes a new instance of the class. /// + /// + /// /// /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public CreateDeploymentCheckRunResponseVariant2SourceVariant1( + string invocationId, + string jobDefinitionId, global::Vercel.CreateDeploymentCheckRunResponseVariant2SourceVariant1SubKind subKind, global::Vercel.CreateDeploymentCheckRunResponseVariant2SourceVariant1Origin origin) { this.SubKind = subKind; this.Origin = origin; + this.InvocationId = invocationId ?? throw new global::System.ArgumentNullException(nameof(invocationId)); + this.JobDefinitionId = jobDefinitionId ?? throw new global::System.ArgumentNullException(nameof(jobDefinitionId)); } /// diff --git a/src/libs/Vercel/Generated/Vercel.Models.GetDeploymentCheckRunResponseVariant2SourceVariant1.g.cs b/src/libs/Vercel/Generated/Vercel.Models.GetDeploymentCheckRunResponseVariant2SourceVariant1.g.cs index cf6d5d69..b7895078 100644 --- a/src/libs/Vercel/Generated/Vercel.Models.GetDeploymentCheckRunResponseVariant2SourceVariant1.g.cs +++ b/src/libs/Vercel/Generated/Vercel.Models.GetDeploymentCheckRunResponseVariant2SourceVariant1.g.cs @@ -22,6 +22,20 @@ public sealed partial class GetDeploymentCheckRunResponseVariant2SourceVariant1 [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Vercel.JsonConverters.GetDeploymentCheckRunResponseVariant2SourceVariant1OriginJsonConverter))] public global::Vercel.GetDeploymentCheckRunResponseVariant2SourceVariant1Origin Origin { get; set; } + /// + /// + /// + [global::System.Text.Json.Serialization.JsonPropertyName("invocationId")] + [global::System.Text.Json.Serialization.JsonRequired] + public required string InvocationId { get; set; } + + /// + /// + /// + [global::System.Text.Json.Serialization.JsonPropertyName("jobDefinitionId")] + [global::System.Text.Json.Serialization.JsonRequired] + public required string JobDefinitionId { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -31,17 +45,23 @@ public sealed partial class GetDeploymentCheckRunResponseVariant2SourceVariant1 /// /// Initializes a new instance of the class. /// + /// + /// /// /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public GetDeploymentCheckRunResponseVariant2SourceVariant1( + string invocationId, + string jobDefinitionId, global::Vercel.GetDeploymentCheckRunResponseVariant2SourceVariant1SubKind subKind, global::Vercel.GetDeploymentCheckRunResponseVariant2SourceVariant1Origin origin) { this.SubKind = subKind; this.Origin = origin; + this.InvocationId = invocationId ?? throw new global::System.ArgumentNullException(nameof(invocationId)); + this.JobDefinitionId = jobDefinitionId ?? throw new global::System.ArgumentNullException(nameof(jobDefinitionId)); } /// diff --git a/src/libs/Vercel/Generated/Vercel.Models.ListCheckRunsResponseRunVariant2SourceVariant1.g.cs b/src/libs/Vercel/Generated/Vercel.Models.ListCheckRunsResponseRunVariant2SourceVariant1.g.cs index 461116a2..e075f0a5 100644 --- a/src/libs/Vercel/Generated/Vercel.Models.ListCheckRunsResponseRunVariant2SourceVariant1.g.cs +++ b/src/libs/Vercel/Generated/Vercel.Models.ListCheckRunsResponseRunVariant2SourceVariant1.g.cs @@ -22,6 +22,20 @@ public sealed partial class ListCheckRunsResponseRunVariant2SourceVariant1 [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Vercel.JsonConverters.ListCheckRunsResponseRunVariant2SourceVariant1OriginJsonConverter))] public global::Vercel.ListCheckRunsResponseRunVariant2SourceVariant1Origin Origin { get; set; } + /// + /// + /// + [global::System.Text.Json.Serialization.JsonPropertyName("invocationId")] + [global::System.Text.Json.Serialization.JsonRequired] + public required string InvocationId { get; set; } + + /// + /// + /// + [global::System.Text.Json.Serialization.JsonPropertyName("jobDefinitionId")] + [global::System.Text.Json.Serialization.JsonRequired] + public required string JobDefinitionId { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -31,17 +45,23 @@ public sealed partial class ListCheckRunsResponseRunVariant2SourceVariant1 /// /// Initializes a new instance of the class. /// + /// + /// /// /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public ListCheckRunsResponseRunVariant2SourceVariant1( + string invocationId, + string jobDefinitionId, global::Vercel.ListCheckRunsResponseRunVariant2SourceVariant1SubKind subKind, global::Vercel.ListCheckRunsResponseRunVariant2SourceVariant1Origin origin) { this.SubKind = subKind; this.Origin = origin; + this.InvocationId = invocationId ?? throw new global::System.ArgumentNullException(nameof(invocationId)); + this.JobDefinitionId = jobDefinitionId ?? throw new global::System.ArgumentNullException(nameof(jobDefinitionId)); } /// diff --git a/src/libs/Vercel/Generated/Vercel.Models.ListDeploymentCheckRunsResponseRunVariant2SourceVariant1.g.cs b/src/libs/Vercel/Generated/Vercel.Models.ListDeploymentCheckRunsResponseRunVariant2SourceVariant1.g.cs index 807fb997..ed6ddf5e 100644 --- a/src/libs/Vercel/Generated/Vercel.Models.ListDeploymentCheckRunsResponseRunVariant2SourceVariant1.g.cs +++ b/src/libs/Vercel/Generated/Vercel.Models.ListDeploymentCheckRunsResponseRunVariant2SourceVariant1.g.cs @@ -22,6 +22,20 @@ public sealed partial class ListDeploymentCheckRunsResponseRunVariant2SourceVari [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Vercel.JsonConverters.ListDeploymentCheckRunsResponseRunVariant2SourceVariant1OriginJsonConverter))] public global::Vercel.ListDeploymentCheckRunsResponseRunVariant2SourceVariant1Origin Origin { get; set; } + /// + /// + /// + [global::System.Text.Json.Serialization.JsonPropertyName("invocationId")] + [global::System.Text.Json.Serialization.JsonRequired] + public required string InvocationId { get; set; } + + /// + /// + /// + [global::System.Text.Json.Serialization.JsonPropertyName("jobDefinitionId")] + [global::System.Text.Json.Serialization.JsonRequired] + public required string JobDefinitionId { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -31,17 +45,23 @@ public sealed partial class ListDeploymentCheckRunsResponseRunVariant2SourceVari /// /// Initializes a new instance of the class. /// + /// + /// /// /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public ListDeploymentCheckRunsResponseRunVariant2SourceVariant1( + string invocationId, + string jobDefinitionId, global::Vercel.ListDeploymentCheckRunsResponseRunVariant2SourceVariant1SubKind subKind, global::Vercel.ListDeploymentCheckRunsResponseRunVariant2SourceVariant1Origin origin) { this.SubKind = subKind; this.Origin = origin; + this.InvocationId = invocationId ?? throw new global::System.ArgumentNullException(nameof(invocationId)); + this.JobDefinitionId = jobDefinitionId ?? throw new global::System.ArgumentNullException(nameof(jobDefinitionId)); } /// diff --git a/src/libs/Vercel/Generated/Vercel.Models.UpdateDeploymentCheckRunResponseVariant2SourceVariant1.g.cs b/src/libs/Vercel/Generated/Vercel.Models.UpdateDeploymentCheckRunResponseVariant2SourceVariant1.g.cs index a8b5a57b..6033eaad 100644 --- a/src/libs/Vercel/Generated/Vercel.Models.UpdateDeploymentCheckRunResponseVariant2SourceVariant1.g.cs +++ b/src/libs/Vercel/Generated/Vercel.Models.UpdateDeploymentCheckRunResponseVariant2SourceVariant1.g.cs @@ -22,6 +22,20 @@ public sealed partial class UpdateDeploymentCheckRunResponseVariant2SourceVarian [global::System.Text.Json.Serialization.JsonConverter(typeof(global::Vercel.JsonConverters.UpdateDeploymentCheckRunResponseVariant2SourceVariant1OriginJsonConverter))] public global::Vercel.UpdateDeploymentCheckRunResponseVariant2SourceVariant1Origin Origin { get; set; } + /// + /// + /// + [global::System.Text.Json.Serialization.JsonPropertyName("invocationId")] + [global::System.Text.Json.Serialization.JsonRequired] + public required string InvocationId { get; set; } + + /// + /// + /// + [global::System.Text.Json.Serialization.JsonPropertyName("jobDefinitionId")] + [global::System.Text.Json.Serialization.JsonRequired] + public required string JobDefinitionId { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -31,17 +45,23 @@ public sealed partial class UpdateDeploymentCheckRunResponseVariant2SourceVarian /// /// Initializes a new instance of the class. /// + /// + /// /// /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public UpdateDeploymentCheckRunResponseVariant2SourceVariant1( + string invocationId, + string jobDefinitionId, global::Vercel.UpdateDeploymentCheckRunResponseVariant2SourceVariant1SubKind subKind, global::Vercel.UpdateDeploymentCheckRunResponseVariant2SourceVariant1Origin origin) { this.SubKind = subKind; this.Origin = origin; + this.InvocationId = invocationId ?? throw new global::System.ArgumentNullException(nameof(invocationId)); + this.JobDefinitionId = jobDefinitionId ?? throw new global::System.ArgumentNullException(nameof(jobDefinitionId)); } /// diff --git a/src/libs/Vercel/openapi.yaml b/src/libs/Vercel/openapi.yaml index fd608c65..e2b99c6a 100644 --- a/src/libs/Vercel/openapi.yaml +++ b/src/libs/Vercel/openapi.yaml @@ -7686,9 +7686,17 @@ "enum": [ "config" ] + }, + "invocationId": { + "type": "string" + }, + "jobDefinitionId": { + "type": "string" } }, "required": [ + "invocationId", + "jobDefinitionId", "origin", "subKind" ], @@ -8123,9 +8131,17 @@ "enum": [ "config" ] + }, + "invocationId": { + "type": "string" + }, + "jobDefinitionId": { + "type": "string" } }, "required": [ + "invocationId", + "jobDefinitionId", "origin", "subKind" ], @@ -8544,9 +8560,17 @@ "enum": [ "config" ] + }, + "invocationId": { + "type": "string" + }, + "jobDefinitionId": { + "type": "string" } }, "required": [ + "invocationId", + "jobDefinitionId", "origin", "subKind" ], @@ -8979,9 +9003,17 @@ "enum": [ "config" ] + }, + "invocationId": { + "type": "string" + }, + "jobDefinitionId": { + "type": "string" } }, "required": [ + "invocationId", + "jobDefinitionId", "origin", "subKind" ], @@ -9406,9 +9438,17 @@ "enum": [ "config" ] + }, + "invocationId": { + "type": "string" + }, + "jobDefinitionId": { + "type": "string" } }, "required": [ + "invocationId", + "jobDefinitionId", "origin", "subKind" ],