diff --git a/src/Dataform/DirectoryEntry.php b/src/Dataform/DirectoryEntry.php index 12ef97bca50..f250e160200 100644 --- a/src/Dataform/DirectoryEntry.php +++ b/src/Dataform/DirectoryEntry.php @@ -20,13 +20,15 @@ class DirectoryEntry extends \Google\Model { /** - * A child directory in the directory. + * A child directory in the directory. The path is returned including the full + * folder structure from the root. * * @var string */ public $directory; /** - * A file in the directory. + * A file in the directory. The path is returned including the full folder + * structure from the root. * * @var string */ @@ -35,7 +37,8 @@ class DirectoryEntry extends \Google\Model protected $metadataDataType = ''; /** - * A child directory in the directory. + * A child directory in the directory. The path is returned including the full + * folder structure from the root. * * @param string $directory */ @@ -51,7 +54,8 @@ public function getDirectory() return $this->directory; } /** - * A file in the directory. + * A file in the directory. The path is returned including the full folder + * structure from the root. * * @param string $file */ diff --git a/src/Dataform/GitRemoteSettings.php b/src/Dataform/GitRemoteSettings.php index 21f7f42c805..f79478b9dc6 100644 --- a/src/Dataform/GitRemoteSettings.php +++ b/src/Dataform/GitRemoteSettings.php @@ -45,12 +45,19 @@ class GitRemoteSettings extends \Google\Model */ public $authenticationTokenSecretVersion; /** - * Required. The Git remote's default branch name. If not set, `main` will be - * used and stored for the repository. + * Optional. The Git remote's default branch name. If not set `main` will be + * used. * * @var string */ public $defaultBranch; + /** + * Output only. The Git remote's effective default branch name. This is the + * default branch name of the Git remote if it is set, otherwise it is `main`. + * + * @var string + */ + public $effectiveDefaultBranch; protected $sshAuthenticationConfigType = SshAuthenticationConfig::class; protected $sshAuthenticationConfigDataType = ''; /** @@ -87,8 +94,8 @@ public function getAuthenticationTokenSecretVersion() return $this->authenticationTokenSecretVersion; } /** - * Required. The Git remote's default branch name. If not set, `main` will be - * used and stored for the repository. + * Optional. The Git remote's default branch name. If not set `main` will be + * used. * * @param string $defaultBranch */ @@ -103,6 +110,23 @@ public function getDefaultBranch() { return $this->defaultBranch; } + /** + * Output only. The Git remote's effective default branch name. This is the + * default branch name of the Git remote if it is set, otherwise it is `main`. + * + * @param string $effectiveDefaultBranch + */ + public function setEffectiveDefaultBranch($effectiveDefaultBranch) + { + $this->effectiveDefaultBranch = $effectiveDefaultBranch; + } + /** + * @return string + */ + public function getEffectiveDefaultBranch() + { + return $this->effectiveDefaultBranch; + } /** * Optional. Authentication fields for remote uris using SSH protocol. * diff --git a/src/Dataform/Resource/ProjectsLocationsTeamFolders.php b/src/Dataform/Resource/ProjectsLocationsTeamFolders.php index d0a74856bad..17eff15a35b 100644 --- a/src/Dataform/Resource/ProjectsLocationsTeamFolders.php +++ b/src/Dataform/Resource/ProjectsLocationsTeamFolders.php @@ -198,7 +198,7 @@ public function queryContents($teamFolder, $optParams = []) * `orderBy="display_name desc"` * @opt_param int pageSize Optional. Maximum number of TeamFolders to return. * The server may return fewer items than requested. If unspecified, the server - * will pick an appropriate default. + * will pick a default of page_size = 50. * @opt_param string pageToken Optional. Page token received from a previous * `SearchTeamFolders` call. Provide this to retrieve the subsequent page. When * paginating, all other parameters provided to `SearchTeamFolders`, with the