alicloud.cs.RegistryEnterpriseSyncRule
Explore with Pulumi AI
Provides a Container Registry Sync Rule resource.
For information about Container Registry Sync Rule and how to use it, see What is Sync Rule
NOTE: Available since v1.90.0.
NOTE: You need to set your registry password in Container Registry console before use this resource.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
import * as random from "@pulumi/random";
const config = new pulumi.Config();
const name = config.get("name") || "terraform-example";
const _default = alicloud.getRegions({
current: true,
});
const defaultInteger = new random.index.Integer("default", {
min: 10000,
max: 99999,
});
const source = new alicloud.cr.RegistryEnterpriseInstance("source", {
paymentType: "Subscription",
period: 1,
renewPeriod: 0,
renewalStatus: "ManualRenewal",
instanceType: "Advanced",
instanceName: `${name}-source-${defaultInteger.result}`,
});
const target = new alicloud.cr.RegistryEnterpriseInstance("target", {
paymentType: "Subscription",
period: 1,
renewPeriod: 0,
renewalStatus: "ManualRenewal",
instanceType: "Advanced",
instanceName: `${name}-target-${defaultInteger.result}`,
});
const sourceRegistryEnterpriseNamespace = new alicloud.cs.RegistryEnterpriseNamespace("source", {
instanceId: source.id,
name: `${name}-${defaultInteger.result}`,
autoCreate: false,
defaultVisibility: "PUBLIC",
});
const targetRegistryEnterpriseNamespace = new alicloud.cs.RegistryEnterpriseNamespace("target", {
instanceId: target.id,
name: `${name}-${defaultInteger.result}`,
autoCreate: false,
defaultVisibility: "PUBLIC",
});
const sourceRegistryEnterpriseRepo = new alicloud.cs.RegistryEnterpriseRepo("source", {
instanceId: source.id,
namespace: sourceRegistryEnterpriseNamespace.name,
name: `${name}-${defaultInteger.result}`,
summary: "this is summary of my new repo",
repoType: "PUBLIC",
});
const targetRegistryEnterpriseRepo = new alicloud.cs.RegistryEnterpriseRepo("target", {
instanceId: target.id,
namespace: targetRegistryEnterpriseNamespace.name,
name: `${name}-${defaultInteger.result}`,
summary: "this is summary of my new repo",
repoType: "PUBLIC",
});
const defaultRegistryEnterpriseSyncRule = new alicloud.cs.RegistryEnterpriseSyncRule("default", {
instanceId: source.id,
namespaceName: sourceRegistryEnterpriseNamespace.name,
syncRuleName: `${name}-${defaultInteger.result}`,
targetInstanceId: target.id,
targetNamespaceName: targetRegistryEnterpriseNamespace.name,
targetRegionId: _default.then(_default => _default.regions?.[0]?.id),
tagFilter: ".*",
repoName: sourceRegistryEnterpriseRepo.name,
targetRepoName: targetRegistryEnterpriseRepo.name,
});
import pulumi
import pulumi_alicloud as alicloud
import pulumi_random as random
config = pulumi.Config()
name = config.get("name")
if name is None:
name = "terraform-example"
default = alicloud.get_regions(current=True)
default_integer = random.index.Integer("default",
min=10000,
max=99999)
source = alicloud.cr.RegistryEnterpriseInstance("source",
payment_type="Subscription",
period=1,
renew_period=0,
renewal_status="ManualRenewal",
instance_type="Advanced",
instance_name=f"{name}-source-{default_integer['result']}")
target = alicloud.cr.RegistryEnterpriseInstance("target",
payment_type="Subscription",
period=1,
renew_period=0,
renewal_status="ManualRenewal",
instance_type="Advanced",
instance_name=f"{name}-target-{default_integer['result']}")
source_registry_enterprise_namespace = alicloud.cs.RegistryEnterpriseNamespace("source",
instance_id=source.id,
name=f"{name}-{default_integer['result']}",
auto_create=False,
default_visibility="PUBLIC")
target_registry_enterprise_namespace = alicloud.cs.RegistryEnterpriseNamespace("target",
instance_id=target.id,
name=f"{name}-{default_integer['result']}",
auto_create=False,
default_visibility="PUBLIC")
source_registry_enterprise_repo = alicloud.cs.RegistryEnterpriseRepo("source",
instance_id=source.id,
namespace=source_registry_enterprise_namespace.name,
name=f"{name}-{default_integer['result']}",
summary="this is summary of my new repo",
repo_type="PUBLIC")
target_registry_enterprise_repo = alicloud.cs.RegistryEnterpriseRepo("target",
instance_id=target.id,
namespace=target_registry_enterprise_namespace.name,
name=f"{name}-{default_integer['result']}",
summary="this is summary of my new repo",
repo_type="PUBLIC")
default_registry_enterprise_sync_rule = alicloud.cs.RegistryEnterpriseSyncRule("default",
instance_id=source.id,
namespace_name=source_registry_enterprise_namespace.name,
sync_rule_name=f"{name}-{default_integer['result']}",
target_instance_id=target.id,
target_namespace_name=target_registry_enterprise_namespace.name,
target_region_id=default.regions[0].id,
tag_filter=".*",
repo_name=source_registry_enterprise_repo.name,
target_repo_name=target_registry_enterprise_repo.name)
package main
import (
"fmt"
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud"
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/cr"
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/cs"
"github.com/pulumi/pulumi-random/sdk/v4/go/random"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
name := "terraform-example"
if param := cfg.Get("name"); param != "" {
name = param
}
_default, err := alicloud.GetRegions(ctx, &alicloud.GetRegionsArgs{
Current: pulumi.BoolRef(true),
}, nil)
if err != nil {
return err
}
defaultInteger, err := random.NewInteger(ctx, "default", &random.IntegerArgs{
Min: 10000,
Max: 99999,
})
if err != nil {
return err
}
source, err := cr.NewRegistryEnterpriseInstance(ctx, "source", &cr.RegistryEnterpriseInstanceArgs{
PaymentType: pulumi.String("Subscription"),
Period: pulumi.Int(1),
RenewPeriod: pulumi.Int(0),
RenewalStatus: pulumi.String("ManualRenewal"),
InstanceType: pulumi.String("Advanced"),
InstanceName: pulumi.Sprintf("%v-source-%v", name, defaultInteger.Result),
})
if err != nil {
return err
}
target, err := cr.NewRegistryEnterpriseInstance(ctx, "target", &cr.RegistryEnterpriseInstanceArgs{
PaymentType: pulumi.String("Subscription"),
Period: pulumi.Int(1),
RenewPeriod: pulumi.Int(0),
RenewalStatus: pulumi.String("ManualRenewal"),
InstanceType: pulumi.String("Advanced"),
InstanceName: pulumi.Sprintf("%v-target-%v", name, defaultInteger.Result),
})
if err != nil {
return err
}
sourceRegistryEnterpriseNamespace, err := cs.NewRegistryEnterpriseNamespace(ctx, "source", &cs.RegistryEnterpriseNamespaceArgs{
InstanceId: source.ID(),
Name: pulumi.Sprintf("%v-%v", name, defaultInteger.Result),
AutoCreate: pulumi.Bool(false),
DefaultVisibility: pulumi.String("PUBLIC"),
})
if err != nil {
return err
}
targetRegistryEnterpriseNamespace, err := cs.NewRegistryEnterpriseNamespace(ctx, "target", &cs.RegistryEnterpriseNamespaceArgs{
InstanceId: target.ID(),
Name: pulumi.Sprintf("%v-%v", name, defaultInteger.Result),
AutoCreate: pulumi.Bool(false),
DefaultVisibility: pulumi.String("PUBLIC"),
})
if err != nil {
return err
}
sourceRegistryEnterpriseRepo, err := cs.NewRegistryEnterpriseRepo(ctx, "source", &cs.RegistryEnterpriseRepoArgs{
InstanceId: source.ID(),
Namespace: sourceRegistryEnterpriseNamespace.Name,
Name: pulumi.Sprintf("%v-%v", name, defaultInteger.Result),
Summary: pulumi.String("this is summary of my new repo"),
RepoType: pulumi.String("PUBLIC"),
})
if err != nil {
return err
}
targetRegistryEnterpriseRepo, err := cs.NewRegistryEnterpriseRepo(ctx, "target", &cs.RegistryEnterpriseRepoArgs{
InstanceId: target.ID(),
Namespace: targetRegistryEnterpriseNamespace.Name,
Name: pulumi.Sprintf("%v-%v", name, defaultInteger.Result),
Summary: pulumi.String("this is summary of my new repo"),
RepoType: pulumi.String("PUBLIC"),
})
if err != nil {
return err
}
_, err = cs.NewRegistryEnterpriseSyncRule(ctx, "default", &cs.RegistryEnterpriseSyncRuleArgs{
InstanceId: source.ID(),
NamespaceName: sourceRegistryEnterpriseNamespace.Name,
SyncRuleName: pulumi.Sprintf("%v-%v", name, defaultInteger.Result),
TargetInstanceId: target.ID(),
TargetNamespaceName: targetRegistryEnterpriseNamespace.Name,
TargetRegionId: pulumi.String(_default.Regions[0].Id),
TagFilter: pulumi.String(".*"),
RepoName: sourceRegistryEnterpriseRepo.Name,
TargetRepoName: targetRegistryEnterpriseRepo.Name,
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
using Random = Pulumi.Random;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var name = config.Get("name") ?? "terraform-example";
var @default = AliCloud.GetRegions.Invoke(new()
{
Current = true,
});
var defaultInteger = new Random.Index.Integer("default", new()
{
Min = 10000,
Max = 99999,
});
var source = new AliCloud.CR.RegistryEnterpriseInstance("source", new()
{
PaymentType = "Subscription",
Period = 1,
RenewPeriod = 0,
RenewalStatus = "ManualRenewal",
InstanceType = "Advanced",
InstanceName = $"{name}-source-{defaultInteger.Result}",
});
var target = new AliCloud.CR.RegistryEnterpriseInstance("target", new()
{
PaymentType = "Subscription",
Period = 1,
RenewPeriod = 0,
RenewalStatus = "ManualRenewal",
InstanceType = "Advanced",
InstanceName = $"{name}-target-{defaultInteger.Result}",
});
var sourceRegistryEnterpriseNamespace = new AliCloud.CS.RegistryEnterpriseNamespace("source", new()
{
InstanceId = source.Id,
Name = $"{name}-{defaultInteger.Result}",
AutoCreate = false,
DefaultVisibility = "PUBLIC",
});
var targetRegistryEnterpriseNamespace = new AliCloud.CS.RegistryEnterpriseNamespace("target", new()
{
InstanceId = target.Id,
Name = $"{name}-{defaultInteger.Result}",
AutoCreate = false,
DefaultVisibility = "PUBLIC",
});
var sourceRegistryEnterpriseRepo = new AliCloud.CS.RegistryEnterpriseRepo("source", new()
{
InstanceId = source.Id,
Namespace = sourceRegistryEnterpriseNamespace.Name,
Name = $"{name}-{defaultInteger.Result}",
Summary = "this is summary of my new repo",
RepoType = "PUBLIC",
});
var targetRegistryEnterpriseRepo = new AliCloud.CS.RegistryEnterpriseRepo("target", new()
{
InstanceId = target.Id,
Namespace = targetRegistryEnterpriseNamespace.Name,
Name = $"{name}-{defaultInteger.Result}",
Summary = "this is summary of my new repo",
RepoType = "PUBLIC",
});
var defaultRegistryEnterpriseSyncRule = new AliCloud.CS.RegistryEnterpriseSyncRule("default", new()
{
InstanceId = source.Id,
NamespaceName = sourceRegistryEnterpriseNamespace.Name,
SyncRuleName = $"{name}-{defaultInteger.Result}",
TargetInstanceId = target.Id,
TargetNamespaceName = targetRegistryEnterpriseNamespace.Name,
TargetRegionId = @default.Apply(@default => @default.Apply(getRegionsResult => getRegionsResult.Regions[0]?.Id)),
TagFilter = ".*",
RepoName = sourceRegistryEnterpriseRepo.Name,
TargetRepoName = targetRegistryEnterpriseRepo.Name,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.AlicloudFunctions;
import com.pulumi.alicloud.inputs.GetRegionsArgs;
import com.pulumi.random.integer;
import com.pulumi.random.IntegerArgs;
import com.pulumi.alicloud.cr.RegistryEnterpriseInstance;
import com.pulumi.alicloud.cr.RegistryEnterpriseInstanceArgs;
import com.pulumi.alicloud.cs.RegistryEnterpriseNamespace;
import com.pulumi.alicloud.cs.RegistryEnterpriseNamespaceArgs;
import com.pulumi.alicloud.cs.RegistryEnterpriseRepo;
import com.pulumi.alicloud.cs.RegistryEnterpriseRepoArgs;
import com.pulumi.alicloud.cs.RegistryEnterpriseSyncRule;
import com.pulumi.alicloud.cs.RegistryEnterpriseSyncRuleArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var config = ctx.config();
final var name = config.get("name").orElse("terraform-example");
final var default = AlicloudFunctions.getRegions(GetRegionsArgs.builder()
.current(true)
.build());
var defaultInteger = new Integer("defaultInteger", IntegerArgs.builder()
.min(10000)
.max(99999)
.build());
var source = new RegistryEnterpriseInstance("source", RegistryEnterpriseInstanceArgs.builder()
.paymentType("Subscription")
.period(1)
.renewPeriod(0)
.renewalStatus("ManualRenewal")
.instanceType("Advanced")
.instanceName(String.format("%s-source-%s", name,defaultInteger.result()))
.build());
var target = new RegistryEnterpriseInstance("target", RegistryEnterpriseInstanceArgs.builder()
.paymentType("Subscription")
.period(1)
.renewPeriod(0)
.renewalStatus("ManualRenewal")
.instanceType("Advanced")
.instanceName(String.format("%s-target-%s", name,defaultInteger.result()))
.build());
var sourceRegistryEnterpriseNamespace = new RegistryEnterpriseNamespace("sourceRegistryEnterpriseNamespace", RegistryEnterpriseNamespaceArgs.builder()
.instanceId(source.id())
.name(String.format("%s-%s", name,defaultInteger.result()))
.autoCreate(false)
.defaultVisibility("PUBLIC")
.build());
var targetRegistryEnterpriseNamespace = new RegistryEnterpriseNamespace("targetRegistryEnterpriseNamespace", RegistryEnterpriseNamespaceArgs.builder()
.instanceId(target.id())
.name(String.format("%s-%s", name,defaultInteger.result()))
.autoCreate(false)
.defaultVisibility("PUBLIC")
.build());
var sourceRegistryEnterpriseRepo = new RegistryEnterpriseRepo("sourceRegistryEnterpriseRepo", RegistryEnterpriseRepoArgs.builder()
.instanceId(source.id())
.namespace(sourceRegistryEnterpriseNamespace.name())
.name(String.format("%s-%s", name,defaultInteger.result()))
.summary("this is summary of my new repo")
.repoType("PUBLIC")
.build());
var targetRegistryEnterpriseRepo = new RegistryEnterpriseRepo("targetRegistryEnterpriseRepo", RegistryEnterpriseRepoArgs.builder()
.instanceId(target.id())
.namespace(targetRegistryEnterpriseNamespace.name())
.name(String.format("%s-%s", name,defaultInteger.result()))
.summary("this is summary of my new repo")
.repoType("PUBLIC")
.build());
var defaultRegistryEnterpriseSyncRule = new RegistryEnterpriseSyncRule("defaultRegistryEnterpriseSyncRule", RegistryEnterpriseSyncRuleArgs.builder()
.instanceId(source.id())
.namespaceName(sourceRegistryEnterpriseNamespace.name())
.syncRuleName(String.format("%s-%s", name,defaultInteger.result()))
.targetInstanceId(target.id())
.targetNamespaceName(targetRegistryEnterpriseNamespace.name())
.targetRegionId(default_.regions()[0].id())
.tagFilter(".*")
.repoName(sourceRegistryEnterpriseRepo.name())
.targetRepoName(targetRegistryEnterpriseRepo.name())
.build());
}
}
configuration:
name:
type: string
default: terraform-example
resources:
defaultInteger:
type: random:integer
name: default
properties:
min: 10000
max: 99999
source:
type: alicloud:cr:RegistryEnterpriseInstance
properties:
paymentType: Subscription
period: 1
renewPeriod: 0
renewalStatus: ManualRenewal
instanceType: Advanced
instanceName: ${name}-source-${defaultInteger.result}
target:
type: alicloud:cr:RegistryEnterpriseInstance
properties:
paymentType: Subscription
period: 1
renewPeriod: 0
renewalStatus: ManualRenewal
instanceType: Advanced
instanceName: ${name}-target-${defaultInteger.result}
sourceRegistryEnterpriseNamespace:
type: alicloud:cs:RegistryEnterpriseNamespace
name: source
properties:
instanceId: ${source.id}
name: ${name}-${defaultInteger.result}
autoCreate: false
defaultVisibility: PUBLIC
targetRegistryEnterpriseNamespace:
type: alicloud:cs:RegistryEnterpriseNamespace
name: target
properties:
instanceId: ${target.id}
name: ${name}-${defaultInteger.result}
autoCreate: false
defaultVisibility: PUBLIC
sourceRegistryEnterpriseRepo:
type: alicloud:cs:RegistryEnterpriseRepo
name: source
properties:
instanceId: ${source.id}
namespace: ${sourceRegistryEnterpriseNamespace.name}
name: ${name}-${defaultInteger.result}
summary: this is summary of my new repo
repoType: PUBLIC
targetRegistryEnterpriseRepo:
type: alicloud:cs:RegistryEnterpriseRepo
name: target
properties:
instanceId: ${target.id}
namespace: ${targetRegistryEnterpriseNamespace.name}
name: ${name}-${defaultInteger.result}
summary: this is summary of my new repo
repoType: PUBLIC
defaultRegistryEnterpriseSyncRule:
type: alicloud:cs:RegistryEnterpriseSyncRule
name: default
properties:
instanceId: ${source.id}
namespaceName: ${sourceRegistryEnterpriseNamespace.name}
syncRuleName: ${name}-${defaultInteger.result}
targetInstanceId: ${target.id}
targetNamespaceName: ${targetRegistryEnterpriseNamespace.name}
targetRegionId: ${default.regions[0].id}
tagFilter: .*
repoName: ${sourceRegistryEnterpriseRepo.name}
targetRepoName: ${targetRegistryEnterpriseRepo.name}
variables:
default:
fn::invoke:
function: alicloud:getRegions
arguments:
current: true
Create RegistryEnterpriseSyncRule Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new RegistryEnterpriseSyncRule(name: string, args: RegistryEnterpriseSyncRuleArgs, opts?: CustomResourceOptions);
@overload
def RegistryEnterpriseSyncRule(resource_name: str,
args: RegistryEnterpriseSyncRuleArgs,
opts: Optional[ResourceOptions] = None)
@overload
def RegistryEnterpriseSyncRule(resource_name: str,
opts: Optional[ResourceOptions] = None,
tag_filter: Optional[str] = None,
target_region_id: Optional[str] = None,
namespace_name: Optional[str] = None,
instance_id: Optional[str] = None,
target_namespace_name: Optional[str] = None,
target_instance_id: Optional[str] = None,
repo_name: Optional[str] = None,
sync_trigger: Optional[str] = None,
sync_scope: Optional[str] = None,
sync_rule_name: Optional[str] = None,
name: Optional[str] = None,
target_repo_name: Optional[str] = None,
target_user_id: Optional[str] = None)
func NewRegistryEnterpriseSyncRule(ctx *Context, name string, args RegistryEnterpriseSyncRuleArgs, opts ...ResourceOption) (*RegistryEnterpriseSyncRule, error)
public RegistryEnterpriseSyncRule(string name, RegistryEnterpriseSyncRuleArgs args, CustomResourceOptions? opts = null)
public RegistryEnterpriseSyncRule(String name, RegistryEnterpriseSyncRuleArgs args)
public RegistryEnterpriseSyncRule(String name, RegistryEnterpriseSyncRuleArgs args, CustomResourceOptions options)
type: alicloud:cs:RegistryEnterpriseSyncRule
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args RegistryEnterpriseSyncRuleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args RegistryEnterpriseSyncRuleArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args RegistryEnterpriseSyncRuleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RegistryEnterpriseSyncRuleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RegistryEnterpriseSyncRuleArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var registryEnterpriseSyncRuleResource = new AliCloud.CS.RegistryEnterpriseSyncRule("registryEnterpriseSyncRuleResource", new()
{
TagFilter = "string",
TargetRegionId = "string",
NamespaceName = "string",
InstanceId = "string",
TargetNamespaceName = "string",
TargetInstanceId = "string",
RepoName = "string",
SyncTrigger = "string",
SyncScope = "string",
SyncRuleName = "string",
TargetRepoName = "string",
TargetUserId = "string",
});
example, err := cs.NewRegistryEnterpriseSyncRule(ctx, "registryEnterpriseSyncRuleResource", &cs.RegistryEnterpriseSyncRuleArgs{
TagFilter: pulumi.String("string"),
TargetRegionId: pulumi.String("string"),
NamespaceName: pulumi.String("string"),
InstanceId: pulumi.String("string"),
TargetNamespaceName: pulumi.String("string"),
TargetInstanceId: pulumi.String("string"),
RepoName: pulumi.String("string"),
SyncTrigger: pulumi.String("string"),
SyncScope: pulumi.String("string"),
SyncRuleName: pulumi.String("string"),
TargetRepoName: pulumi.String("string"),
TargetUserId: pulumi.String("string"),
})
var registryEnterpriseSyncRuleResource = new RegistryEnterpriseSyncRule("registryEnterpriseSyncRuleResource", RegistryEnterpriseSyncRuleArgs.builder()
.tagFilter("string")
.targetRegionId("string")
.namespaceName("string")
.instanceId("string")
.targetNamespaceName("string")
.targetInstanceId("string")
.repoName("string")
.syncTrigger("string")
.syncScope("string")
.syncRuleName("string")
.targetRepoName("string")
.targetUserId("string")
.build());
registry_enterprise_sync_rule_resource = alicloud.cs.RegistryEnterpriseSyncRule("registryEnterpriseSyncRuleResource",
tag_filter="string",
target_region_id="string",
namespace_name="string",
instance_id="string",
target_namespace_name="string",
target_instance_id="string",
repo_name="string",
sync_trigger="string",
sync_scope="string",
sync_rule_name="string",
target_repo_name="string",
target_user_id="string")
const registryEnterpriseSyncRuleResource = new alicloud.cs.RegistryEnterpriseSyncRule("registryEnterpriseSyncRuleResource", {
tagFilter: "string",
targetRegionId: "string",
namespaceName: "string",
instanceId: "string",
targetNamespaceName: "string",
targetInstanceId: "string",
repoName: "string",
syncTrigger: "string",
syncScope: "string",
syncRuleName: "string",
targetRepoName: "string",
targetUserId: "string",
});
type: alicloud:cs:RegistryEnterpriseSyncRule
properties:
instanceId: string
namespaceName: string
repoName: string
syncRuleName: string
syncScope: string
syncTrigger: string
tagFilter: string
targetInstanceId: string
targetNamespaceName: string
targetRegionId: string
targetRepoName: string
targetUserId: string
RegistryEnterpriseSyncRule Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The RegistryEnterpriseSyncRule resource accepts the following input properties:
- Instance
Id string - The ID of the Container Registry source instance.
- Namespace
Name string - The namespace name of the source instance.
- Tag
Filter string - The regular expression used to filter image tags.
- Target
Instance stringId - The ID of the destination instance.
- Target
Namespace stringName - The namespace name of the destination instance.
- Target
Region stringId - The region ID of the destination instance.
- Name string
- Field
name
has been deprecated from provider version 1.240.0. New fieldsync_rule_name
instead. - Repo
Name string - The image repository name of the source instance.
- Sync
Rule stringName - The name of the sync rule.
- Sync
Scope string The synchronization scope. Valid values:
REPO
: Encrypts or decrypts data.NAMESPACE
: Generates or verifies a digital signature.
NOTE: From version 1.240.0,
sync_scope
can be set.- Sync
Trigger string - The policy configured to trigger the synchronization rule. Default value:
PASSIVE
. Valid values:INITIATIVE
: Manually triggers the synchronization rule.PASSIVE
: Automatically triggers the synchronization rule.
- Target
Repo stringName - The image repository name of the destination instance.
- Target
User stringId - The UID of the account to which the target instance belongs.
- Instance
Id string - The ID of the Container Registry source instance.
- Namespace
Name string - The namespace name of the source instance.
- Tag
Filter string - The regular expression used to filter image tags.
- Target
Instance stringId - The ID of the destination instance.
- Target
Namespace stringName - The namespace name of the destination instance.
- Target
Region stringId - The region ID of the destination instance.
- Name string
- Field
name
has been deprecated from provider version 1.240.0. New fieldsync_rule_name
instead. - Repo
Name string - The image repository name of the source instance.
- Sync
Rule stringName - The name of the sync rule.
- Sync
Scope string The synchronization scope. Valid values:
REPO
: Encrypts or decrypts data.NAMESPACE
: Generates or verifies a digital signature.
NOTE: From version 1.240.0,
sync_scope
can be set.- Sync
Trigger string - The policy configured to trigger the synchronization rule. Default value:
PASSIVE
. Valid values:INITIATIVE
: Manually triggers the synchronization rule.PASSIVE
: Automatically triggers the synchronization rule.
- Target
Repo stringName - The image repository name of the destination instance.
- Target
User stringId - The UID of the account to which the target instance belongs.
- instance
Id String - The ID of the Container Registry source instance.
- namespace
Name String - The namespace name of the source instance.
- tag
Filter String - The regular expression used to filter image tags.
- target
Instance StringId - The ID of the destination instance.
- target
Namespace StringName - The namespace name of the destination instance.
- target
Region StringId - The region ID of the destination instance.
- name String
- Field
name
has been deprecated from provider version 1.240.0. New fieldsync_rule_name
instead. - repo
Name String - The image repository name of the source instance.
- sync
Rule StringName - The name of the sync rule.
- sync
Scope String The synchronization scope. Valid values:
REPO
: Encrypts or decrypts data.NAMESPACE
: Generates or verifies a digital signature.
NOTE: From version 1.240.0,
sync_scope
can be set.- sync
Trigger String - The policy configured to trigger the synchronization rule. Default value:
PASSIVE
. Valid values:INITIATIVE
: Manually triggers the synchronization rule.PASSIVE
: Automatically triggers the synchronization rule.
- target
Repo StringName - The image repository name of the destination instance.
- target
User StringId - The UID of the account to which the target instance belongs.
- instance
Id string - The ID of the Container Registry source instance.
- namespace
Name string - The namespace name of the source instance.
- tag
Filter string - The regular expression used to filter image tags.
- target
Instance stringId - The ID of the destination instance.
- target
Namespace stringName - The namespace name of the destination instance.
- target
Region stringId - The region ID of the destination instance.
- name string
- Field
name
has been deprecated from provider version 1.240.0. New fieldsync_rule_name
instead. - repo
Name string - The image repository name of the source instance.
- sync
Rule stringName - The name of the sync rule.
- sync
Scope string The synchronization scope. Valid values:
REPO
: Encrypts or decrypts data.NAMESPACE
: Generates or verifies a digital signature.
NOTE: From version 1.240.0,
sync_scope
can be set.- sync
Trigger string - The policy configured to trigger the synchronization rule. Default value:
PASSIVE
. Valid values:INITIATIVE
: Manually triggers the synchronization rule.PASSIVE
: Automatically triggers the synchronization rule.
- target
Repo stringName - The image repository name of the destination instance.
- target
User stringId - The UID of the account to which the target instance belongs.
- instance_
id str - The ID of the Container Registry source instance.
- namespace_
name str - The namespace name of the source instance.
- tag_
filter str - The regular expression used to filter image tags.
- target_
instance_ strid - The ID of the destination instance.
- target_
namespace_ strname - The namespace name of the destination instance.
- target_
region_ strid - The region ID of the destination instance.
- name str
- Field
name
has been deprecated from provider version 1.240.0. New fieldsync_rule_name
instead. - repo_
name str - The image repository name of the source instance.
- sync_
rule_ strname - The name of the sync rule.
- sync_
scope str The synchronization scope. Valid values:
REPO
: Encrypts or decrypts data.NAMESPACE
: Generates or verifies a digital signature.
NOTE: From version 1.240.0,
sync_scope
can be set.- sync_
trigger str - The policy configured to trigger the synchronization rule. Default value:
PASSIVE
. Valid values:INITIATIVE
: Manually triggers the synchronization rule.PASSIVE
: Automatically triggers the synchronization rule.
- target_
repo_ strname - The image repository name of the destination instance.
- target_
user_ strid - The UID of the account to which the target instance belongs.
- instance
Id String - The ID of the Container Registry source instance.
- namespace
Name String - The namespace name of the source instance.
- tag
Filter String - The regular expression used to filter image tags.
- target
Instance StringId - The ID of the destination instance.
- target
Namespace StringName - The namespace name of the destination instance.
- target
Region StringId - The region ID of the destination instance.
- name String
- Field
name
has been deprecated from provider version 1.240.0. New fieldsync_rule_name
instead. - repo
Name String - The image repository name of the source instance.
- sync
Rule StringName - The name of the sync rule.
- sync
Scope String The synchronization scope. Valid values:
REPO
: Encrypts or decrypts data.NAMESPACE
: Generates or verifies a digital signature.
NOTE: From version 1.240.0,
sync_scope
can be set.- sync
Trigger String - The policy configured to trigger the synchronization rule. Default value:
PASSIVE
. Valid values:INITIATIVE
: Manually triggers the synchronization rule.PASSIVE
: Automatically triggers the synchronization rule.
- target
Repo StringName - The image repository name of the destination instance.
- target
User StringId - The UID of the account to which the target instance belongs.
Outputs
All input properties are implicitly available as output properties. Additionally, the RegistryEnterpriseSyncRule resource produces the following output properties:
- Create
Time string - (Available since v1.240.0) The time when the synchronization rule was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Region
Id string - (Available since v1.240.0) The region ID of the source instance.
- Repo
Sync stringRule Id - (Available since v1.240.0) The ID of the synchronization rule.
- Rule
Id string - (Deprecated since v1.240.0) Field
rule_id
has been deprecated from provider version 1.240.0. New fieldrepo_sync_rule_id
instead. - Sync
Direction string - The synchronization direction.
- Create
Time string - (Available since v1.240.0) The time when the synchronization rule was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Region
Id string - (Available since v1.240.0) The region ID of the source instance.
- Repo
Sync stringRule Id - (Available since v1.240.0) The ID of the synchronization rule.
- Rule
Id string - (Deprecated since v1.240.0) Field
rule_id
has been deprecated from provider version 1.240.0. New fieldrepo_sync_rule_id
instead. - Sync
Direction string - The synchronization direction.
- create
Time String - (Available since v1.240.0) The time when the synchronization rule was created.
- id String
- The provider-assigned unique ID for this managed resource.
- region
Id String - (Available since v1.240.0) The region ID of the source instance.
- repo
Sync StringRule Id - (Available since v1.240.0) The ID of the synchronization rule.
- rule
Id String - (Deprecated since v1.240.0) Field
rule_id
has been deprecated from provider version 1.240.0. New fieldrepo_sync_rule_id
instead. - sync
Direction String - The synchronization direction.
- create
Time string - (Available since v1.240.0) The time when the synchronization rule was created.
- id string
- The provider-assigned unique ID for this managed resource.
- region
Id string - (Available since v1.240.0) The region ID of the source instance.
- repo
Sync stringRule Id - (Available since v1.240.0) The ID of the synchronization rule.
- rule
Id string - (Deprecated since v1.240.0) Field
rule_id
has been deprecated from provider version 1.240.0. New fieldrepo_sync_rule_id
instead. - sync
Direction string - The synchronization direction.
- create_
time str - (Available since v1.240.0) The time when the synchronization rule was created.
- id str
- The provider-assigned unique ID for this managed resource.
- region_
id str - (Available since v1.240.0) The region ID of the source instance.
- repo_
sync_ strrule_ id - (Available since v1.240.0) The ID of the synchronization rule.
- rule_
id str - (Deprecated since v1.240.0) Field
rule_id
has been deprecated from provider version 1.240.0. New fieldrepo_sync_rule_id
instead. - sync_
direction str - The synchronization direction.
- create
Time String - (Available since v1.240.0) The time when the synchronization rule was created.
- id String
- The provider-assigned unique ID for this managed resource.
- region
Id String - (Available since v1.240.0) The region ID of the source instance.
- repo
Sync StringRule Id - (Available since v1.240.0) The ID of the synchronization rule.
- rule
Id String - (Deprecated since v1.240.0) Field
rule_id
has been deprecated from provider version 1.240.0. New fieldrepo_sync_rule_id
instead. - sync
Direction String - The synchronization direction.
Look up Existing RegistryEnterpriseSyncRule Resource
Get an existing RegistryEnterpriseSyncRule resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: RegistryEnterpriseSyncRuleState, opts?: CustomResourceOptions): RegistryEnterpriseSyncRule
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
create_time: Optional[str] = None,
instance_id: Optional[str] = None,
name: Optional[str] = None,
namespace_name: Optional[str] = None,
region_id: Optional[str] = None,
repo_name: Optional[str] = None,
repo_sync_rule_id: Optional[str] = None,
rule_id: Optional[str] = None,
sync_direction: Optional[str] = None,
sync_rule_name: Optional[str] = None,
sync_scope: Optional[str] = None,
sync_trigger: Optional[str] = None,
tag_filter: Optional[str] = None,
target_instance_id: Optional[str] = None,
target_namespace_name: Optional[str] = None,
target_region_id: Optional[str] = None,
target_repo_name: Optional[str] = None,
target_user_id: Optional[str] = None) -> RegistryEnterpriseSyncRule
func GetRegistryEnterpriseSyncRule(ctx *Context, name string, id IDInput, state *RegistryEnterpriseSyncRuleState, opts ...ResourceOption) (*RegistryEnterpriseSyncRule, error)
public static RegistryEnterpriseSyncRule Get(string name, Input<string> id, RegistryEnterpriseSyncRuleState? state, CustomResourceOptions? opts = null)
public static RegistryEnterpriseSyncRule get(String name, Output<String> id, RegistryEnterpriseSyncRuleState state, CustomResourceOptions options)
resources: _: type: alicloud:cs:RegistryEnterpriseSyncRule get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Create
Time string - (Available since v1.240.0) The time when the synchronization rule was created.
- Instance
Id string - The ID of the Container Registry source instance.
- Name string
- Field
name
has been deprecated from provider version 1.240.0. New fieldsync_rule_name
instead. - Namespace
Name string - The namespace name of the source instance.
- Region
Id string - (Available since v1.240.0) The region ID of the source instance.
- Repo
Name string - The image repository name of the source instance.
- Repo
Sync stringRule Id - (Available since v1.240.0) The ID of the synchronization rule.
- Rule
Id string - (Deprecated since v1.240.0) Field
rule_id
has been deprecated from provider version 1.240.0. New fieldrepo_sync_rule_id
instead. - Sync
Direction string - The synchronization direction.
- Sync
Rule stringName - The name of the sync rule.
- Sync
Scope string The synchronization scope. Valid values:
REPO
: Encrypts or decrypts data.NAMESPACE
: Generates or verifies a digital signature.
NOTE: From version 1.240.0,
sync_scope
can be set.- Sync
Trigger string - The policy configured to trigger the synchronization rule. Default value:
PASSIVE
. Valid values:INITIATIVE
: Manually triggers the synchronization rule.PASSIVE
: Automatically triggers the synchronization rule.
- Tag
Filter string - The regular expression used to filter image tags.
- Target
Instance stringId - The ID of the destination instance.
- Target
Namespace stringName - The namespace name of the destination instance.
- Target
Region stringId - The region ID of the destination instance.
- Target
Repo stringName - The image repository name of the destination instance.
- Target
User stringId - The UID of the account to which the target instance belongs.
- Create
Time string - (Available since v1.240.0) The time when the synchronization rule was created.
- Instance
Id string - The ID of the Container Registry source instance.
- Name string
- Field
name
has been deprecated from provider version 1.240.0. New fieldsync_rule_name
instead. - Namespace
Name string - The namespace name of the source instance.
- Region
Id string - (Available since v1.240.0) The region ID of the source instance.
- Repo
Name string - The image repository name of the source instance.
- Repo
Sync stringRule Id - (Available since v1.240.0) The ID of the synchronization rule.
- Rule
Id string - (Deprecated since v1.240.0) Field
rule_id
has been deprecated from provider version 1.240.0. New fieldrepo_sync_rule_id
instead. - Sync
Direction string - The synchronization direction.
- Sync
Rule stringName - The name of the sync rule.
- Sync
Scope string The synchronization scope. Valid values:
REPO
: Encrypts or decrypts data.NAMESPACE
: Generates or verifies a digital signature.
NOTE: From version 1.240.0,
sync_scope
can be set.- Sync
Trigger string - The policy configured to trigger the synchronization rule. Default value:
PASSIVE
. Valid values:INITIATIVE
: Manually triggers the synchronization rule.PASSIVE
: Automatically triggers the synchronization rule.
- Tag
Filter string - The regular expression used to filter image tags.
- Target
Instance stringId - The ID of the destination instance.
- Target
Namespace stringName - The namespace name of the destination instance.
- Target
Region stringId - The region ID of the destination instance.
- Target
Repo stringName - The image repository name of the destination instance.
- Target
User stringId - The UID of the account to which the target instance belongs.
- create
Time String - (Available since v1.240.0) The time when the synchronization rule was created.
- instance
Id String - The ID of the Container Registry source instance.
- name String
- Field
name
has been deprecated from provider version 1.240.0. New fieldsync_rule_name
instead. - namespace
Name String - The namespace name of the source instance.
- region
Id String - (Available since v1.240.0) The region ID of the source instance.
- repo
Name String - The image repository name of the source instance.
- repo
Sync StringRule Id - (Available since v1.240.0) The ID of the synchronization rule.
- rule
Id String - (Deprecated since v1.240.0) Field
rule_id
has been deprecated from provider version 1.240.0. New fieldrepo_sync_rule_id
instead. - sync
Direction String - The synchronization direction.
- sync
Rule StringName - The name of the sync rule.
- sync
Scope String The synchronization scope. Valid values:
REPO
: Encrypts or decrypts data.NAMESPACE
: Generates or verifies a digital signature.
NOTE: From version 1.240.0,
sync_scope
can be set.- sync
Trigger String - The policy configured to trigger the synchronization rule. Default value:
PASSIVE
. Valid values:INITIATIVE
: Manually triggers the synchronization rule.PASSIVE
: Automatically triggers the synchronization rule.
- tag
Filter String - The regular expression used to filter image tags.
- target
Instance StringId - The ID of the destination instance.
- target
Namespace StringName - The namespace name of the destination instance.
- target
Region StringId - The region ID of the destination instance.
- target
Repo StringName - The image repository name of the destination instance.
- target
User StringId - The UID of the account to which the target instance belongs.
- create
Time string - (Available since v1.240.0) The time when the synchronization rule was created.
- instance
Id string - The ID of the Container Registry source instance.
- name string
- Field
name
has been deprecated from provider version 1.240.0. New fieldsync_rule_name
instead. - namespace
Name string - The namespace name of the source instance.
- region
Id string - (Available since v1.240.0) The region ID of the source instance.
- repo
Name string - The image repository name of the source instance.
- repo
Sync stringRule Id - (Available since v1.240.0) The ID of the synchronization rule.
- rule
Id string - (Deprecated since v1.240.0) Field
rule_id
has been deprecated from provider version 1.240.0. New fieldrepo_sync_rule_id
instead. - sync
Direction string - The synchronization direction.
- sync
Rule stringName - The name of the sync rule.
- sync
Scope string The synchronization scope. Valid values:
REPO
: Encrypts or decrypts data.NAMESPACE
: Generates or verifies a digital signature.
NOTE: From version 1.240.0,
sync_scope
can be set.- sync
Trigger string - The policy configured to trigger the synchronization rule. Default value:
PASSIVE
. Valid values:INITIATIVE
: Manually triggers the synchronization rule.PASSIVE
: Automatically triggers the synchronization rule.
- tag
Filter string - The regular expression used to filter image tags.
- target
Instance stringId - The ID of the destination instance.
- target
Namespace stringName - The namespace name of the destination instance.
- target
Region stringId - The region ID of the destination instance.
- target
Repo stringName - The image repository name of the destination instance.
- target
User stringId - The UID of the account to which the target instance belongs.
- create_
time str - (Available since v1.240.0) The time when the synchronization rule was created.
- instance_
id str - The ID of the Container Registry source instance.
- name str
- Field
name
has been deprecated from provider version 1.240.0. New fieldsync_rule_name
instead. - namespace_
name str - The namespace name of the source instance.
- region_
id str - (Available since v1.240.0) The region ID of the source instance.
- repo_
name str - The image repository name of the source instance.
- repo_
sync_ strrule_ id - (Available since v1.240.0) The ID of the synchronization rule.
- rule_
id str - (Deprecated since v1.240.0) Field
rule_id
has been deprecated from provider version 1.240.0. New fieldrepo_sync_rule_id
instead. - sync_
direction str - The synchronization direction.
- sync_
rule_ strname - The name of the sync rule.
- sync_
scope str The synchronization scope. Valid values:
REPO
: Encrypts or decrypts data.NAMESPACE
: Generates or verifies a digital signature.
NOTE: From version 1.240.0,
sync_scope
can be set.- sync_
trigger str - The policy configured to trigger the synchronization rule. Default value:
PASSIVE
. Valid values:INITIATIVE
: Manually triggers the synchronization rule.PASSIVE
: Automatically triggers the synchronization rule.
- tag_
filter str - The regular expression used to filter image tags.
- target_
instance_ strid - The ID of the destination instance.
- target_
namespace_ strname - The namespace name of the destination instance.
- target_
region_ strid - The region ID of the destination instance.
- target_
repo_ strname - The image repository name of the destination instance.
- target_
user_ strid - The UID of the account to which the target instance belongs.
- create
Time String - (Available since v1.240.0) The time when the synchronization rule was created.
- instance
Id String - The ID of the Container Registry source instance.
- name String
- Field
name
has been deprecated from provider version 1.240.0. New fieldsync_rule_name
instead. - namespace
Name String - The namespace name of the source instance.
- region
Id String - (Available since v1.240.0) The region ID of the source instance.
- repo
Name String - The image repository name of the source instance.
- repo
Sync StringRule Id - (Available since v1.240.0) The ID of the synchronization rule.
- rule
Id String - (Deprecated since v1.240.0) Field
rule_id
has been deprecated from provider version 1.240.0. New fieldrepo_sync_rule_id
instead. - sync
Direction String - The synchronization direction.
- sync
Rule StringName - The name of the sync rule.
- sync
Scope String The synchronization scope. Valid values:
REPO
: Encrypts or decrypts data.NAMESPACE
: Generates or verifies a digital signature.
NOTE: From version 1.240.0,
sync_scope
can be set.- sync
Trigger String - The policy configured to trigger the synchronization rule. Default value:
PASSIVE
. Valid values:INITIATIVE
: Manually triggers the synchronization rule.PASSIVE
: Automatically triggers the synchronization rule.
- tag
Filter String - The regular expression used to filter image tags.
- target
Instance StringId - The ID of the destination instance.
- target
Namespace StringName - The namespace name of the destination instance.
- target
Region StringId - The region ID of the destination instance.
- target
Repo StringName - The image repository name of the destination instance.
- target
User StringId - The UID of the account to which the target instance belongs.
Import
Container Registry Sync Rule can be imported using the id, e.g.
$ pulumi import alicloud:cs/registryEnterpriseSyncRule:RegistryEnterpriseSyncRule example <instance_id>:<namespace_name>:<repo_sync_rule_id>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloud
Terraform Provider.