次の方法で共有


Microsoft.ContainerRegistry レジストリ/pipelineRuns 2023-01-01-preview

Bicep リソース定義

registries/pipelineRuns リソースの種類は、次をターゲットとする操作と共にデプロイできます。

各 API バージョンの変更されたプロパティの一覧については、「 変更ログ」を参照してください。

リソース形式

Microsoft.ContainerRegistry/registries/pipelineRuns リソースを作成するには、次の Bicep をテンプレートに追加します。

resource symbolicname 'Microsoft.ContainerRegistry/registries/pipelineRuns@2023-01-01-preview' = {
  name: 'string'
  parent: resourceSymbolicName
  properties: {
    forceUpdateTag: 'string'
    request: {
      artifacts: [
        'string'
      ]
      catalogDigest: 'string'
      pipelineResourceId: 'string'
      source: {
        name: 'string'
        type: 'AzureStorageBlob'
      }
      target: {
        name: 'string'
        type: 'AzureStorageBlob'
      }
    }
  }
}

プロパティ値

registries/pipelineRuns

Name 説明
name リソース名

Bicep で子リソースの名前と型を設定する方法を参照してください。
string (必須)
parent Bicep では、子リソースの親リソースを指定できます。 このプロパティを追加する必要があるのは、子リソースが親リソースの外部で宣言されている場合のみです。

詳細については、「 親リソースの外部にある子リソース」を参照してください。
種類のリソースのシンボル名: レジストリ
properties パイプライン実行のプロパティ。 PipelineRunProperties

PipelineRunProperties

Name 説明
forceUpdateTag パイプラインの実行構成が変更されていない場合でも、パイプラインの実行を強制的に再作成する方法。 string
request パイプライン実行の要求パラメーター。 PipelineRunRequest

PipelineRunRequest

Name 説明
artifacts パイプラインによって転送されるソース成果物の一覧。
リポジトリ ('hello-world') でイメージを指定します。 これにより、'latest' タグが使用されます。
タグ ('hello-world:latest') で画像を指定します。
sha256 ベースのマニフェスト ダイジェスト ('hello-world@sha256:abc123') で画像を指定します。
string[]
catalogDigest 成果物の転送に使用される tar のダイジェスト。 string
pipelineResourceId 実行するパイプラインのリソース ID。 string
source パイプライン実行のソース プロパティ。 PipelineRunSourceProperties
ターゲット (target) パイプライン実行のターゲット プロパティ。 PipelineRunTargetProperties

PipelineRunSourceProperties

Name 説明
name ソースの名前。 string
type 変換前の型。 'AzureStorageBlob'

PipelineRunTargetProperties

Name 説明
name ターゲットの名前。 string
type 対象の型です。 'AzureStorageBlob'

ARM テンプレート リソース定義

registries/pipelineRuns リソースの種類は、次をターゲットとする操作と共にデプロイできます。

各 API バージョンの変更されたプロパティの一覧については、「 変更ログ」を参照してください。

リソース形式

Microsoft.ContainerRegistry/registries/pipelineRuns リソースを作成するには、次の JSON をテンプレートに追加します。

{
  "type": "Microsoft.ContainerRegistry/registries/pipelineRuns",
  "apiVersion": "2023-01-01-preview",
  "name": "string",
  "properties": {
    "forceUpdateTag": "string",
    "request": {
      "artifacts": [ "string" ],
      "catalogDigest": "string",
      "pipelineResourceId": "string",
      "source": {
        "name": "string",
        "type": "AzureStorageBlob"
      },
      "target": {
        "name": "string",
        "type": "AzureStorageBlob"
      }
    }
  }
}

プロパティ値

registries/pipelineRuns

Name 説明
type リソースの種類 'Microsoft.ContainerRegistry/registries/pipelineRuns'
apiVersion リソース API のバージョン '2023-01-01-preview'
name リソース名

JSON ARM テンプレートで子リソースの名前と型を設定する方法を参照してください。
string (必須)
properties パイプライン実行のプロパティ。 PipelineRunProperties

PipelineRunProperties

Name 説明
forceUpdateTag パイプラインの実行構成が変更されていない場合でも、パイプラインの実行を強制的に再作成する方法。 string
request パイプライン実行の要求パラメーター。 PipelineRunRequest

PipelineRunRequest

Name 説明
artifacts パイプラインによって転送されるソース成果物の一覧。
リポジトリ ('hello-world') でイメージを指定します。 これにより、'latest' タグが使用されます。
タグ ('hello-world:latest') で画像を指定します。
sha256 ベースのマニフェスト ダイジェスト ('hello-world@sha256:abc123') で画像を指定します。
string[]
catalogDigest 成果物の転送に使用される tar のダイジェスト。 string
pipelineResourceId 実行するパイプラインのリソース ID。 string
source パイプライン実行のソース プロパティ。 PipelineRunSourceProperties
ターゲット (target) パイプライン実行のターゲット プロパティ。 PipelineRunTargetProperties

PipelineRunSourceProperties

Name 説明
name ソースの名前。 string
type 変換前の型。 'AzureStorageBlob'

PipelineRunTargetProperties

Name 説明
name ターゲットの名前。 string
type 対象の型です。 'AzureStorageBlob'

Terraform (AzAPI プロバイダー) リソース定義

registries/pipelineRuns リソースの種類は、次をターゲットとする操作と共にデプロイできます。

  • リソース グループ

各 API バージョンの変更されたプロパティの一覧については、「 変更ログ」を参照してください。

リソース形式

Microsoft.ContainerRegistry/registries/pipelineRuns リソースを作成するには、次の Terraform をテンプレートに追加します。

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.ContainerRegistry/registries/pipelineRuns@2023-01-01-preview"
  name = "string"
  parent_id = "string"
  body = jsonencode({
    properties = {
      forceUpdateTag = "string"
      request = {
        artifacts = [
          "string"
        ]
        catalogDigest = "string"
        pipelineResourceId = "string"
        source = {
          name = "string"
          type = "AzureStorageBlob"
        }
        target = {
          name = "string"
          type = "AzureStorageBlob"
        }
      }
    }
  })
}

プロパティ値

registries/pipelineRuns

Name 説明
type リソースの種類 "Microsoft.ContainerRegistry/registries/pipelineRuns@2023-01-01-preview"
name リソース名 string (必須)
parent_id このリソースの親であるリソースの ID。 種類のリソースの ID: レジストリ
properties パイプライン実行のプロパティ。 PipelineRunProperties

PipelineRunProperties

Name 説明
forceUpdateTag パイプラインの実行構成が変更されていない場合でも、パイプラインの実行を強制的に再作成する方法。 string
request パイプライン実行の要求パラメーター。 PipelineRunRequest

PipelineRunRequest

Name 説明
artifacts パイプラインによって転送されるソース成果物の一覧。
リポジトリ ('hello-world') でイメージを指定します。 これにより、'latest' タグが使用されます。
タグ ('hello-world:latest') で画像を指定します。
sha256 ベースのマニフェスト ダイジェスト ('hello-world@sha256:abc123') で画像を指定します。
string[]
catalogDigest 成果物の転送に使用される tar のダイジェスト。 string
pipelineResourceId 実行するパイプラインのリソース ID。 string
source パイプライン実行のソース プロパティ。 PipelineRunSourceProperties
ターゲット (target) パイプライン実行のターゲット プロパティ。 PipelineRunTargetProperties

PipelineRunSourceProperties

Name 説明
name ソースの名前。 string
type 変換前の型。 "AzureStorageBlob"

PipelineRunTargetProperties

Name 説明
name ターゲットの名前。 string
type 対象の型です。 "AzureStorageBlob"