File tree Expand file tree Collapse file tree
ground_control_client/lib/src/protocol Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -744,11 +744,19 @@ class EndpointProjects extends _i1.EndpointRef {
744744
745745 /// Creates a new project with basic setup.
746746 /// The [cloudProjectId] must be globally unique.
747- _i2.Future <_i3.Project > createProject ({required String cloudProjectId}) =>
747+ /// [underSubscriptionId] optionally specify a subscription to procure the
748+ /// project under, or the user's primary subscription will be used.
749+ _i2.Future <_i3.Project > createProject ({
750+ required String cloudProjectId,
751+ String ? underSubscriptionId,
752+ }) =>
748753 caller.callServerEndpoint< _i3.Project > (
749754 'projects' ,
750755 'createProject' ,
751- {'cloudProjectId' : cloudProjectId},
756+ {
757+ 'cloudProjectId' : cloudProjectId,
758+ 'underSubscriptionId' : underSubscriptionId,
759+ },
752760 );
753761
754762 /// Fetches the specified project.
You can’t perform that action at this time.
0 commit comments