-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathGcloudDatastreamObjectsStartBackfillOptions.Generated.cs
More file actions
30 lines (25 loc) · 1.08 KB
/
GcloudDatastreamObjectsStartBackfillOptions.Generated.cs
File metadata and controls
30 lines (25 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// <auto-generated>
// This file was generated by ModularPipelines.OptionsGenerator.
// Source: https://cloud.google.com/sdk/gcloud/reference/datastream/objects/start-backfill
// Do not edit this file manually.
// </auto-generated>
#nullable enable
using System.CodeDom.Compiler;
using System.Diagnostics.CodeAnalysis;
using ModularPipelines.Attributes;
using ModularPipelines.Google.Options;
namespace ModularPipelines.Google.Options;
/// <summary>
/// start a backfill job for a Stream object
/// </summary>
[GeneratedCode("ModularPipelines.OptionsGenerator", "")]
[ExcludeFromCodeCoverage]
[CliSubCommand("datastream", "objects", "start-backfill")]
public record GcloudDatastreamObjectsStartBackfillOptions : GcloudOptions
{
/// <summary>
/// A SQL-query WHERE clause selecting which data should be included, not including the "WHERE" keyword itself. e.g., t.key1 = 'value1' AND t.key2 = 'value2'. Only supported for SQL sources.
/// </summary>
[CliOption("--sql-where-clause", Format = OptionFormat.EqualsSeparated)]
public string? SqlWhereClause { get; set; }
}