Skip to content

Commit cc17859

Browse files
committed
adds 2 new cmdlets
1 parent 0acdace commit cc17859

7 files changed

+500
-2
lines changed

docs/en-US/New-KustoColumnMapping.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ schema: 2.0.0
99

1010
## SYNOPSIS
1111

12-
{{ Fill in the Synopsis }}
12+
Creates a `ColumnMapping` object.
1313

1414
## SYNTAX
1515

docs/en-US/Set-KustoBatchingPolicy.md

Lines changed: 192 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,192 @@
1+
---
2+
external help file: PowerShellKusto.dll-Help.xml
3+
Module Name: PowerShellKusto
4+
online version: https://github.com/santisq/PowerShellKusto/blob/main/docs/en-US/Set-KustoBatchingPolicy.md
5+
schema: 2.0.0
6+
---
7+
8+
# Set-KustoBatchingPolicy
9+
10+
## SYNOPSIS
11+
12+
{{ Fill in the Synopsis }}
13+
14+
## SYNTAX
15+
16+
```powershell
17+
Set-KustoBatchingPolicy
18+
[-Table] <String>
19+
[-Database <String>]
20+
[-MaximumBatchingTimeSpan <TimeSpan>]
21+
[-MaximumNumberOfItems <Int32>]
22+
[-MaximumRawDataSizeMB <Int32>]
23+
[[-OutputType] <OutputType>]
24+
[-RequestProperties <ClientRequestProperties>]
25+
[<CommonParameters>]
26+
```
27+
28+
## DESCRIPTION
29+
30+
{{ Fill in the Description }}
31+
32+
## EXAMPLES
33+
34+
### Example 1
35+
36+
```powershell
37+
PS C:\> {{ Add example code here }}
38+
```
39+
40+
{{ Add example description here }}
41+
42+
## PARAMETERS
43+
44+
### -Database
45+
46+
{{ Fill Database Description }}
47+
48+
```yaml
49+
Type: String
50+
Parameter Sets: (All)
51+
Aliases:
52+
53+
Required: False
54+
Position: Named
55+
Default value: None
56+
Accept pipeline input: False
57+
Accept wildcard characters: False
58+
```
59+
60+
### -MaximumBatchingTimeSpan
61+
62+
{{ Fill MaximumBatchingTimeSpan Description }}
63+
64+
```yaml
65+
Type: TimeSpan
66+
Parameter Sets: (All)
67+
Aliases:
68+
69+
Required: False
70+
Position: Named
71+
Default value: None
72+
Accept pipeline input: False
73+
Accept wildcard characters: False
74+
```
75+
76+
### -MaximumNumberOfItems
77+
78+
{{ Fill MaximumNumberOfItems Description }}
79+
80+
```yaml
81+
Type: Int32
82+
Parameter Sets: (All)
83+
Aliases:
84+
85+
Required: False
86+
Position: Named
87+
Default value: None
88+
Accept pipeline input: False
89+
Accept wildcard characters: False
90+
```
91+
92+
### -MaximumRawDataSizeMB
93+
94+
{{ Fill MaximumRawDataSizeMB Description }}
95+
96+
```yaml
97+
Type: Int32
98+
Parameter Sets: (All)
99+
Aliases:
100+
101+
Required: False
102+
Position: Named
103+
Default value: None
104+
Accept pipeline input: False
105+
Accept wildcard characters: False
106+
```
107+
108+
### -OutputType
109+
110+
{{ Fill OutputType Description }}
111+
112+
```yaml
113+
Type: OutputType
114+
Parameter Sets: (All)
115+
Aliases:
116+
Accepted values: PSObject, Json, Csv, DataTable, Html
117+
118+
Required: False
119+
Position: 1
120+
Default value: None
121+
Accept pipeline input: False
122+
Accept wildcard characters: False
123+
```
124+
125+
### -RequestProperties
126+
127+
{{ Fill RequestProperties Description }}
128+
129+
```yaml
130+
Type: ClientRequestProperties
131+
Parameter Sets: (All)
132+
Aliases:
133+
134+
Required: False
135+
Position: Named
136+
Default value: None
137+
Accept pipeline input: False
138+
Accept wildcard characters: False
139+
```
140+
141+
### -Table
142+
143+
{{ Fill Table Description }}
144+
145+
```yaml
146+
Type: String
147+
Parameter Sets: (All)
148+
Aliases:
149+
150+
Required: True
151+
Position: 0
152+
Default value: None
153+
Accept pipeline input: False
154+
Accept wildcard characters: False
155+
```
156+
157+
### -ProgressAction
158+
159+
{{ Fill ProgressAction Description }}
160+
161+
```yaml
162+
Type: ActionPreference
163+
Parameter Sets: (All)
164+
Aliases: proga
165+
166+
Required: False
167+
Position: Named
168+
Default value: None
169+
Accept pipeline input: False
170+
Accept wildcard characters: False
171+
```
172+
173+
### CommonParameters
174+
175+
This cmdlet supports the common parameters.
176+
For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
177+
178+
## INPUTS
179+
180+
### None
181+
182+
## OUTPUTS
183+
184+
### System.Management.Automation.PSObject
185+
186+
### System.String
187+
188+
### System.Data.DataTable
189+
190+
## NOTES
191+
192+
## RELATED LINKS
Lines changed: 192 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,192 @@
1+
---
2+
external help file: PowerShellKusto.dll-Help.xml
3+
Module Name: PowerShellKusto
4+
online version: https://github.com/santisq/PowerShellKusto/blob/main/docs/en-US/Set-KustoIngestionMapping.md
5+
schema: 2.0.0
6+
---
7+
8+
# Set-KustoIngestionMapping
9+
10+
## SYNOPSIS
11+
12+
{{ Fill in the Synopsis }}
13+
14+
## SYNTAX
15+
16+
```powershell
17+
Set-KustoIngestionMapping
18+
[-MappingName] <String>
19+
[-Table] <String>
20+
[[-Database] <String>]
21+
-IngestionMapping <IngestionMapping>
22+
[-RemoveOldestIfRequired]
23+
[[-OutputType] <OutputType>]
24+
[-RequestProperties <ClientRequestProperties>]
25+
[<CommonParameters>]
26+
```
27+
28+
## DESCRIPTION
29+
30+
{{ Fill in the Description }}
31+
32+
## EXAMPLES
33+
34+
### Example 1
35+
36+
```powershell
37+
PS C:\> {{ Add example code here }}
38+
```
39+
40+
{{ Add example description here }}
41+
42+
## PARAMETERS
43+
44+
### -Database
45+
46+
{{ Fill Database Description }}
47+
48+
```yaml
49+
Type: String
50+
Parameter Sets: (All)
51+
Aliases:
52+
53+
Required: False
54+
Position: 2
55+
Default value: None
56+
Accept pipeline input: False
57+
Accept wildcard characters: False
58+
```
59+
60+
### -IngestionMapping
61+
62+
{{ Fill IngestionMapping Description }}
63+
64+
```yaml
65+
Type: IngestionMapping
66+
Parameter Sets: (All)
67+
Aliases:
68+
69+
Required: True
70+
Position: Named
71+
Default value: None
72+
Accept pipeline input: False
73+
Accept wildcard characters: False
74+
```
75+
76+
### -MappingName
77+
78+
{{ Fill MappingName Description }}
79+
80+
```yaml
81+
Type: String
82+
Parameter Sets: (All)
83+
Aliases:
84+
85+
Required: True
86+
Position: 0
87+
Default value: None
88+
Accept pipeline input: False
89+
Accept wildcard characters: False
90+
```
91+
92+
### -OutputType
93+
94+
{{ Fill OutputType Description }}
95+
96+
```yaml
97+
Type: OutputType
98+
Parameter Sets: (All)
99+
Aliases:
100+
Accepted values: PSObject, Json, Csv, DataTable, Html
101+
102+
Required: False
103+
Position: 1
104+
Default value: None
105+
Accept pipeline input: False
106+
Accept wildcard characters: False
107+
```
108+
109+
### -RemoveOldestIfRequired
110+
111+
{{ Fill RemoveOldestIfRequired Description }}
112+
113+
```yaml
114+
Type: SwitchParameter
115+
Parameter Sets: (All)
116+
Aliases:
117+
118+
Required: False
119+
Position: Named
120+
Default value: None
121+
Accept pipeline input: False
122+
Accept wildcard characters: False
123+
```
124+
125+
### -RequestProperties
126+
127+
{{ Fill RequestProperties Description }}
128+
129+
```yaml
130+
Type: ClientRequestProperties
131+
Parameter Sets: (All)
132+
Aliases:
133+
134+
Required: False
135+
Position: Named
136+
Default value: None
137+
Accept pipeline input: False
138+
Accept wildcard characters: False
139+
```
140+
141+
### -Table
142+
143+
{{ Fill Table Description }}
144+
145+
```yaml
146+
Type: String
147+
Parameter Sets: (All)
148+
Aliases:
149+
150+
Required: True
151+
Position: 1
152+
Default value: None
153+
Accept pipeline input: False
154+
Accept wildcard characters: False
155+
```
156+
157+
### -ProgressAction
158+
159+
{{ Fill ProgressAction Description }}
160+
161+
```yaml
162+
Type: ActionPreference
163+
Parameter Sets: (All)
164+
Aliases: proga
165+
166+
Required: False
167+
Position: Named
168+
Default value: None
169+
Accept pipeline input: False
170+
Accept wildcard characters: False
171+
```
172+
173+
### CommonParameters
174+
175+
This cmdlet supports the common parameters.
176+
For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
177+
178+
## INPUTS
179+
180+
### None
181+
182+
## OUTPUTS
183+
184+
### System.Management.Automation.PSObject
185+
186+
### System.String
187+
188+
### System.Data.DataTable
189+
190+
## NOTES
191+
192+
## RELATED LINKS

0 commit comments

Comments
 (0)