airflow.providers.google.cloud.hooks.cloud_build
¶
用于 Google Cloud Build 服务的 Hook。
模块内容¶
类¶
用于 Google Cloud Build 服务的 Hook。 |
|
用于 Google Cloud Build 服务的异步 Hook。 |
属性¶
- class airflow.providers.google.cloud.hooks.cloud_build.CloudBuildHook(gcp_conn_id='google_cloud_default', impersonation_chain=None, **kwargs)[源代码]¶
基类:
airflow.providers.google.common.hooks.base_google.GoogleBaseHook
用于 Google Cloud Build 服务的 Hook。
- 参数
gcp_conn_id (str) – 获取连接信息时使用的连接 ID。
impersonation_chain (str | collections.abc.Sequence[str] | None) – 可选的服务帐户,用于使用短期凭据模拟,或用于获取列表中最后一个帐户的 access_token 的链式帐户列表,该帐户将在请求中被模拟。如果设置为字符串,则该帐户必须授予原始帐户“服务帐户令牌创建者”IAM 角色。如果设置为序列,则列表中的标识必须将“服务帐户令牌创建者”IAM 角色授予紧接在其之前的标识,列表中的第一个帐户将此角色授予原始帐户。
- get_conn(location='global')[源代码]¶
检索与 Google Cloud Build 的连接。
- 参数
location (str) – 项目的位置。
- 返回
Google Cloud Build 客户端对象。
- 返回类型
google.cloud.devtools.cloudbuild_v1.CloudBuildClient
- cancel_build(id_, project_id=PROVIDE_PROJECT_ID, retry=DEFAULT, timeout=None, metadata=(), location='global')[源代码]¶
取消正在进行的构建。
- 参数
id – 构建的 ID。
project_id (str) – 可选,Google Cloud Project 的 project_id,其中包含该函数。如果设置为 None 或缺失,则使用来自 GCP 连接的默认 project_id。
retry (google.api_core.retry.Retry | google.api_core.gapic_v1.method._MethodDefault) – 可选,用于重试请求的重试对象。如果指定 None,则不会重试请求。
timeout (float | None) – 可选,等待请求完成的时间量(以秒为单位)。请注意,如果指定 retry,则超时适用于每个单独的尝试。
metadata (collections.abc.Sequence[tuple[str, str]]) – 可选,提供给方法的其他元数据。
location (str) – 项目的位置。
- create_build_without_waiting_for_result(build, project_id=PROVIDE_PROJECT_ID, retry=DEFAULT, timeout=None, metadata=(), location='global')[源代码]¶
在不等待完成的情况下,使用指定的配置启动构建。
- 参数
build (dict | google.cloud.devtools.cloudbuild_v1.types.Build) – 要创建的构建资源。如果提供了 dict,则它必须与 protobuf 消息 google.cloud.devtools.cloudbuild_v1.types.Build 的形式相同
project_id (str) – 可选,Google Cloud Project 的 project_id,其中包含该函数。如果设置为 None 或缺失,则使用来自 GCP 连接的默认 project_id。
retry (google.api_core.retry.Retry | google.api_core.gapic_v1.method._MethodDefault) – 可选,用于重试请求的重试对象。如果指定 None,则不会重试请求。
timeout (float | None) – 可选,等待请求完成的时间量(以秒为单位)。请注意,如果指定 retry,则超时适用于每个单独的尝试。
metadata (collections.abc.Sequence[tuple[str, str]]) – 可选,提供给方法的其他元数据。
location (str) – 项目的位置。
- create_build(build, project_id=PROVIDE_PROJECT_ID, wait=True, retry=DEFAULT, timeout=None, metadata=())[源代码]¶
使用指定的配置启动构建。
- 参数
build (dict | google.cloud.devtools.cloudbuild_v1.types.Build) – 要创建的构建资源。如果提供了 dict,则它必须与 protobuf 消息 google.cloud.devtools.cloudbuild_v1.types.Build 的形式相同
project_id (str) – 可选,Google Cloud Project 的 project_id,其中包含该函数。如果设置为 None 或缺失,则使用来自 GCP 连接的默认 project_id。
wait (bool) – 可选,等待操作完成。
retry (google.api_core.retry.Retry | google.api_core.gapic_v1.method._MethodDefault) – 可选,用于重试请求的重试对象。如果指定 None,则不会重试请求。
timeout (float | None) – 可选,等待请求完成的时间量(以秒为单位)。请注意,如果指定 retry,则超时适用于每个单独的尝试。
metadata (collections.abc.Sequence[tuple[str, str]]) – 可选,提供给方法的其他元数据。
- create_build_trigger(trigger, project_id=PROVIDE_PROJECT_ID, retry=DEFAULT, timeout=None, metadata=(), location='global')[source]¶
创建一个新的 BuildTrigger。
- 参数
trigger (dict | google.cloud.devtools.cloudbuild_v1.types.BuildTrigger) – 要创建的 BuildTrigger。如果提供的是字典,则其格式必须与 protobuf 消息 google.cloud.devtools.cloudbuild_v1.types.BuildTrigger 相同
project_id (str) – 可选,Google Cloud Project 的 project_id,其中包含该函数。如果设置为 None 或缺失,则使用来自 GCP 连接的默认 project_id。
retry (google.api_core.retry.Retry | google.api_core.gapic_v1.method._MethodDefault) – 可选,用于重试请求的重试对象。如果指定 None,则不会重试请求。
timeout (float | None) – 可选,等待请求完成的时间量(以秒为单位)。请注意,如果指定 retry,则超时适用于每个单独的尝试。
metadata (collections.abc.Sequence[tuple[str, str]]) – 可选,提供给方法的其他元数据。
location (str) – 项目的位置。
- delete_build_trigger(trigger_id, project_id=PROVIDE_PROJECT_ID, retry=DEFAULT, timeout=None, metadata=(), location='global')[source]¶
根据项目 ID 和触发器 ID 删除 BuildTrigger。
- 参数
trigger_id (str) – 要删除的 BuildTrigger 的 ID。
project_id (str) – 可选,Google Cloud Project 的 project_id,其中包含该函数。如果设置为 None 或缺失,则使用来自 GCP 连接的默认 project_id。
retry (google.api_core.retry.Retry | google.api_core.gapic_v1.method._MethodDefault) – 可选,用于重试请求的重试对象。如果指定 None,则不会重试请求。
timeout (float | None) – 可选,等待请求完成的时间量(以秒为单位)。请注意,如果指定 retry,则超时适用于每个单独的尝试。
metadata (collections.abc.Sequence[tuple[str, str]]) – 可选,提供给方法的其他元数据。
location (str) – 项目的位置。
- get_build(id_, project_id=PROVIDE_PROJECT_ID, retry=DEFAULT, timeout=None, metadata=(), location='global')[source]¶
返回有关先前请求的构建的信息。
- 参数
id – 构建的 ID。
project_id (str) – 可选,Google Cloud Project 的 project_id,其中包含该函数。如果设置为 None 或缺失,则使用来自 GCP 连接的默认 project_id。
retry (google.api_core.retry.Retry | google.api_core.gapic_v1.method._MethodDefault) – 可选,用于重试请求的重试对象。如果指定 None,则不会重试请求。
timeout (float | None) – 可选,等待请求完成的时间量(以秒为单位)。请注意,如果指定 retry,则超时适用于每个单独的尝试。
metadata (collections.abc.Sequence[tuple[str, str]]) – 可选,提供给方法的其他元数据。
location (str) – 项目的位置。
- get_build_trigger(trigger_id, project_id=PROVIDE_PROJECT_ID, retry=DEFAULT, timeout=None, metadata=(), location='global')[source]¶
返回有关 BuildTrigger 的信息。
- 参数
trigger_id (str) – 要获取的 BuildTrigger 的 ID。
project_id (str) – 可选,Google Cloud Project 的 project_id,其中包含该函数。如果设置为 None 或缺失,则使用来自 GCP 连接的默认 project_id。
retry (google.api_core.retry.Retry | google.api_core.gapic_v1.method._MethodDefault) – 可选,用于重试请求的重试对象。如果指定 None,则不会重试请求。
timeout (float | None) – 可选,等待请求完成的时间量(以秒为单位)。请注意,如果指定 retry,则超时适用于每个单独的尝试。
metadata (collections.abc.Sequence[tuple[str, str]]) – 可选,提供给方法的其他元数据。
location (str) – 项目的位置。
- list_build_triggers(location='global', project_id=PROVIDE_PROJECT_ID, page_size=None, page_token=None, retry=DEFAULT, timeout=None, metadata=())[source]¶
列出已存在的 BuildTrigger。
- 参数
project_id (str) – Google Cloud Project 项目 ID,函数属于该项目 ID。如果设置为 None 或缺失,则使用来自 GCP 连接的默认项目 ID。
location (str) – 项目的位置。
page_size (int | None) – 可选,列表中返回的结果数。
page_token (str | None) – 可选,用于跳到列表中特定位置的令牌。
retry (google.api_core.retry.Retry | google.api_core.gapic_v1.method._MethodDefault) – 可选,用于重试请求的重试对象。如果指定 None,则不会重试请求。
timeout (float | None) – 可选,等待请求完成的时间量(以秒为单位)。请注意,如果指定 retry,则超时适用于每个单独的尝试。
metadata (collections.abc.Sequence[tuple[str, str]]) – 可选,提供给方法的其他元数据。
- list_builds(location='global', project_id=PROVIDE_PROJECT_ID, page_size=None, page_token=None, filter_=None, retry=DEFAULT, timeout=None, metadata=())[source]¶
列出先前请求的构建。
- 参数
project_id (str) – Google Cloud Project 项目 ID,函数属于该项目 ID。如果设置为 None 或缺失,则使用来自 Google Cloud 连接的默认项目 ID。
location (str) – 项目的位置。
page_size (int | None) – 可选,列表中返回的结果数。
page_token (int | None) – 可选,用于跳到列表中特定位置的令牌。
filter – 可选,用于约束结果的原始筛选文本。
retry (google.api_core.retry.Retry | google.api_core.gapic_v1.method._MethodDefault) – 可选,用于重试请求的重试对象。如果指定 None,则不会重试请求。
timeout (float | None) – 可选,等待请求完成的时间量(以秒为单位)。请注意,如果指定 retry,则超时适用于每个单独的尝试。
metadata (collections.abc.Sequence[tuple[str, str]]) – 可选,提供给方法的其他元数据。
- retry_build(id_, project_id=PROVIDE_PROJECT_ID, wait=True, retry=DEFAULT, timeout=None, metadata=(), location='global')[source]¶
使用原始构建请求创建新构建;可能产生也可能不产生相同的构建。
- 参数
id – 原始构建的构建 ID。
project_id (str) – 可选,Google Cloud Project 的 project_id,其中包含该函数。如果设置为 None 或缺失,则使用来自 GCP 连接的默认 project_id。
wait (bool) – 可选,等待操作完成。
retry (google.api_core.retry.Retry | google.api_core.gapic_v1.method._MethodDefault) – 可选,用于重试请求的重试对象。如果指定 None,则不会重试请求。
timeout (float | None) – 可选,等待请求完成的时间量(以秒为单位)。请注意,如果指定 retry,则超时适用于每个单独的尝试。
metadata (collections.abc.Sequence[tuple[str, str]]) – 可选,提供给方法的其他元数据。
location (str) – 项目的位置。
- run_build_trigger(trigger_id, source, project_id=PROVIDE_PROJECT_ID, wait=True, retry=DEFAULT, timeout=None, metadata=(), location='global')[source]¶
在特定的源修订版上运行 BuildTrigger。
- 参数
trigger_id (str) – 触发器的 ID。
source (dict | google.cloud.devtools.cloudbuild_v1.types.RepoSource) – 要针对此触发器构建的源。 如果提供字典,则其形式必须与protobuf消息 google.cloud.devtools.cloudbuild_v1.types.RepoSource 相同
project_id (str) – 可选,Google Cloud Project 的 project_id,其中包含该函数。如果设置为 None 或缺失,则使用来自 GCP 连接的默认 project_id。
wait (bool) – 可选,等待操作完成。
retry (google.api_core.retry.Retry | google.api_core.gapic_v1.method._MethodDefault) – 可选,用于重试请求的重试对象。如果指定 None,则不会重试请求。
timeout (float | None) – 可选,等待请求完成的时间量(以秒为单位)。请注意,如果指定 retry,则超时适用于每个单独的尝试。
metadata (collections.abc.Sequence[tuple[str, str]]) – 可选,提供给方法的其他元数据。
location (str) – 项目的位置。
- update_build_trigger(trigger_id, trigger, project_id, retry=DEFAULT, timeout=None, metadata=(), location='global')[source]¶
通过项目 ID 和触发器 ID 更新 BuildTrigger。
- 参数
trigger_id (str) – 触发器的 ID。
trigger (dict | google.cloud.devtools.cloudbuild_v1.types.BuildTrigger) – 要创建的 BuildTrigger。如果提供的是字典,则其格式必须与 protobuf 消息 google.cloud.devtools.cloudbuild_v1.types.BuildTrigger 相同
project_id (str) – 可选,Google Cloud Project 的 project_id,其中包含该函数。如果设置为 None 或缺失,则使用来自 GCP 连接的默认 project_id。
retry (google.api_core.retry.Retry | google.api_core.gapic_v1.method._MethodDefault) – 可选,用于重试请求的重试对象。如果指定 None,则不会重试请求。
timeout (float | None) – 可选,等待请求完成的时间量(以秒为单位)。请注意,如果指定 retry,则超时适用于每个单独的尝试。
metadata (collections.abc.Sequence[tuple[str, str]]) – 可选,提供给方法的其他元数据。
location (str) – 项目的位置。
- class airflow.providers.google.cloud.hooks.cloud_build.CloudBuildAsyncHook(gcp_conn_id='google_cloud_default', impersonation_chain=None, **kwargs)[source]¶
基类:
airflow.providers.google.common.hooks.base_google.GoogleBaseHook
用于 Google Cloud Build 服务的异步 Hook。