able-camera-57198
11/06/2021, 4:01 PMComponentResources
so that they can be passed elsewhere in the stack?
For example:
[Output]
public Network ProjectNetwork { get; set; }
// later...
ProjectNetwork = new Network(
"project",
options: new()
{
Parent = this,
DependsOn =
{
computeService,
},
},
args: new()
{
Name = "blablabla",
AutoCreateSubnetworks = true,
}
);
green-stone-37839
11/06/2021, 4:43 PMable-camera-57198
11/06/2021, 4:50 PMOutput<...>
.{get; init;}