Class GitFileSource (3.24.0)

GitFileSource(mapping=None, *, ignore_unknown_fields=False, **kwargs)

GitFileSource describes a file within a (possibly remote) code repository.

.. _oneof: https://proto-plus-python.readthedocs.io/en/stable/fields.html#oneofs-mutually-exclusive-fields

Attributes

NameDescription
path str
The path of the file, with the repo root as the root of the path.
uri str
The URI of the repo. Either uri or repository can be specified. If unspecified, the repo from which the trigger invocation originated is assumed to be the repo from which to read the specified path.
repository str
The fully qualified resource name of the Repos API repository. Either URI or repository can be specified. If unspecified, the repo from which the trigger invocation originated is assumed to be the repo from which to read the specified path. This field is a member of oneof_ source.
repo_type google.cloud.devtools.cloudbuild_v1.types.GitFileSource.RepoType
See RepoType above.
revision str
The branch, tag, arbitrary ref, or SHA version of the repo to use when resolving the filename (optional). This field respects the same syntax/resolution as described here: https://git-scm.com/docs/gitrevisions If unspecified, the revision from which the trigger invocation originated is assumed to be the revision from which to read the specified path.
github_enterprise_config str
The full resource name of the github enterprise config. Format: projects/{project}/locations/{location}/githubEnterpriseConfigs/{id}. projects/{project}/githubEnterpriseConfigs/{id}. This field is a member of oneof_ enterprise_config.

Classes

RepoType

RepoType(value)

The type of the repo, since it may not be explicit from the repo field (e.g from a URL).

Values: UNKNOWN (0): The default, unknown repo type. Don't use it, instead use one of the other repo types. CLOUD_SOURCE_REPOSITORIES (1): A Google Cloud Source Repositories-hosted repo. GITHUB (2): A GitHub-hosted repo not necessarily on "github.com" (i.e. GitHub Enterprise). BITBUCKET_SERVER (3): A Bitbucket Server-hosted repo. GITLAB (4): A GitLab-hosted repo.