You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13Lines changed: 13 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -169,6 +169,19 @@ var response = await pvClient.GetPvPowerSite("ba75-e17a-7374-95ed");
169
169
-`PutPvPowerSite`: Overwrites an existing PV power site specifications.
170
170
-`DeletePvPowerSite`: Deletes an existing PV power site.
171
171
172
+
## Optional: Suppressing SDK Update Checks
173
+
To suppress the SDK's automatic update check, set the SUPPRESS_SDK_UPDATE_CHECK environment variable to true:
174
+
175
+
Windows PowerShell:
176
+
```powershell
177
+
$env:SUPPRESS_SDK_UPDATE_CHECK = "true"
178
+
```
179
+
180
+
Linux/macOS:
181
+
```bash
182
+
export SUPPRESS_SDK_UPDATE_CHECK="true"
183
+
```
184
+
When this flag is set, the SDK will skip checking for new versions during runtime. This is particularly useful automated environments where update messages are not necessary.
172
185
173
186
## Contributing
174
187
We welcome contributions to this SDK! If you'd like to contribute, please submit a Pull Request or open an issue with any suggestions or bug reports.
0 commit comments