-
Notifications
You must be signed in to change notification settings - Fork 10
New GDriveReplyObj
Creates a new Drive API Reply object.
New-GDriveReplyObj [[-Action] <String>] [[-Author] <User>] [[-Content] <String>] [[-CreatedTime] <DateTime>]
[[-Deleted] <Boolean>] [[-HtmlContent] <String>] [[-Id] <String>] [[-ModifiedTime] <DateTime>] [-WhatIf]
[-Confirm]
This provides a Cmdlet-Based approach to creating a Reply object which may be required as a parameter for some other Cmdlets in the Drive API category.
You could alternately create this object by calling New-Object -TypeName Google.Apis.Drive.v3.Data.Reply
PS C:\> New-GDriveReplyObj
This automatically generated example serves to show the bare minimum required to call this Cmdlet.
Additional examples may be added, viewed and edited by users on the community wiki at the URL found in the related links.
The action the reply performed to the parent comment. Valid values are:- resolve- reopen
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: 0
Default value:
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: FalseThe user who created the reply.
Type: User
Parameter Sets: (All)
Aliases:
Required: False
Position: 1
Default value:
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: FalseThe plain text content of the reply. This field is used for setting the content, while htmlContent should be displayed. This is required on creates if no action is specified.
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: 2
Default value:
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: FalseThe time at which the reply was created (RFC 3339 date-time).
Type: DateTime
Parameter Sets: (All)
Aliases:
Required: False
Position: 3
Default value:
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: FalseWhether the reply has been deleted. A deleted reply has no content.
Type: Boolean
Parameter Sets: (All)
Aliases:
Required: False
Position: 4
Default value:
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: FalseThe content of the reply with HTML formatting.
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: 5
Default value:
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: FalseThe ID of the reply.
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: 6
Default value:
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: FalseThe last time the reply was modified (RFC 3339 date-time).
Type: DateTime
Parameter Sets: (All)
Aliases:
Required: False
Position: 7
Default value:
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: FalseThe action the reply performed to the parent comment. Valid values are:- resolve- reopen
The user who created the reply.
The plain text content of the reply. This field is used for setting the content, while htmlContent should be displayed. This is required on creates if no action is specified.
The time at which the reply was created (RFC 3339 date-time).
Whether the reply has been deleted. A deleted reply has no content.
The content of the reply with HTML formatting.
The ID of the reply.
The last time the reply was modified (RFC 3339 date-time).
Part of the gShell Project, relating to the Google Drive API; see Related Links or use the -Online parameter.
News - Get Started - Cmdlet Index - FAQ - Discussion - Downloads