Skip to content

Commit 7e761c8

Browse files
1 parent 290efa7 commit 7e761c8

5 files changed

Lines changed: 22 additions & 20 deletions

File tree

src/Dataform/Folder.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ class Folder extends \Google\Model
2323
* Optional. The containing Folder resource name. This should take the format:
2424
* projects/{project}/locations/{location}/folders/{folder},
2525
* projects/{project}/locations/{location}/teamFolders/{teamFolder}, or just
26-
* projects/{project}/locations/{location} if this is a root Folder. This
27-
* field can only be updated through MoveFolder.
26+
* "" if this is a root Folder. This field can only be updated through
27+
* MoveFolder.
2828
*
2929
* @var string
3030
*/
@@ -82,8 +82,8 @@ class Folder extends \Google\Model
8282
* Optional. The containing Folder resource name. This should take the format:
8383
* projects/{project}/locations/{location}/folders/{folder},
8484
* projects/{project}/locations/{location}/teamFolders/{teamFolder}, or just
85-
* projects/{project}/locations/{location} if this is a root Folder. This
86-
* field can only be updated through MoveFolder.
85+
* "" if this is a root Folder. This field can only be updated through
86+
* MoveFolder.
8787
*
8888
* @param string $containingFolder
8989
*/

src/Dataform/GitRemoteSettings.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ class GitRemoteSettings extends \Google\Model
4545
*/
4646
public $authenticationTokenSecretVersion;
4747
/**
48-
* Required. The Git remote's default branch name.
48+
* Required. The Git remote's default branch name. If not set, `main` will be
49+
* used and stored for the repository.
4950
*
5051
* @var string
5152
*/
@@ -86,7 +87,8 @@ public function getAuthenticationTokenSecretVersion()
8687
return $this->authenticationTokenSecretVersion;
8788
}
8889
/**
89-
* Required. The Git remote's default branch name.
90+
* Required. The Git remote's default branch name. If not set, `main` will be
91+
* used and stored for the repository.
9092
*
9193
* @param string $defaultBranch
9294
*/

src/Dataform/Resource/ProjectsLocations.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,17 +101,17 @@ public function listProjectsLocations($name, $optParams = [])
101101
* folder contains all resources that are created by the user and not contained
102102
* in any other folder. (locations.queryUserRootContents)
103103
*
104-
* @param string $location Required. Location of the user root folder whose
105-
* contents to list. Format: projects/locations
104+
* @param string $location Required. Location of the user root folder to list
105+
* contents for. Format: projects/locations
106106
* @param array $optParams Optional parameters.
107107
*
108108
* @opt_param string filter Optional. Optional filtering for the returned list.
109-
* Filtering is currently only supported on the `display_name` field. Example: -
109+
* Filtering is currently only supported on the `display_name` field. Example: *
110110
* `filter="display_name="MyFolder""`
111111
* @opt_param string orderBy Optional. Field to additionally sort results by.
112112
* Will order Folders before Repositories, and then by `order_by` in ascending
113113
* order. Supported keywords: display_name (default), created_at,
114-
* last_modified_at. Examples: - `orderBy="display_name"` -
114+
* last_modified_at. Examples: * `orderBy="display_name"` *
115115
* `orderBy="display_name desc"`
116116
* @opt_param int pageSize Optional. Maximum number of paths to return. The
117117
* server may return fewer items than requested. If unspecified, the server will

src/Dataform/Resource/ProjectsLocationsFolders.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -169,17 +169,17 @@ public function patch($name, Folder $postBody, $optParams = [])
169169
/**
170170
* Returns the contents of a given Folder. (folders.queryFolderContents)
171171
*
172-
* @param string $folder Required. Name of the folder whose contents to list.
173-
* Format: projects/locations/folders
172+
* @param string $folder Required. Resource name of the Folder to list contents
173+
* for. Format: projects/locations/folders
174174
* @param array $optParams Optional parameters.
175175
*
176176
* @opt_param string filter Optional. Optional filtering for the returned list.
177-
* Filtering is currently only supported on the `display_name` field. Example: -
177+
* Filtering is currently only supported on the `display_name` field. Example: *
178178
* `filter="display_name="MyFolder""`
179179
* @opt_param string orderBy Optional. Field to additionally sort results by.
180180
* Will order Folders before Repositories, and then by `order_by` in ascending
181181
* order. Supported keywords: display_name (default), create_time,
182-
* last_modified_time. Examples: - `orderBy="display_name"` -
182+
* last_modified_time. Examples: * `orderBy="display_name"` *
183183
* `orderBy="display_name desc"`
184184
* @opt_param int pageSize Optional. Maximum number of paths to return. The
185185
* server may return fewer items than requested. If unspecified, the server will

src/Dataform/Resource/ProjectsLocationsTeamFolders.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -152,17 +152,17 @@ public function patch($name, TeamFolder $postBody, $optParams = [])
152152
/**
153153
* Returns the contents of a given TeamFolder. (teamFolders.queryContents)
154154
*
155-
* @param string $teamFolder Required. Name of the team_folder whose contents to
156-
* list. Format: `projects/locations/teamFolders`.
155+
* @param string $teamFolder Required. Resource name of the TeamFolder to list
156+
* contents for. Format: `projects/locations/teamFolders`.
157157
* @param array $optParams Optional parameters.
158158
*
159159
* @opt_param string filter Optional. Optional filtering for the returned list.
160-
* Filtering is currently only supported on the `display_name` field. Example: -
160+
* Filtering is currently only supported on the `display_name` field. Example: *
161161
* `filter="display_name="MyFolder""`
162162
* @opt_param string orderBy Optional. Field to additionally sort results by.
163163
* Will order Folders before Repositories, and then by `order_by` in ascending
164164
* order. Supported keywords: `display_name` (default), `create_time`,
165-
* last_modified_time. Examples: - `orderBy="display_name"` -
165+
* last_modified_time. Examples: * `orderBy="display_name"` *
166166
* `orderBy="display_name desc"`
167167
* @opt_param int pageSize Optional. Maximum number of paths to return. The
168168
* server may return fewer items than requested. If unspecified, the server will
@@ -190,11 +190,11 @@ public function queryContents($teamFolder, $optParams = [])
190190
* @param array $optParams Optional parameters.
191191
*
192192
* @opt_param string filter Optional. Optional filtering for the returned list.
193-
* Filtering is currently only supported on the `display_name` field. Example: -
193+
* Filtering is currently only supported on the `display_name` field. Example: *
194194
* `filter="display_name="MyFolder""`
195195
* @opt_param string orderBy Optional. Field to additionally sort results by.
196196
* Supported keywords: `display_name` (default), `create_time`,
197-
* `last_modified_time`. Examples: - `orderBy="display_name"` -
197+
* `last_modified_time`. Examples: * `orderBy="display_name"` *
198198
* `orderBy="display_name desc"`
199199
* @opt_param int pageSize Optional. Maximum number of TeamFolders to return.
200200
* The server may return fewer items than requested. If unspecified, the server

0 commit comments

Comments
 (0)