Skip to content

Commit

Permalink
Ab#66563 (#4)
Browse files Browse the repository at this point in the history
* Update generated docs
* chore(docs): Regenerate screenshots
  • Loading branch information
leefine02 authored Jan 22, 2025
1 parent fd1f7f4 commit feca3cd
Show file tree
Hide file tree
Showing 25 changed files with 510 additions and 405 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Keyfactor Bootstrap Workflow
name: Keyfactor Bootstrap Workflow

on:
workflow_dispatch:
Expand All @@ -11,9 +11,10 @@ on:

jobs:
call-starter-workflow:
uses: keyfactor/actions/.github/workflows/starter.yml@v2
uses: keyfactor/actions/.github/workflows/starter.yml@3.1.2
secrets:
token: ${{ secrets.V2BUILDTOKEN}}
APPROVE_README_PUSH: ${{ secrets.APPROVE_README_PUSH}}
gpg_key: ${{ secrets.KF_GPG_PRIVATE_KEY }}
gpg_pass: ${{ secrets.KF_GPG_PASSPHRASE }}
scan_token: ${{ secrets.SAST_TOKEN }}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -348,3 +348,4 @@ MigrationBackup/

# Ionide (cross platform F# VS Code tools) working folder
.ionide/

5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
v1.1.0
- Modified README to use doctool and converted to .net6/8 dual build

v1.0.0
- Initial Version
- Initial Version
16 changes: 8 additions & 8 deletions F5WafOrchestrator.sln
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@

Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "F5WafOrchestrator", "F5WafOrchestrator\F5WafOrchestrator.csproj", "{3645725A-2C84-4536-9A04-4F4CEDF30B21}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "F5WafOrchestrator.Tests", "F5WafOrchestrator.Tests\F5WafOrchestrator.Tests.csproj", "{E53E4095-667E-4F26-B596-28DC0E5CEEED}"
# Visual Studio Version 17
VisualStudioVersion = 17.11.35312.102
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "F5WafOrchestrator", "F5WafOrchestrator\F5WafOrchestrator.csproj", "{3645725A-2C84-4536-9A04-4F4CEDF30B21}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand All @@ -12,12 +13,11 @@ Global
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{3645725A-2C84-4536-9A04-4F4CEDF30B21}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3645725A-2C84-4536-9A04-4F4CEDF30B21}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3645725A-2C84-4536-9A04-4F4CEDF30B21}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
{3645725A-2C84-4536-9A04-4F4CEDF30B21}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3645725A-2C84-4536-9A04-4F4CEDF30B21}.Release|Any CPU.Build.0 = Release|Any CPU
{3645725A-2C84-4536-9A04-4F4CEDF30B21}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
{E53E4095-667E-4F26-B596-28DC0E5CEEED}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E53E4095-667E-4F26-B596-28DC0E5CEEED}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E53E4095-667E-4F26-B596-28DC0E5CEEED}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E53E4095-667E-4F26-B596-28DC0E5CEEED}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
4 changes: 4 additions & 0 deletions F5WafOrchestrator/CA/Discovery.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@
using Keyfactor.Orchestrators.Extensions;
using Microsoft.Extensions.Logging;

using System;
using System.Collections.Generic;
using System.Linq;

namespace Keyfactor.Extensions.Orchestrator.F5WafOrchestrator.CA;

public class Discovery : Job, IDiscoveryJobExtension
Expand Down
4 changes: 4 additions & 0 deletions F5WafOrchestrator/CA/Inventory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@
using Keyfactor.Orchestrators.Extensions;
using Microsoft.Extensions.Logging;

using System;
using System.Collections.Generic;
using System.Linq;

namespace Keyfactor.Extensions.Orchestrator.F5WafOrchestrator.CA;

public class Inventory : Job, IInventoryJobExtension
Expand Down
2 changes: 2 additions & 0 deletions F5WafOrchestrator/CA/Management.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
using Keyfactor.Orchestrators.Extensions;
using Microsoft.Extensions.Logging;

using System;

namespace Keyfactor.Extensions.Orchestrator.F5WafOrchestrator.CA;

public class Management : Job, IManagementJobExtension
Expand Down
7 changes: 5 additions & 2 deletions F5WafOrchestrator/F5WafClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@
// See the License for the specific language governing permissions and
// limitations under the License.

using System;
using System.IO;
using System.Linq;
using System.Collections.Generic;
using System.Net.Http.Headers;
using System.Text;
using System.Text.Json;
Expand All @@ -24,8 +28,7 @@
using Newtonsoft.Json.Linq;
using Org.BouncyCastle.Pkcs;
using System.Net;
using Org.BouncyCastle.Asn1.Ocsp;
using System.Xml.Linq;
using System.Net.Http;

namespace Keyfactor.Extensions.Orchestrator.F5WafOrchestrator.Client;

Expand Down
32 changes: 4 additions & 28 deletions F5WafOrchestrator/F5WafOrchestrator.csproj
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<TargetFramework>net6.0</TargetFramework>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>Keyfactor.Extensions.Orchestrator.F5WafOrchestrator</RootNamespace>
<LangVersion>latest</LangVersion>
<AppendTargetFrameworkToOutputPath>true</AppendTargetFrameworkToOutputPath>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<ImplicitUsings>disable</ImplicitUsings>
</PropertyGroup>

<ItemGroup>
Expand All @@ -19,31 +16,10 @@
<PackageReference Include="netvmomi.Models" Version="1.0.16" />
<PackageReference Include="RestSharp.Authenticators.Digest" Version="1.3.1" />
<PackageReference Include="System.Diagnostics.Debug" Version="4.3.0" />
</ItemGroup>

<ItemGroup>
<None Update="manifest.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>

<ItemGroup>
<Reference Include="BouncyCastle.Crypto">
<HintPath>..\..\..\..\..\..\Program Files\Keyfactor\Keyfactor Orchestrator\BouncyCastle.Crypto.dll</HintPath>
</Reference>
</ItemGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants></DefineConstants>
<BaseOutputPath></BaseOutputPath>
<OutputPath>$(BaseOutputPath)</OutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>

</PropertyGroup>

<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
<Exec Command="echo F | xcopy &quot;$(ProjectDir)manifest.json&quot; &quot;$(TargetDir)\manifest.json&quot; /Y" />
</Target>

</Project>
4 changes: 4 additions & 0 deletions F5WafOrchestrator/TLS/Discovery.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@
using Keyfactor.Orchestrators.Extensions;
using Microsoft.Extensions.Logging;

using System;
using System.Collections.Generic;
using System.Linq;

namespace Keyfactor.Extensions.Orchestrator.F5WafOrchestrator.TLS;

public class Discovery : Job, IDiscoveryJobExtension
Expand Down
4 changes: 4 additions & 0 deletions F5WafOrchestrator/TLS/Inventory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@
using Keyfactor.Orchestrators.Common.Enums;
using Keyfactor.Orchestrators.Extensions;
using Microsoft.Extensions.Logging;

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;

namespace Keyfactor.Extensions.Orchestrator.F5WafOrchestrator.TLS;
Expand Down
2 changes: 2 additions & 0 deletions F5WafOrchestrator/TLS/Management.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
using Keyfactor.Orchestrators.Extensions;
using Microsoft.Extensions.Logging;

using System;

namespace Keyfactor.Extensions.Orchestrator.F5WafOrchestrator.TLS;

public class Management : Job, IManagementJobExtension
Expand Down
Loading

0 comments on commit feca3cd

Please sign in to comment.