Skip to content

Commit

Permalink
fix: Fixed ZPA CBI Profile Controllert Attributes (#265)
Browse files Browse the repository at this point in the history
  • Loading branch information
willguibr authored Jul 2, 2024
1 parent 9985e5f commit adfc0b1
Show file tree
Hide file tree
Showing 3 changed files with 79 additions and 15 deletions.
29 changes: 28 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,38 @@
# Changelog

# 2.61.5 (July 2, 2024)
# 2.61.6 (July 2, 2024)

## Notes
- Golang: **v1.21**

### Bug Fixes

- [PR #265](https://github.com/zscaler/zscaler-sdk-go/pull/265) - Fixed ``cbiprofilecontroller`` package `message` attribute type from `bool` to `string`

### Enhancement
- [PR #265](https://github.com/zscaler/zscaler-sdk-go/pull/265) - Included new``cbiprofilecontroller`` attribute options:
- `watermark` - Admins can enable watermarking per isolation profile and choose to display the user ID, date and timestamp (in UTC), and a custom message
- `enabled`
- `showUserId`
- `showTimestamp`
- `showMessage`
- `message`
- `debugMode` - Enable to allow starting isolation sessions in debug mode to collect troubleshooting information.
- `filePassword` - Optional password to debug files when this mode is enabled.
- `forwardToZia` - Optional password to debug files when this mode is enabled.
- `organizationId` - Use the organization ID from the Company Profile section.
- `cloudName` - The cloud name on which the organization exists. i.e `zscalertwo`
- `pacFileUrl` - Enable to have the PAC file be configured on the Isolated browser to forward traffic via ZIA.
- `deepLink` - Deep Linking allows users to open applications from their local machine via the rendered deep link data on an isolated web page.
- `enabled`
- `applications` - If no specific applications are added here, then deep linking is applied to all of your applications.

# 2.61.5 (July 2, 2024)

## Notes
- Golang: **v1.21**

### Bug Fixes

- [PR #264](https://github.com/zscaler/zscaler-sdk-go/pull/264) - Fixed ZPA `policysetcontroller` and `policysetcontrollerv2` attributes `appConnectorGroups`, `serviceEdgeGroups`, `appServerGroups` by removing the `omitempty` tag

Expand Down
30 changes: 29 additions & 1 deletion docs/guides/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,38 @@ Track all Zscaler SDK GO releases. New resources, features, and bug fixes will b

---

``Last updated: v2.61.5``
``Last updated: v2.61.6``

---

# 2.61.6 (July 2, 2024)

## Notes
- Golang: **v1.21**

### Bug Fixes

- [PR #265](https://github.com/zscaler/zscaler-sdk-go/pull/265) - Fixed ``cbiprofilecontroller`` package `message` attribute type from `bool` to `string`

### Enhancement
- [PR #265](https://github.com/zscaler/zscaler-sdk-go/pull/265) - Included new``cbiprofilecontroller`` attribute options:
- `watermark` - Admins can enable watermarking per isolation profile and choose to display the user ID, date and timestamp (in UTC), and a custom message
- `enabled`
- `showUserId`
- `showTimestamp`
- `showMessage`
- `message`
- `debugMode` - Enable to allow starting isolation sessions in debug mode to collect troubleshooting information.
- `filePassword` - Optional password to debug files when this mode is enabled.
- `forwardToZia` - Optional password to debug files when this mode is enabled.
- `organizationId` - Use the organization ID from the Company Profile section.
- `cloudName` - The cloud name on which the organization exists. i.e `zscalertwo`
- `pacFileUrl` - Enable to have the PAC file be configured on the Isolated browser to forward traffic via ZIA.
- `deepLink` - Deep Linking allows users to open applications from their local machine via the rendered deep link data on an isolated web page.
- `enabled`
- `applications` - If no specific applications are added here, then deep linking is applied to all of your applications.


# 2.61.5 (July 2, 2024)

## Notes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,17 @@ type Banner struct {
}

type UserExperience struct {
SessionPersistence bool `json:"sessionPersistence,omitempty"`
BrowserInBrowser bool `json:"browserInBrowser,omitempty"`
PersistIsolationBar bool `json:"persistIsolationBar,omitempty"`
SessionPersistence bool `json:"sessionPersistence"`
BrowserInBrowser bool `json:"browserInBrowser"`
PersistIsolationBar bool `json:"persistIsolationBar"`
Translate bool `json:"translate"`
ZGPU bool `json:"zgpu,omitempty"`
ForwardToZia *ForwardToZia `json:"forwardToZia,omitempty"`
}

type ForwardToZia struct {
Enabled bool `json:"enabled,omitempty"`
OrganizationID bool `json:"organizationId,omitempty"`
Enabled bool `json:"enabled"`
OrganizationID string `json:"organizationId"`
CloudName string `json:"cloudName,omitempty"`
PacFileUrl string `json:"pacFileUrl,omitempty"`
}
Expand All @@ -68,15 +70,22 @@ type Watermark struct {
ShowMessage bool `json:"showMessage,omitempty"`
Message string `json:"message,omitempty"`
}

type SecurityControls struct {
DocumentViewer bool `json:"documentViewer,omitempty"`
AllowPrinting bool `json:"allowPrinting,omitempty"`
Watermark Watermark `json:"watermark,omitempty"`
FlattenedPdf bool `json:"flattenedPdf,omitempty"`
UploadDownload string `json:"uploadDownload,omitempty"`
RestrictKeystrokes bool `json:"restrictKeystrokes,omitempty"`
CopyPaste string `json:"copyPaste,omitempty"`
LocalRender bool `json:"localRender,omitempty"`
DocumentViewer bool `json:"documentViewer,omitempty"`
AllowPrinting bool `json:"allowPrinting,omitempty"`
Watermark *Watermark `json:"watermark,omitempty"`
FlattenedPdf bool `json:"flattenedPdf,omitempty"`
UploadDownload string `json:"uploadDownload,omitempty"`
RestrictKeystrokes bool `json:"restrictKeystrokes,omitempty"`
CopyPaste string `json:"copyPaste,omitempty"`
LocalRender bool `json:"localRender,omitempty"`
DeepLink *DeepLink `json:"deepLink,omitempty"`
}

type DeepLink struct {
Enabled bool `json:"enabled,omitempty"`
Applications []string `json:"applications,omitempty"`
}

type Regions struct {
Expand Down

0 comments on commit adfc0b1

Please sign in to comment.