File tree Expand file tree Collapse file tree 3 files changed +13
-8
lines changed 
src/ContainerRegistry/ContainerRegistry Expand file tree Collapse file tree 3 files changed +13
-8
lines changed Original file line number Diff line number Diff line change 1818        - Additional information about change #1 
1919--> 
2020## Upcoming Release  
21+ *  Updated parameter types from bool to bool? for ` Update-AzContainerRegistryRepository `  [ #17857  ] 
22+     -  ` ReadEnabled ` 
23+     -  ` ListEnabled ` 
24+     -  ` WriteEnabled ` 
25+     -  ` DeleteEnabled ` 
2126
2227## Version 2.2.3  
2328*  Fixed username and password issue in ` Import-AzContainerRegistryImage `  [ #14971  ] 
Original file line number Diff line number Diff line change @@ -28,19 +28,19 @@ public class UpdateAzureContainerRegistryRepository : ContainerRegistryDataPlane
2828
2929        [ Parameter ( Mandatory  =  false ,  HelpMessage  =  "Delete enable." ) ] 
3030        [ ValidateNotNullOrEmpty ] 
31-         public  bool  DeleteEnabled  {  get ;  set ;  } 
31+         public  bool ?  DeleteEnabled  {  get ;  set ;  } 
3232
3333        [ Parameter ( Mandatory  =  false ,  HelpMessage  =  "Write enable." ) ] 
3434        [ ValidateNotNullOrEmpty ] 
35-         public  bool  WriteEnabled  {  get ;  set ;  } 
35+         public  bool ?  WriteEnabled  {  get ;  set ;  } 
3636
3737        [ Parameter ( Mandatory  =  false ,  HelpMessage  =  "List enable." ) ] 
3838        [ ValidateNotNullOrEmpty ] 
39-         public  bool  ListEnabled  {  get ;  set ;  } 
39+         public  bool ?  ListEnabled  {  get ;  set ;  } 
4040
4141        [ Parameter ( Mandatory  =  false ,  HelpMessage  =  "Read enable." ) ] 
4242        [ ValidateNotNullOrEmpty ] 
43-         public  bool  ReadEnabled  {  get ;  set ;  } 
43+         public  bool ?  ReadEnabled  {  get ;  set ;  } 
4444
4545        public  override  void  ExecuteChildCmdlet ( ) 
4646        { 
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ Accept wildcard characters: False
6161Delete enable. 
6262
6363` ` ` yaml 
64- Type : System.Boolean 
64+ Type : System.Nullable`1[System. Boolean]  
6565Parameter Sets : (All) 
6666Aliases :
6767
@@ -76,7 +76,7 @@ Accept wildcard characters: False
7676List enable. 
7777
7878` ` ` yaml 
79- Type : System.Boolean 
79+ Type : System.Nullable`1[System. Boolean]  
8080Parameter Sets : (All) 
8181Aliases :
8282
@@ -106,7 +106,7 @@ Accept wildcard characters: False
106106Read enable. 
107107
108108` ` ` yaml 
109- Type : System.Boolean 
109+ Type : System.Nullable`1[System. Boolean]  
110110Parameter Sets : (All) 
111111Aliases :
112112
@@ -136,7 +136,7 @@ Accept wildcard characters: False
136136Write enable. 
137137
138138` ` ` yaml 
139- Type : System.Boolean 
139+ Type : System.Nullable`1[System. Boolean]  
140140Parameter Sets : (All) 
141141Aliases :
142142
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments