Bump version, new Python
Some checks are pending
Build and test GAM / build (Win64, build, 9, VC-WIN64A, windows-2022) (push) Waiting to run
Build and test GAM / build (aarch64, build, 3, linux-aarch64, [self-hosted linux arm64]) (push) Waiting to run
Build and test GAM / build (aarch64, build, 5, linux-aarch64, [self-hosted linux arm64], yes) (push) Waiting to run
Build and test GAM / build (aarch64, build, 7, darwin64-arm64, macos-14) (push) Waiting to run
Build and test GAM / build (x86_64, build, 1, linux-x86_64, ubuntu-22.04) (push) Waiting to run
Build and test GAM / build (x86_64, build, 2, linux-x86_64, ubuntu-20.04) (push) Waiting to run
Build and test GAM / build (x86_64, build, 4, linux-x86_64, ubuntu-20.04, yes) (push) Waiting to run
Build and test GAM / build (x86_64, build, 6, darwin64-x86_64, macos-13) (push) Waiting to run
Build and test GAM / build (x86_64, test, 10, ubuntu-22.04, 3.13) (push) Waiting to run
Build and test GAM / build (x86_64, test, 11, ubuntu-22.04, 3.9) (push) Waiting to run
Build and test GAM / build (x86_64, test, 12, ubuntu-22.04, 3.10) (push) Waiting to run
Build and test GAM / build (x86_64, test, 8, ubuntu-22.04, 3.11) (push) Waiting to run
Build and test GAM / merge (push) Blocked by required conditions
Build and test GAM / publish (push) Blocked by required conditions
CodeQL / Analyze (python) (push) Waiting to run
Check for Google Root CA Updates / check-apis (push) Waiting to run

This commit is contained in:
Ross Scroggs
2024-10-01 17:31:38 -07:00
parent 7c1ee239c7
commit 6076111d83
7 changed files with 46 additions and 14 deletions

View File

@@ -1,3 +1,7 @@
7.00.11
Updated to Python 3.12.7 where possible.
7.00.10
Handled the following error that occurs when `gam create user` is immediateley followed by `gam update user`.

View File

@@ -776,6 +776,14 @@
"deprecated": true,
"type": "boolean"
},
"canDisableInheritedPermissions": {
"description": "Output only. Whether a user can disable inherited permissions.",
"type": "boolean"
},
"canEnableInheritedPermissions": {
"description": "Output only. Whether a user can re-enable inherited permissions.",
"type": "boolean"
},
"canMoveChildrenOutOfDrive": {
"description": "Output only. Whether the current user can move children of this folder outside of the shared drive. This is false when the item is not a folder. Only populated for items in shared drives.",
"type": "boolean"
@@ -1297,6 +1305,10 @@
"description": "Output only. Whether the account associated with this permission has been deleted. This field only pertains to user and group permissions.",
"type": "boolean"
},
"inheritedPermissionsDisabled": {
"description": "Output only. When true, only organizers, owners and users with permissions added directly on the item can access it.",
"type": "boolean"
},
"view": {
"description": "Indicates the view for this permission. Only populated for permissions that belong to a view. 'published' is the only supported value.",
"type": "string"

View File

@@ -25,7 +25,7 @@ https://github.com/GAM-team/GAM/wiki
"""
__author__ = 'GAM Team <google-apps-manager@googlegroups.com>'
__version__ = '7.00.10'
__version__ = '7.00.11'
__license__ = 'Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0)'
#pylint: disable=wrong-import-position

View File

@@ -776,6 +776,14 @@
"deprecated": true,
"type": "boolean"
},
"canDisableInheritedPermissions": {
"description": "Output only. Whether a user can disable inherited permissions.",
"type": "boolean"
},
"canEnableInheritedPermissions": {
"description": "Output only. Whether a user can re-enable inherited permissions.",
"type": "boolean"
},
"canMoveChildrenOutOfDrive": {
"description": "Output only. Whether the current user can move children of this folder outside of the shared drive. This is false when the item is not a folder. Only populated for items in shared drives.",
"type": "boolean"
@@ -1297,6 +1305,10 @@
"description": "Output only. Whether the account associated with this permission has been deleted. This field only pertains to user and group permissions.",
"type": "boolean"
},
"inheritedPermissionsDisabled": {
"description": "Output only. When true, only organizers, owners and users with permissions added directly on the item can access it.",
"type": "boolean"
},
"view": {
"description": "Indicates the view for this permission. Only populated for permissions that belong to a view. 'published' is the only supported value.",
"type": "string"