private GetBlueprintResult( string?description, string?displayName, object?layout, string name, ImmutableDictionary <string, Outputs.ParameterDefinitionResponse>?parameters, ImmutableDictionary <string, Outputs.ResourceGroupDefinitionResponse>?resourceGroups, Outputs.BlueprintStatusResponse status, string targetScope, string type, object?versions) { Description = description; DisplayName = displayName; Layout = layout; Name = name; Parameters = parameters; ResourceGroups = resourceGroups; Status = status; TargetScope = targetScope; Type = type; Versions = versions; }
private GetPublishedBlueprintResult( string?blueprintName, string?changeNotes, string?description, string?displayName, string name, ImmutableDictionary <string, Outputs.ParameterDefinitionResponse>?parameters, ImmutableDictionary <string, Outputs.ResourceGroupDefinitionResponse>?resourceGroups, Outputs.BlueprintStatusResponse status, string?targetScope, string type) { BlueprintName = blueprintName; ChangeNotes = changeNotes; Description = description; DisplayName = displayName; Name = name; Parameters = parameters; ResourceGroups = resourceGroups; Status = status; TargetScope = targetScope; Type = type; }