Skip to content
This repository was archived by the owner on Feb 23, 2024. It is now read-only.

Commit f7db2b5

Browse files
committed
creator namespace -> create
1 parent 494827f commit f7db2b5

File tree

14 files changed

+14
-14
lines changed

14 files changed

+14
-14
lines changed

src/APIM_ARMTemplate/apimtemplate.test/Creator/FileHandlerTests/FileWriterTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using Xunit;
33
using Newtonsoft.Json.Linq;
44
using System;
5-
using Microsoft.Azure.Management.ApiManagement.ArmTemplates.Creator;
5+
using Microsoft.Azure.Management.ApiManagement.ArmTemplates.Create;
66

77
namespace Microsoft.Azure.Management.ApiManagement.ArmTemplates
88
{

src/APIM_ARMTemplate/apimtemplate/Commands/Create.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using McMaster.Extensions.CommandLineUtils;
22
using Colors.Net;
33
using System;
4-
using Microsoft.Azure.Management.ApiManagement.ArmTemplates.Creator;
4+
using Microsoft.Azure.Management.ApiManagement.ArmTemplates.Create;
55

66
namespace Microsoft.Azure.Management.ApiManagement.ArmTemplates
77
{

src/APIM_ARMTemplate/apimtemplate/Creator/ExampleFiles/YAMLConfigs/valid.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ api:
2727
scope: scope
2828
products: starter, platinum # Optional, adds api to the specified products
2929
outputLocation: C:\Users\lucashh\Desktop\Projects\APIM-ARM\GeneratedTemplates # Required, folder the creator will write the templates to
30-
linked: true # Optional
30+
linked: false # Optional
3131
linkedTemplatesBaseUrl : https://lucasyamlblob.blob.core.windows.net/yaml # Required if 'linked' property is set to true

src/APIM_ARMTemplate/apimtemplate/Creator/FileHandlers/FileReader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Threading.Tasks;
66
using YamlDotNet.Serialization;
77

8-
namespace Microsoft.Azure.Management.ApiManagement.ArmTemplates.Creator
8+
namespace Microsoft.Azure.Management.ApiManagement.ArmTemplates.Create
99
{
1010
public class FileReader
1111
{

src/APIM_ARMTemplate/apimtemplate/Creator/FileHandlers/FileWriter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using Newtonsoft.Json;
22
using System.IO;
33

4-
namespace Microsoft.Azure.Management.ApiManagement.ArmTemplates.Creator
4+
namespace Microsoft.Azure.Management.ApiManagement.ArmTemplates.Create
55
{
66
public class FileWriter
77
{

src/APIM_ARMTemplate/apimtemplate/Creator/FileHandlers/OpenAPISpecReader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using System.Net.Http;
88
using System.Threading.Tasks;
99

10-
namespace Microsoft.Azure.Management.ApiManagement.ArmTemplates.Creator
10+
namespace Microsoft.Azure.Management.ApiManagement.ArmTemplates.Create
1111
{
1212
public class OpenAPISpecReader
1313
{

src/APIM_ARMTemplate/apimtemplate/Creator/Models/CreatorConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Collections.Generic;
22

3-
namespace Microsoft.Azure.Management.ApiManagement.ArmTemplates.Creator
3+
namespace Microsoft.Azure.Management.ApiManagement.ArmTemplates.Create
44
{
55
public class CLICreatorArguments
66
{

src/APIM_ARMTemplate/apimtemplate/Creator/Models/CreatorFileNames.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
namespace Microsoft.Azure.Management.ApiManagement.ArmTemplates.Creator
2+
namespace Microsoft.Azure.Management.ApiManagement.ArmTemplates.Create
33
{
44
public class CreatorFileNames
55
{

src/APIM_ARMTemplate/apimtemplate/Creator/TemplateCreators/APITemplateCreator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using Newtonsoft.Json;
44
using Microsoft.OpenApi.Models;
55

6-
namespace Microsoft.Azure.Management.ApiManagement.ArmTemplates.Creator
6+
namespace Microsoft.Azure.Management.ApiManagement.ArmTemplates.Create
77
{
88
public class APITemplateCreator
99
{

src/APIM_ARMTemplate/apimtemplate/Creator/TemplateCreators/APIVersionSetTemplateCreator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Collections.Generic;
22

3-
namespace Microsoft.Azure.Management.ApiManagement.ArmTemplates.Creator
3+
namespace Microsoft.Azure.Management.ApiManagement.ArmTemplates.Create
44
{
55
public class APIVersionSetTemplateCreator
66
{

0 commit comments

Comments
 (0)