William Cheng 6591d4e6fb
[PowerShell] better enum model support (#12082)
* better enum model/class support in powershell client generator

* add new files
2022-04-08 13:27:03 +08:00

879 B

EnumTest

Properties

Name Type Description Notes
EnumString String [optional]
EnumStringRequired String
EnumInteger Int32 [optional]
EnumIntegerOnly Int32 [optional]
EnumNumber Double [optional]
OuterEnum OuterEnum [optional]

Examples

  • Prepare the resource
$EnumTest = Initialize-PSPetstoreEnumTest  -EnumString null `
 -EnumStringRequired null `
 -EnumInteger null `
 -EnumIntegerOnly null `
 -EnumNumber null `
 -OuterEnum null
  • Convert the resource to JSON
$EnumTest | ConvertTo-JSON

[Back to Model list] [Back to API list] [Back to README]