Skip to content

New GResellerCustomerObj

Spencer Varney edited this page Dec 9, 2016 · 2 revisions

New-GResellerCustomerObj

SYNOPSIS

Creates a new Reseller API Customer object.

SYNTAX

New-GResellerCustomerObj [[-AlternateEmail] <String>] [[-CustomerDomain] <String>]
 [[-CustomerDomainVerified] <Boolean>] [[-CustomerId] <String>] [[-PhoneNumber] <String>]
 [[-PostalAddress] <Address>] [[-ResourceUiUrl] <String>] [-WhatIf] [-Confirm]

DESCRIPTION

This provides a Cmdlet-Based approach to creating a Customer object which may be required as a parameter for some other Cmdlets in the Reseller API category.

You could alternately create this object by calling New-Object -TypeName Google.Apis.Reseller.v1.Data.Customer

EXAMPLES

---------- EXAMPLE 1 ----------

PS C:\> New-GResellerCustomerObj

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.

PARAMETERS

-AlternateEmail

The alternate email of the customer.

Type: String
Parameter Sets: (All)
Aliases: 

Required: False
Position: 0
Default value: 
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-CustomerDomain

The domain name of the customer.

Type: String
Parameter Sets: (All)
Aliases: 

Required: False
Position: 1
Default value: 
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-CustomerDomainVerified

Whether the customer's primary domain has been verified.

Type: Boolean
Parameter Sets: (All)
Aliases: 

Required: False
Position: 2
Default value: 
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-CustomerId

The id of the customer.

Type: String
Parameter Sets: (All)
Aliases: 

Required: False
Position: 3
Default value: 
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-PhoneNumber

The phone number of the customer.

Type: String
Parameter Sets: (All)
Aliases: 

Required: False
Position: 4
Default value: 
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-PostalAddress

The postal address of the customer.

Type: Address
Parameter Sets: (All)
Aliases: 

Required: False
Position: 5
Default value: 
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-ResourceUiUrl

Ui url for customer resource.

Type: String
Parameter Sets: (All)
Aliases: 

Required: False
Position: 6
Default value: 
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

INPUTS

System.String

The alternate email of the customer.

System.String

The domain name of the customer.

System.Boolean

Whether the customer's primary domain has been verified.

System.String

The id of the customer.

System.String

The phone number of the customer.

Google.Apis.Reseller.v1.Data.Address

The postal address of the customer.

System.String

Ui url for customer resource.

OUTPUTS

Google.Apis.Reseller.v1.Data.Customer

NOTES

Part of the gShell Project, relating to the Google Reseller API; see Related Links or use the -Online parameter.

RELATED LINKS

[Wiki page for this Cmdlet]

[Getting started with gShell]

Clone this wiki locally