Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions src/Dataform/DirectoryEntry.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand All @@ -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
*/
Expand All @@ -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
*/
Expand Down
32 changes: 28 additions & 4 deletions src/Dataform/GitRemoteSettings.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 = '';
/**
Expand Down Expand Up @@ -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
*/
Expand All @@ -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.
*
Expand Down
2 changes: 1 addition & 1 deletion src/Dataform/Resource/ProjectsLocationsTeamFolders.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading