This repository was archived by the owner on Feb 23, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed
src/APIM_ARMTemplate/apimtemplate/Common Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ internal static class ResourceTypeConstants
9
9
public const string APIOperation = "Microsoft.ApiManagement/service/apis/operations" ;
10
10
public const string APIOperationPolicy = "Microsoft.ApiManagement/service/apis/operations/policies" ;
11
11
public const string APIPolicy = "Microsoft.ApiManagement/service/apis/policies" ;
12
+ public const string APIRelease = "Microsoft.ApiManagement/service/apis/releases" ;
12
13
public const string APISchema = "Microsoft.ApiManagement/service/apis/schemas" ;
13
14
public const string AuthorizationServer = "Microsoft.ApiManagement/service/authorizationServers" ;
14
15
public const string Backend = "Microsoft.ApiManagement/service/backends" ;
Original file line number Diff line number Diff line change
1
+ namespace Microsoft . Azure . Management . ApiManagement . ArmTemplates . Common
2
+ {
3
+ public class ReleaseTemplateResource : APITemplateSubResource
4
+ {
5
+ public ReleasTemplateProperties properties { get ; set ; }
6
+ }
7
+
8
+ public class ReleasTemplateProperties
9
+ {
10
+ public string apiId { get ; set ; }
11
+ public string notes { get ; set ; }
12
+ }
13
+ }
You can’t perform that action at this time.
0 commit comments