Skip to content
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.

New-GDataResourceService

Returns a ResourceService object.

Example:


$ResourceService = new-GdataResourceService -AdminPassword Password -AdminUserName [email protected]

New-GDataResource

Creates a new Google Apps calendar resource.

Example:


New-GDataResource -ResourceService $ResourceService -ID resource -Type type -Description description

Get-GDataResource

Returns a Google Apps calendar resource, -ID is optional and if not used all resources in the domain are returned.

Example:


Get-GDataResource -ResourceService $ResourceService [-ID resource]

Remove-GDataResource

Deletes a Google Apps calendar resource.

Example:


Remove-GDataResource -ResourceService $ResourceService -ID resource

Set-GDataResource

Modifies a Google Apps calendar resource.

Example:


Set-GDataResource -ResourceService $ResourceService -ID resource -Type type -Description description

Clone this wiki locally