custom/SpecialHandlerToRemoveDefaultValue.cs

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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
namespace Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance.Models.Api20221001Preview
{
    using static Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance.Runtime.Extensions;
/// <summary>The GPU resource.</summary>
    public partial class GpuResource
    {
        partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance.Runtime.Json.JsonObject container, ref bool returnNow)
        {
            if(string.Empty.Equals(this._sku))
            {
                this._sku = null;
            }
        }
    }
 
    /// <summary>The resource requests.</summary>
    public partial class ResourceRequests
    {
        partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance.Runtime.Json.JsonObject container, ref bool returnNow)
        {
            if(this._gpu?.Count == 0 || this._gpu?.Sku == null)
            {
                this._gpu = null;
            }
        }
 
    }
 
    /// <summary>The resource limits.</summary>
    public partial class ResourceLimits
    {
        partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance.Runtime.Json.JsonObject container, ref bool returnNow)
        {
            if(this._gpu?.Count == 0 || this._gpu?.Sku == null)
            {
                this._gpu = null;
            }
            if(this._memoryInGb == 0)
            {
                this._memoryInGb = null;
            }
            if(this._cpu == 0)
            {
                this._cpu = null;
            }
        }
    }
 
    /// <summary>The container Http Get settings, for liveness or readiness probe</summary>
    public partial class ContainerHttpGet
    {
        partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance.Runtime.Json.JsonObject container, ref bool returnNow)
        {
            if(string.Empty.Equals(this._httpHeader[0]?.Name)|| string.Empty.Equals(this._httpHeader[0]?.Value))
            {
                this._httpHeader = null;
            }
 
            if(string.Empty.Equals(this._scheme))
            {
                this._scheme = null;
            }
 
            if(string.Empty.Equals(this._path))
            {
                this._path = null;
            }
        }
    }
     
    /// <summary>The container probe, for liveness or readiness</summary>
    public partial class ContainerProbe
    {
        partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance.Runtime.Json.JsonObject container, ref bool returnNow)
        {
            if(this._httpGet?.Port == 0)
            {
                this._httpGet = null;
            }
            if(this._initialDelaySecond == 0)
            {
                this._initialDelaySecond = null;
            }
            if(this._periodSecond == 0)
            {
                this._periodSecond = null;
            }
            if(this._failureThreshold == 0)
            {
                this._failureThreshold = null;
            }
            if(this._successThreshold == 0)
            {
                this._successThreshold = null;
            }
            if(this._timeoutSecond == 0)
            {
                this._timeoutSecond = null;
            }
        }
 
    }
 
    /// <summary>The container instance properties.</summary>
    public partial class ContainerProperties
    {
        partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance.Runtime.Json.JsonObject container, ref bool returnNow)
        {
            if(this._readinessProbe?.ExecCommand?.Length == 0 && this._readinessProbe?.HttpGetPort == null)
            {
                this._readinessProbe = null;
            }
            if(this._livenessProbe?.ExecCommand?.Length == 0 && this._livenessProbe?.HttpGetPort == null)
            {
                this._livenessProbe = null;
            }
        }
         
    }
 
    /// <summary>The environment variable to set within the container instance.</summary>
    public partial class EnvironmentVariable
    {
        partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance.Runtime.Json.JsonObject container, ref bool returnNow)
        {
            if(string.Empty.Equals(this._value))
            {
                this._value = null;
            }
             
            if(string.Empty.Equals(this._secureValue))
            {
                this._secureValue = null;
            }
        }
    }
 
    /// <summary>The port exposed on the container instance.</summary>
    public partial class ContainerPort{
        partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance.Runtime.Json.JsonObject container, ref bool returnNow)
        {
            if(string.Empty.Equals(this._protocol))
            {
                this._protocol = null;
            }
        }
   
    }
 
 
    /// <summary>The port exposed on the container group.</summary>
    public partial class Port
    {
         partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance.Runtime.Json.JsonObject container, ref bool returnNow)
        {
            if(string.Empty.Equals(this._protocol))
            {
                this._protocol = null;
            }
        }
    }
 
     
    /// <summary>Image registry credential.</summary>
    public partial class ImageRegistryCredential
    {
        partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance.Runtime.Json.JsonObject container, ref bool returnNow)
        {
            if(string.Empty.Equals(this._password))
            {
                this._password = null;
            }
        }
    }
    /// <summary>The init container definition properties.</summary>
    public partial class InitContainerPropertiesDefinition
    {
         partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance.Runtime.Json.JsonObject container, ref bool returnNow)
        {
 
            if(string.Empty.Equals(Image))
            {
                this._image = null;
            }
        }
    }
 
    /// <summary>The init container definition.</summary>
    public partial class InitContainerDefinition
    {
         partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance.Runtime.Json.JsonObject container, ref bool returnNow)
        {
            if(this._property?.Image ==null && this.VolumeMount?.Length == 0 && this.EnvironmentVariable?.Length == 0 && this.Command?.Length == 0)
            {
                this._property = null;
            }
        }
    }
 
    /// <summary>
    /// The properties of the Azure File volume. Azure File shares are mounted as volumes.
    /// </summary>
    public partial class AzureFileVolume
    {
        partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance.Runtime.Json.JsonObject container, ref bool returnNow)
        {
            if(string.Empty.Equals(this._storageAccountKey))
            {
                this._storageAccountKey = null;
            }
        }
        
    }
 
     /// <summary>Represents a volume that is populated with the contents of a git repository</summary>
    public partial class GitRepoVolume
    {
        partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance.Runtime.Json.JsonObject container, ref bool returnNow)
        {
             if(string.Empty.Equals(this._revision))
            {
                this._revision = null;
            }
            if(string.Empty.Equals(this._directory))
            {
                this._directory = null;
 
            }
        }
    }
 
    /// <summary>The properties of the volume.</summary>
    public partial class Volume
    {
        partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance.Runtime.Json.JsonObject container, ref bool returnNow)
        {
            if(string.Empty.Equals(this._azureFile?.ShareName) || string.Empty.Equals(this._azureFile?.StorageAccountName))
            {
                this._azureFile = null;
            }
            if(string.Empty.Equals(this._gitRepo?.Repository))
            {
                this._gitRepo = null;
            }
             
        }
 
        partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance.Runtime.Json.JsonObject container)
        {
            if (this._emptyDir != null && this._emptyDir.Count == 0) {
                container.Add("emptyDir", new Microsoft.Azure.PowerShell.Cmdlets.ContainerInstance.Runtime.Json.JsonObject());
            }
        }
 
     
    }
}