New-R1GeneratedSchema

SYNOPSIS

Generates schemas.

SYNTAX

New-R1GeneratedSchema [-schemaName] <String[]> [-WhatIf] [-Confirm] [<CommonParameters>]

DESCRIPTION

Generates the server schema for the named schemas. Names may be supplied as an array or through the pipeline, and are collected into a single request.

EXAMPLES

Example 1

New-R1GeneratedSchema -schemaName 'sales'

Generates the server schema for the sales schema.

Example 2

Get-R1Schema | Select-Object -ExpandProperty name | New-R1GeneratedSchema

Generates the server schema for every schema in the catalog, in one request.

PARAMETERS

-schemaName

The name of the schema.

Type: String[]
Parameter Sets: (All)
Aliases: name

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

-WhatIf

Shows what would happen if the cmdlet runs. The cmdlet is not run.

Type: SwitchParameter
Parameter Sets: (All)
Aliases: wi

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-Confirm

Prompts you for confirmation before running the cmdlet.

Type: SwitchParameter
Parameter Sets: (All)
Aliases: cf

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

None

OUTPUTS

System.Void

NOTES

Get-R1Schema

Publish-R1Schema