@@ -37,19 +37,19 @@ public partial class Image : global::Pulumi.CustomResource
3737 public Output < string ? > Modification_date { get ; private set ; } = null ! ;
3838
3939 [ Output ( "name" ) ]
40- public Output < string ? > Name { get ; private set ; } = null ! ;
40+ public Output < string > Name { get ; private set ; } = null ! ;
4141
4242 [ Output ( "organization" ) ]
4343 public Output < string ? > Organization { get ; private set ; } = null ! ;
4444
4545 [ Output ( "project" ) ]
46- public Output < string ? > Project { get ; private set ; } = null ! ;
46+ public Output < string > Project { get ; private set ; } = null ! ;
4747
4848 [ Output ( "public" ) ]
4949 public Output < bool ? > Public { get ; private set ; } = null ! ;
5050
5151 [ Output ( "root_volume" ) ]
52- public Output < Outputs . ScalewayInstanceV1VolumeSummary ? > Root_volume { get ; private set ; } = null ! ;
52+ public Output < Outputs . ScalewayInstanceV1VolumeSummary > Root_volume { get ; private set ; } = null ! ;
5353
5454 [ Output ( "state" ) ]
5555 public Output < Pulumi . ScalewayInstances . Images . State ? > State { get ; private set ; } = null ! ;
@@ -68,7 +68,7 @@ public partial class Image : global::Pulumi.CustomResource
6868 /// <param name="name">The unique name of the resource</param>
6969 /// <param name="args">The arguments used to populate this resource's properties</param>
7070 /// <param name="options">A bag of options that control this resource's behavior</param>
71- public Image ( string name , ImageArgs ? args = null , CustomResourceOptions ? options = null )
71+ public Image ( string name , ImageArgs args , CustomResourceOptions ? options = null )
7272 : base ( "scaleway-instances:images:Image" , name , args ?? new ImageArgs ( ) , MakeResourceOptions ( options , "" ) )
7373 {
7474 }
@@ -126,14 +126,14 @@ public InputMap<Inputs.ScalewayInstanceV1VolumeArgs> Extra_volumes
126126 [ Input ( "organization" ) ]
127127 public Input < string > ? Organization { get ; set ; }
128128
129- [ Input ( "project" ) ]
130- public Input < string > ? Project { get ; set ; }
129+ [ Input ( "project" , required : true ) ]
130+ public Input < string > Project { get ; set ; } = null ! ;
131131
132132 [ Input ( "public" ) ]
133133 public Input < bool > ? Public { get ; set ; }
134134
135- [ Input ( "root_volume" ) ]
136- public Input < Inputs . ScalewayInstanceV1VolumeSummaryArgs > ? Root_volume { get ; set ; }
135+ [ Input ( "root_volume" , required : true ) ]
136+ public Input < Inputs . ScalewayInstanceV1VolumeSummaryArgs > Root_volume { get ; set ; } = null ! ;
137137
138138 [ Input ( "state" ) ]
139139 public Input < Pulumi . ScalewayInstances . Images . State > ? State { get ; set ; }
0 commit comments