-
Notifications
You must be signed in to change notification settings - Fork 4
GDataResource
robertj edited this page Sep 14, 2010
·
4 revisions
GDataResource cmdlets are used for provisioning and management of google apps calendar resources in powershell.
Parameters within [ ] are optional.
Creates a new Google Apps calendar resource.
Example:
New-GDataResource -Service $Service -ID resource -Type type -Description description
Returns a Google Apps calendar resource, -ID is optional and if not used all resources in the domain are returned.
Example:
Get-GDataResource -Service $Service [-ID resource]
Deletes a Google Apps calendar resource.
Example:
Remove-GDataResource -Service $Service -ID resource
Modifies a Google Apps calendar resource.
Example:
Set-GDataResource -Service $Service -ID resource -Type type -Description description