Skip to content

Commit

Permalink
CodeGen from PR 20502 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
[Hub Generated] Review request for Microsoft.HybridCompute to add version preview/2022-08-11-preview (Azure#20502)

* Adds base for updating Microsoft.HybridCompute from version preview/2022-05-10-preview to version 2022-08-11-preview

* Updates readme

* Updates API version in new specs and examples

* Squashing commits into 1

* Added plural + singular naming

* fixed extension types

* Made return types singular

* Added comment changes

* reverted enum change and update trackedResource to v3

* fixed param name

* fixed more plural/singular issues in the example

* added x-ms-client-flatten:true and moved location to the upper layer

* explicitly declare location

* tried resource instead

* using v3 to avoid conflicts

* updated v3 in privatelinkscopes.json too

* removed Resource inheritance and moved requestId to id

* Update readme.python.md

Azure/azure-rest-api-specs#20502 (comment)

* Update readme.go.md

* Added ProxyResource common type to ExtensionValue definition

* Add location in the ExtensionValue defn

* Fix syntax error

* Fix linit error by removing location property

* Remove location

* Remove location

* Prettyfy json

Co-authored-by: dorothyhu <[email protected]>
Co-authored-by: Yuchao Yan <[email protected]>
Co-authored-by: Raghu Shantha [MSFT] <[email protected]>
  • Loading branch information
4 people committed Oct 11, 2022
1 parent b0ca589 commit 2f49e3e
Show file tree
Hide file tree
Showing 674 changed files with 132,440 additions and 0 deletions.
1 change: 1 addition & 0 deletions swaggerci/hybridcompute/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto
5 changes: 5 additions & 0 deletions swaggerci/hybridcompute/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
bin
obj
.vs
tools
test/*-TestResults.xml
44 changes: 44 additions & 0 deletions swaggerci/hybridcompute/Az.HybridCompute.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>0.1.0</Version>
<LangVersion>7.1</LangVersion>
<TargetFramework>netstandard2.0</TargetFramework>
<OutputType>Library</OutputType>
<AssemblyName>Az.HybridCompute.private</AssemblyName>
<RootNamespace>Microsoft.Azure.PowerShell.Cmdlets.HybridCompute</RootNamespace>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<OutputPath>./bin</OutputPath>
<PublishDir>$(OutputPath)</PublishDir>
<NuspecFile>Az.HybridCompute.nuspec</NuspecFile>
<NoPackageAnalysis>true</NoPackageAnalysis>
<!-- Some methods are marked async and don't have an await in them -->
<!-- warning CS1591: Missing XML comment for publicly visible type or member -->
<NoWarn>1998, 1591</NoWarn>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DelaySign>false</DelaySign>
<DefineConstants>TRACE;DEBUG;NETSTANDARD</DefineConstants>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<SignAssembly>true</SignAssembly>
<DelaySign>true</DelaySign>
<AssemblyOriginatorKeyFile>MSSharedLibKey.snk</AssemblyOriginatorKeyFile>
<DefineConstants>TRACE;RELEASE;NETSTANDARD;SIGN</DefineConstants>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="PowerShellStandard.Library" Version="5.1.0" />
<PackageReference Include="Microsoft.CSharp" Version="4.4.1" />
</ItemGroup>

<PropertyGroup>
<DefaultItemExcludes>$(DefaultItemExcludes);resources/**</DefaultItemExcludes>
</PropertyGroup>

</Project>
Loading

0 comments on commit 2f49e3e

Please sign in to comment.