@@ -97,7 +97,7 @@ public virtual void Add(Azure.Provisioning.Primitives.Provisionable resource) {
9797 public virtual Azure . Provisioning . ProvisioningPlan Build ( Azure . Provisioning . ProvisioningBuildOptions ? options = null ) { throw null ; }
9898 protected internal override System . Collections . Generic . IEnumerable < Azure . Provisioning . Expressions . BicepStatement > Compile ( ) { throw null ; }
9999 protected internal System . Collections . Generic . IDictionary < string , System . Collections . Generic . IEnumerable < Azure . Provisioning . Expressions . BicepStatement > > CompileModules ( Azure . Provisioning . ProvisioningBuildOptions ? options = null ) { throw null ; }
100- public override System . Collections . Generic . IEnumerable < Azure . Provisioning . Primitives . Provisionable > GetResources ( ) { throw null ; }
100+ public override System . Collections . Generic . IEnumerable < Azure . Provisioning . Primitives . Provisionable > GetProvisionableResources ( ) { throw null ; }
101101 public static bool IsValidBicepIdentifier ( string ? bicepIdentifier ) { throw null ; }
102102 public static string NormalizeBicepIdentifier ( string ? bicepIdentifier ) { throw null ; }
103103 public virtual void Remove ( Azure . Provisioning . Primitives . Provisionable resource ) { }
@@ -108,8 +108,7 @@ public static void ValidateBicepIdentifier(string? bicepIdentifier, string? para
108108 public partial class ProvisioningBuildOptions
109109 {
110110 public ProvisioningBuildOptions ( ) { }
111- public System . Collections . Generic . IList < Azure . Provisioning . Primitives . InfrastructureResolver > InfrastructureResolvers { get { throw null ; } set { } }
112- public System . Collections . Generic . IList < Azure . Provisioning . Primitives . PropertyResolver > PropertyResolvers { get { throw null ; } set { } }
111+ public System . Collections . Generic . IList < Azure . Provisioning . Primitives . InfrastructureResolver > InfrastructureResolvers { get { throw null ; } }
113112 public System . Random Random { get { throw null ; } set { } }
114113 }
115114 public partial class ProvisioningOutput : Azure . Provisioning . ProvisioningVariable
@@ -597,7 +596,7 @@ public BinaryExpression(Azure.Provisioning.Expressions.BicepExpression left, Azu
597596 public partial class BoolLiteralExpression : Azure . Provisioning . Expressions . LiteralExpression
598597 {
599598 public BoolLiteralExpression ( bool value ) : base ( default ( object ) ) { }
600- public bool Value { get { throw null ; } }
599+ public new bool Value { get { throw null ; } }
601600 }
602601 public partial class CommentStatement : Azure . Provisioning . Expressions . BicepStatement
603602 {
@@ -647,12 +646,12 @@ public InterpolatedStringExpression(string format, Azure.Provisioning.Expression
647646 public partial class IntLiteralExpression : Azure . Provisioning . Expressions . LiteralExpression
648647 {
649648 public IntLiteralExpression ( int value ) : base ( default ( object ) ) { }
650- public int Value { get { throw null ; } }
649+ public new int Value { get { throw null ; } }
651650 }
652651 public abstract partial class LiteralExpression : Azure . Provisioning . Expressions . BicepExpression
653652 {
654- protected LiteralExpression ( object ? literalValue = null ) { }
655- public object ? LiteralValue { get { throw null ; } }
653+ protected LiteralExpression ( object ? value = null ) { }
654+ public object ? Value { get { throw null ; } }
656655 }
657656 public partial class MemberExpression : Azure . Provisioning . Expressions . BicepExpression
658657 {
@@ -729,7 +728,7 @@ public SafeMemberExpression(Azure.Provisioning.Expressions.BicepExpression value
729728 public partial class StringLiteralExpression : Azure . Provisioning . Expressions . LiteralExpression
730729 {
731730 public StringLiteralExpression ( string value ) : base ( default ( object ) ) { }
732- public string Value { get { throw null ; } }
731+ public new string Value { get { throw null ; } }
733732 }
734733 public partial class TargetScopeStatement : Azure . Provisioning . Expressions . BicepStatement
735734 {
@@ -780,7 +779,7 @@ public BicepValueReference(Azure.Provisioning.Primitives.ProvisionableConstruct
780779 public partial class ClientCreatorOutputResolver : Azure . Provisioning . Primitives . InfrastructureResolver
781780 {
782781 public ClientCreatorOutputResolver ( ) { }
783- public override System . Collections . Generic . IEnumerable < Azure . Provisioning . Primitives . Provisionable > ResolveResources ( Azure . Provisioning . ProvisioningBuildOptions options , System . Collections . Generic . IEnumerable < Azure . Provisioning . Primitives . Provisionable > resources ) { throw null ; }
782+ public override System . Collections . Generic . IEnumerable < Azure . Provisioning . Primitives . Provisionable > ResolveResources ( System . Collections . Generic . IEnumerable < Azure . Provisioning . Primitives . Provisionable > resources , Azure . Provisioning . ProvisioningBuildOptions options ) { throw null ; }
784783 }
785784 public partial class DynamicResourceNamePropertyResolver : Azure . Provisioning . Primitives . ResourceNamePropertyResolver
786785 {
@@ -799,15 +798,16 @@ public partial interface IClientCreator<TClient, TOptions> : Azure.Provisioning.
799798 public abstract partial class InfrastructureResolver
800799 {
801800 protected InfrastructureResolver ( ) { }
802- public System . Collections . Generic . IEnumerable < Azure . Provisioning . Infrastructure > GetNestedInfrastructure ( Azure . Provisioning . ProvisioningBuildOptions options , Azure . Provisioning . Infrastructure infrastructure ) { throw null ; }
803- public virtual void ResolveInfrastructure ( Azure . Provisioning . ProvisioningBuildOptions options , Azure . Provisioning . Infrastructure infrastructure ) { }
804- public virtual System . Collections . Generic . IEnumerable < Azure . Provisioning . Primitives . Provisionable > ResolveResources ( Azure . Provisioning . ProvisioningBuildOptions options , System . Collections . Generic . IEnumerable < Azure . Provisioning . Primitives . Provisionable > resources ) { throw null ; }
801+ public virtual System . Collections . Generic . IEnumerable < Azure . Provisioning . Infrastructure > GetNestedInfrastructure ( Azure . Provisioning . Infrastructure infrastructure , Azure . Provisioning . ProvisioningBuildOptions options ) { throw null ; }
802+ public virtual void ResolveInfrastructure ( Azure . Provisioning . Infrastructure infrastructure , Azure . Provisioning . ProvisioningBuildOptions options ) { }
803+ public virtual void ResolveProperties ( Azure . Provisioning . Primitives . ProvisionableConstruct construct , Azure . Provisioning . ProvisioningBuildOptions options ) { }
804+ public virtual System . Collections . Generic . IEnumerable < Azure . Provisioning . Primitives . Provisionable > ResolveResources ( System . Collections . Generic . IEnumerable < Azure . Provisioning . Primitives . Provisionable > resources , Azure . Provisioning . ProvisioningBuildOptions options ) { throw null ; }
805805 }
806- public partial class LocationPropertyResolver : Azure . Provisioning . Primitives . PropertyResolver
806+ public partial class LocationPropertyResolver : Azure . Provisioning . Primitives . InfrastructureResolver
807807 {
808808 public LocationPropertyResolver ( ) { }
809809 protected virtual Azure . Provisioning . BicepValue < Azure . Core . AzureLocation > GetDefaultLocation ( Azure . Provisioning . ProvisioningBuildOptions options , Azure . Provisioning . Primitives . ProvisionableConstruct construct ) { throw null ; }
810- public override void ResolveProperties ( Azure . Provisioning . ProvisioningBuildOptions options , Azure . Provisioning . Primitives . ProvisionableConstruct construct ) { }
810+ public override void ResolveProperties ( Azure . Provisioning . Primitives . ProvisionableConstruct construct , Azure . Provisioning . ProvisioningBuildOptions options ) { }
811811 }
812812 public partial class ModuleImport : Azure . Provisioning . Primitives . NamedProvisionableConstruct
813813 {
@@ -827,18 +827,13 @@ protected NamedProvisionableConstruct(string bicepIdentifier) { }
827827 public partial class OrderingInfrastructureResolver : Azure . Provisioning . Primitives . InfrastructureResolver
828828 {
829829 public OrderingInfrastructureResolver ( ) { }
830- public override System . Collections . Generic . IEnumerable < Azure . Provisioning . Primitives . Provisionable > ResolveResources ( Azure . Provisioning . ProvisioningBuildOptions options , System . Collections . Generic . IEnumerable < Azure . Provisioning . Primitives . Provisionable > resources ) { throw null ; }
831- }
832- public abstract partial class PropertyResolver
833- {
834- protected PropertyResolver ( ) { }
835- public abstract void ResolveProperties ( Azure . Provisioning . ProvisioningBuildOptions options , Azure . Provisioning . Primitives . ProvisionableConstruct construct ) ;
830+ public override System . Collections . Generic . IEnumerable < Azure . Provisioning . Primitives . Provisionable > ResolveResources ( System . Collections . Generic . IEnumerable < Azure . Provisioning . Primitives . Provisionable > resources , Azure . Provisioning . ProvisioningBuildOptions options ) { throw null ; }
836831 }
837832 public abstract partial class Provisionable
838833 {
839834 internal Provisionable ( ) { }
840835 protected internal abstract System . Collections . Generic . IEnumerable < Azure . Provisioning . Expressions . BicepStatement > Compile ( ) ;
841- public virtual System . Collections . Generic . IEnumerable < Azure . Provisioning . Primitives . Provisionable > GetResources ( ) { throw null ; }
836+ public virtual System . Collections . Generic . IEnumerable < Azure . Provisioning . Primitives . Provisionable > GetProvisionableResources ( ) { throw null ; }
842837 protected internal virtual void Resolve ( Azure . Provisioning . ProvisioningBuildOptions ? options = null ) { }
843838 protected internal virtual void Validate ( Azure . Provisioning . ProvisioningBuildOptions ? options = null ) { }
844839 }
@@ -849,7 +844,7 @@ protected ProvisionableConstruct() { }
849844 public Azure . Provisioning . Infrastructure ? ParentInfrastructure { get { throw null ; } }
850845 protected internal override System . Collections . Generic . IEnumerable < Azure . Provisioning . Expressions . BicepStatement > Compile ( ) { throw null ; }
851846 [ System . ComponentModel . EditorBrowsableAttribute ( System . ComponentModel . EditorBrowsableState . Never ) ]
852- public override System . Collections . Generic . IEnumerable < Azure . Provisioning . Primitives . Provisionable > GetResources ( ) { throw null ; }
847+ public override System . Collections . Generic . IEnumerable < Azure . Provisioning . Primitives . Provisionable > GetProvisionableResources ( ) { throw null ; }
853848 protected internal void OverrideWithExpression ( Azure . Provisioning . Expressions . BicepExpression reference ) { }
854849 protected internal override void Resolve ( Azure . Provisioning . ProvisioningBuildOptions ? options = null ) { }
855850 [ System . ComponentModel . EditorBrowsableAttribute ( System . ComponentModel . EditorBrowsableState . Never ) ]
@@ -882,11 +877,11 @@ public enum ResourceNameCharacters
882877 Period = 32 ,
883878 Parentheses = 64 ,
884879 }
885- public abstract partial class ResourceNamePropertyResolver : Azure . Provisioning . Primitives . PropertyResolver
880+ public abstract partial class ResourceNamePropertyResolver : Azure . Provisioning . Primitives . InfrastructureResolver
886881 {
887882 protected ResourceNamePropertyResolver ( ) { }
888883 public abstract Azure . Provisioning . BicepValue < string > ? ResolveName ( Azure . Provisioning . ProvisioningBuildOptions options , Azure . Provisioning . Primitives . ProvisionableResource resource , Azure . Provisioning . Primitives . ResourceNameRequirements requirements ) ;
889- public override void ResolveProperties ( Azure . Provisioning . ProvisioningBuildOptions options , Azure . Provisioning . Primitives . ProvisionableConstruct construct ) { }
884+ public override void ResolveProperties ( Azure . Provisioning . Primitives . ProvisionableConstruct construct , Azure . Provisioning . ProvisioningBuildOptions options ) { }
890885 protected static string SanitizeText ( string text , Azure . Provisioning . Primitives . ResourceNameCharacters validCharacters ) { throw null ; }
891886 }
892887 [ System . Runtime . InteropServices . StructLayoutAttribute ( System . Runtime . InteropServices . LayoutKind . Sequential ) ]
0 commit comments