Skip to content

Commit e593fda

Browse files
authored
fix: Added new AI specific attributes to ZIA URLAdvancedPolicySettings (#416)
1 parent 51b24ac commit e593fda

File tree

3 files changed

+59
-1
lines changed

3 files changed

+59
-1
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Changelog
22

3+
# 3.8.25 (March 2, 2026)
4+
5+
## Notes
6+
- Golang: **v1.24**
7+
8+
### Enhancements
9+
10+
- [PR #416](https://github.com/zscaler/zscaler-sdk-go/pull/416) Added new attributes to ZIA struct `URLAdvancedPolicySettings`
11+
- `EnableDeepSeekPrompt`
12+
- `EnableWriterPrompt`
13+
- `EnableGrokPrompt`
14+
- `EnableMistralAIPrompt`
15+
- `EnableClaudePrompt`
16+
- `EnableGrammarlyPrompt`
17+
- `ZveloDbLookupDisabled`
18+
- `EnableCreativeCommonsSearchResults`
19+
320
# 3.8.24 (February 27, 2026)
421

522
## Notes

docs/guides/release-notes.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,27 @@ Track all Zscaler SDK GO releases. New resources, features, and bug fixes will b
1313

1414
---
1515

16-
``Last updated: v3.8.24``
16+
``Last updated: v3.8.25``
1717

1818
---
1919

20+
# 3.8.25 (March 2, 2026)
21+
22+
## Notes
23+
- Golang: **v1.24**
24+
25+
### Enhancements
26+
27+
- [PR #416](https://github.com/zscaler/zscaler-sdk-go/pull/416) Added new attributes to ZIA struct `URLAdvancedPolicySettings`
28+
- `EnableDeepSeekPrompt`
29+
- `EnableWriterPrompt`
30+
- `EnableGrokPrompt`
31+
- `EnableMistralAIPrompt`
32+
- `EnableClaudePrompt`
33+
- `EnableGrammarlyPrompt`
34+
- `ZveloDbLookupDisabled`
35+
- `EnableCreativeCommonsSearchResults`
36+
2037
# 3.8.24 (February 27, 2026)
2138

2239
## Notes

zscaler/zia/services/urlfilteringpolicies/urlfilteringpolicies.go

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,24 @@ type URLAdvancedPolicySettings struct {
196196
// A Boolean value indicating if the use of generative AI prompts with Perplexity by users should be categorized and logged
197197
EnablePerPlexityPrompt bool `json:"enablePerPlexityPrompt,omitempty"`
198198

199+
// A Boolean value indicating if the use of generative AI prompts with DeepSeek by users should be categorized and logged
200+
EnableDeepSeekPrompt bool `json:"enableDeepSeekPrompt,omitempty"`
201+
202+
// A Boolean value indicating if the use of generative AI prompts with Writer by users should be categorized and logged
203+
EnableWriterPrompt bool `json:"enableWriterPrompt,omitempty"`
204+
205+
// A Boolean value indicating if the use of generative AI prompts with Grok by users should be categorized and logged
206+
EnableGrokPrompt bool `json:"enableGrokPrompt,omitempty"`
207+
208+
// A Boolean value indicating if the use of generative AI prompts with Mistral AI by users should be categorized and logged
209+
EnableMistralAIPrompt bool `json:"enableMistralAIPrompt,omitempty"`
210+
211+
// A Boolean value indicating if the use of generative AI prompts with Claude by users should be categorized and logged
212+
EnableClaudePrompt bool `json:"enableClaudePrompt,omitempty"`
213+
214+
// A Boolean value indicating if the use of generative AI prompts with Grammarly by users should be categorized and logged
215+
EnableGrammarlyPrompt bool `json:"enableGrammarlyPrompt,omitempty"`
216+
199217
// A Boolean value indicating whether access to Skype is blocked or not.
200218
BlockSkype bool `json:"blockSkype,omitempty"`
201219

@@ -211,6 +229,12 @@ type URLAdvancedPolicySettings struct {
211229
// list of applications for which the SafeSearch enforcement applies. You cannot modify this field when the enforceSafeSearch field is disabled.
212230
// Supported Values: "ANY", "DAILYMOTION", "BING", "GOOGLE", "YAHOO", "AOL", "FLICKR", "YOUTUBE","DUCKDUCKGO"
213231
SafeSearchApps []string `json:"safeSearchApps,omitempty"`
232+
233+
// A Boolean value indicating if Zvelo database lookup is disabled.
234+
ZveloDbLookupDisabled bool `json:"zveloDbLookupDisabled,omitempty"`
235+
236+
// A Boolean value indicating if Creative Commons search results are enabled.
237+
EnableCreativeCommonsSearchResults bool `json:"enableCreativeCommonsSearchResults,omitempty"`
214238
}
215239

216240
func Get(ctx context.Context, service *zscaler.Service, ruleID int) (*URLFilteringRule, error) {

0 commit comments

Comments
 (0)