Alibaba Cloud
RegistryEnterpriseInstance
This resource will help you to manager Container Registry Enterprise Edition instances.
For information about Container Registry Enterprise Edition instances and how to use it, see Create a Instance
NOTE: Available in v1.124.0+.
Example Usage
using Pulumi;
using AliCloud = Pulumi.AliCloud;
class MyStack : Stack
{
public MyStack()
{
var my_instance = new AliCloud.CR.RegistryEnterpriseInstance("my-instance", new AliCloud.CR.RegistryEnterpriseInstanceArgs
{
InstanceName = "test",
InstanceType = "Advanced",
PaymentType = "Subscription",
Period = 1,
RenewPeriod = 1,
RenewalStatus = "AutoRenewal",
});
}
}
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/cr"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := cr.NewRegistryEnterpriseInstance(ctx, "my-instance", &cr.RegistryEnterpriseInstanceArgs{
InstanceName: pulumi.String("test"),
InstanceType: pulumi.String("Advanced"),
PaymentType: pulumi.String("Subscription"),
Period: pulumi.Int(1),
RenewPeriod: pulumi.Int(1),
RenewalStatus: pulumi.String("AutoRenewal"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.cr.RegistryEnterpriseInstance;
import com.pulumi.alicloud.cr.RegistryEnterpriseInstanceArgs;
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) {
var my_instance = new RegistryEnterpriseInstance("my-instance", RegistryEnterpriseInstanceArgs.builder()
.instanceName("test")
.instanceType("Advanced")
.paymentType("Subscription")
.period(1)
.renewPeriod(1)
.renewalStatus("AutoRenewal")
.build());
}
}
import pulumi
import pulumi_alicloud as alicloud
my_instance = alicloud.cr.RegistryEnterpriseInstance("my-instance",
instance_name="test",
instance_type="Advanced",
payment_type="Subscription",
period=1,
renew_period=1,
renewal_status="AutoRenewal")
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const my_instance = new alicloud.cr.RegistryEnterpriseInstance("my-instance", {
instanceName: "test",
instanceType: "Advanced",
paymentType: "Subscription",
period: 1,
renewPeriod: 1,
renewalStatus: "AutoRenewal",
});
resources:
my-instance:
type: alicloud:cr:RegistryEnterpriseInstance
properties:
instanceName: test
instanceType: Advanced
paymentType: Subscription
period: 1
renewPeriod: 1
renewalStatus: AutoRenewal
Create a RegistryEnterpriseInstance Resource
new RegistryEnterpriseInstance(name: string, args: RegistryEnterpriseInstanceArgs, opts?: CustomResourceOptions);
@overload
def RegistryEnterpriseInstance(resource_name: str,
opts: Optional[ResourceOptions] = None,
custom_oss_bucket: Optional[str] = None,
instance_name: Optional[str] = None,
instance_type: Optional[str] = None,
kms_encrypted_password: Optional[str] = None,
kms_encryption_context: Optional[Mapping[str, Any]] = None,
password: Optional[str] = None,
payment_type: Optional[str] = None,
period: Optional[int] = None,
renew_period: Optional[int] = None,
renewal_status: Optional[str] = None)
@overload
def RegistryEnterpriseInstance(resource_name: str,
args: RegistryEnterpriseInstanceArgs,
opts: Optional[ResourceOptions] = None)
func NewRegistryEnterpriseInstance(ctx *Context, name string, args RegistryEnterpriseInstanceArgs, opts ...ResourceOption) (*RegistryEnterpriseInstance, error)
public RegistryEnterpriseInstance(string name, RegistryEnterpriseInstanceArgs args, CustomResourceOptions? opts = null)
public RegistryEnterpriseInstance(String name, RegistryEnterpriseInstanceArgs args)
public RegistryEnterpriseInstance(String name, RegistryEnterpriseInstanceArgs args, CustomResourceOptions options)
type: alicloud:cr:RegistryEnterpriseInstance
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RegistryEnterpriseInstanceArgs
- 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 RegistryEnterpriseInstanceArgs
- 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 RegistryEnterpriseInstanceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RegistryEnterpriseInstanceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RegistryEnterpriseInstanceArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
RegistryEnterpriseInstance Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The RegistryEnterpriseInstance resource accepts the following input properties:
- Instance
Name string Name of Container Registry Enterprise Edition instance.
- Instance
Type string Type of Container Registry Enterprise Edition instance. Valid values:
Basic
,Standard
,Advanced
. NOTE: International Account doesn't supportsStandard
.- Custom
Oss stringBucket Name of your customized oss bucket. Use this bucket as instance storage if set.
- Kms
Encrypted stringPassword An KMS encrypts password used to an instance. If the
password
is filled in, this field will be ignored.- Kms
Encryption Dictionary<string, object>Context An KMS encryption context used to decrypt
kms_encrypted_password
before creating or updating instance withkms_encrypted_password
. See Encryption Context. It is valid whenkms_encrypted_password
is set.- Password string
The password of the Instance. The password is a string of 8 to 30 characters and must contain uppercase letters, lowercase letters, and numbers.
- Payment
Type string Subscription of Container Registry Enterprise Edition instance. Default value:
Subscription
. Valid values:Subscription
.- Period int
Service time of Container Registry Enterprise Edition instance. Default value:
12
. Valid values:1
,2
,3
,6
,12
,24
,36
,48
,60
. Unit:month
.- Renew
Period int Renewal period of Container Registry Enterprise Edition instance. Unit:
month
.- Renewal
Status string Renewal status of Container Registry Enterprise Edition instance. Valid values:
AutoRenewal
,ManualRenewal
.
- Instance
Name string Name of Container Registry Enterprise Edition instance.
- Instance
Type string Type of Container Registry Enterprise Edition instance. Valid values:
Basic
,Standard
,Advanced
. NOTE: International Account doesn't supportsStandard
.- Custom
Oss stringBucket Name of your customized oss bucket. Use this bucket as instance storage if set.
- Kms
Encrypted stringPassword An KMS encrypts password used to an instance. If the
password
is filled in, this field will be ignored.- Kms
Encryption map[string]interface{}Context An KMS encryption context used to decrypt
kms_encrypted_password
before creating or updating instance withkms_encrypted_password
. See Encryption Context. It is valid whenkms_encrypted_password
is set.- Password string
The password of the Instance. The password is a string of 8 to 30 characters and must contain uppercase letters, lowercase letters, and numbers.
- Payment
Type string Subscription of Container Registry Enterprise Edition instance. Default value:
Subscription
. Valid values:Subscription
.- Period int
Service time of Container Registry Enterprise Edition instance. Default value:
12
. Valid values:1
,2
,3
,6
,12
,24
,36
,48
,60
. Unit:month
.- Renew
Period int Renewal period of Container Registry Enterprise Edition instance. Unit:
month
.- Renewal
Status string Renewal status of Container Registry Enterprise Edition instance. Valid values:
AutoRenewal
,ManualRenewal
.
- instance
Name String Name of Container Registry Enterprise Edition instance.
- instance
Type String Type of Container Registry Enterprise Edition instance. Valid values:
Basic
,Standard
,Advanced
. NOTE: International Account doesn't supportsStandard
.- custom
Oss StringBucket Name of your customized oss bucket. Use this bucket as instance storage if set.
- kms
Encrypted StringPassword An KMS encrypts password used to an instance. If the
password
is filled in, this field will be ignored.- kms
Encryption Map<String,Object>Context An KMS encryption context used to decrypt
kms_encrypted_password
before creating or updating instance withkms_encrypted_password
. See Encryption Context. It is valid whenkms_encrypted_password
is set.- password String
The password of the Instance. The password is a string of 8 to 30 characters and must contain uppercase letters, lowercase letters, and numbers.
- payment
Type String Subscription of Container Registry Enterprise Edition instance. Default value:
Subscription
. Valid values:Subscription
.- period Integer
Service time of Container Registry Enterprise Edition instance. Default value:
12
. Valid values:1
,2
,3
,6
,12
,24
,36
,48
,60
. Unit:month
.- renew
Period Integer Renewal period of Container Registry Enterprise Edition instance. Unit:
month
.- renewal
Status String Renewal status of Container Registry Enterprise Edition instance. Valid values:
AutoRenewal
,ManualRenewal
.
- instance
Name string Name of Container Registry Enterprise Edition instance.
- instance
Type string Type of Container Registry Enterprise Edition instance. Valid values:
Basic
,Standard
,Advanced
. NOTE: International Account doesn't supportsStandard
.- custom
Oss stringBucket Name of your customized oss bucket. Use this bucket as instance storage if set.
- kms
Encrypted stringPassword An KMS encrypts password used to an instance. If the
password
is filled in, this field will be ignored.- kms
Encryption {[key: string]: any}Context An KMS encryption context used to decrypt
kms_encrypted_password
before creating or updating instance withkms_encrypted_password
. See Encryption Context. It is valid whenkms_encrypted_password
is set.- password string
The password of the Instance. The password is a string of 8 to 30 characters and must contain uppercase letters, lowercase letters, and numbers.
- payment
Type string Subscription of Container Registry Enterprise Edition instance. Default value:
Subscription
. Valid values:Subscription
.- period number
Service time of Container Registry Enterprise Edition instance. Default value:
12
. Valid values:1
,2
,3
,6
,12
,24
,36
,48
,60
. Unit:month
.- renew
Period number Renewal period of Container Registry Enterprise Edition instance. Unit:
month
.- renewal
Status string Renewal status of Container Registry Enterprise Edition instance. Valid values:
AutoRenewal
,ManualRenewal
.
- instance_
name str Name of Container Registry Enterprise Edition instance.
- instance_
type str Type of Container Registry Enterprise Edition instance. Valid values:
Basic
,Standard
,Advanced
. NOTE: International Account doesn't supportsStandard
.- custom_
oss_ strbucket Name of your customized oss bucket. Use this bucket as instance storage if set.
- kms_
encrypted_ strpassword An KMS encrypts password used to an instance. If the
password
is filled in, this field will be ignored.- kms_
encryption_ Mapping[str, Any]context An KMS encryption context used to decrypt
kms_encrypted_password
before creating or updating instance withkms_encrypted_password
. See Encryption Context. It is valid whenkms_encrypted_password
is set.- password str
The password of the Instance. The password is a string of 8 to 30 characters and must contain uppercase letters, lowercase letters, and numbers.
- payment_
type str Subscription of Container Registry Enterprise Edition instance. Default value:
Subscription
. Valid values:Subscription
.- period int
Service time of Container Registry Enterprise Edition instance. Default value:
12
. Valid values:1
,2
,3
,6
,12
,24
,36
,48
,60
. Unit:month
.- renew_
period int Renewal period of Container Registry Enterprise Edition instance. Unit:
month
.- renewal_
status str Renewal status of Container Registry Enterprise Edition instance. Valid values:
AutoRenewal
,ManualRenewal
.
- instance
Name String Name of Container Registry Enterprise Edition instance.
- instance
Type String Type of Container Registry Enterprise Edition instance. Valid values:
Basic
,Standard
,Advanced
. NOTE: International Account doesn't supportsStandard
.- custom
Oss StringBucket Name of your customized oss bucket. Use this bucket as instance storage if set.
- kms
Encrypted StringPassword An KMS encrypts password used to an instance. If the
password
is filled in, this field will be ignored.- kms
Encryption Map<Any>Context An KMS encryption context used to decrypt
kms_encrypted_password
before creating or updating instance withkms_encrypted_password
. See Encryption Context. It is valid whenkms_encrypted_password
is set.- password String
The password of the Instance. The password is a string of 8 to 30 characters and must contain uppercase letters, lowercase letters, and numbers.
- payment
Type String Subscription of Container Registry Enterprise Edition instance. Default value:
Subscription
. Valid values:Subscription
.- period Number
Service time of Container Registry Enterprise Edition instance. Default value:
12
. Valid values:1
,2
,3
,6
,12
,24
,36
,48
,60
. Unit:month
.- renew
Period Number Renewal period of Container Registry Enterprise Edition instance. Unit:
month
.- renewal
Status String Renewal status of Container Registry Enterprise Edition instance. Valid values:
AutoRenewal
,ManualRenewal
.
Outputs
All input properties are implicitly available as output properties. Additionally, the RegistryEnterpriseInstance resource produces the following output properties:
- Created
Time string Time of Container Registry Enterprise Edition instance creation.
- End
Time string Time of Container Registry Enterprise Edition instance expiration.
- Id string
The provider-assigned unique ID for this managed resource.
- Status string
Status of Container Registry Enterprise Edition instance.
- Created
Time string Time of Container Registry Enterprise Edition instance creation.
- End
Time string Time of Container Registry Enterprise Edition instance expiration.
- Id string
The provider-assigned unique ID for this managed resource.
- Status string
Status of Container Registry Enterprise Edition instance.
- created
Time String Time of Container Registry Enterprise Edition instance creation.
- end
Time String Time of Container Registry Enterprise Edition instance expiration.
- id String
The provider-assigned unique ID for this managed resource.
- status String
Status of Container Registry Enterprise Edition instance.
- created
Time string Time of Container Registry Enterprise Edition instance creation.
- end
Time string Time of Container Registry Enterprise Edition instance expiration.
- id string
The provider-assigned unique ID for this managed resource.
- status string
Status of Container Registry Enterprise Edition instance.
- created_
time str Time of Container Registry Enterprise Edition instance creation.
- end_
time str Time of Container Registry Enterprise Edition instance expiration.
- id str
The provider-assigned unique ID for this managed resource.
- status str
Status of Container Registry Enterprise Edition instance.
- created
Time String Time of Container Registry Enterprise Edition instance creation.
- end
Time String Time of Container Registry Enterprise Edition instance expiration.
- id String
The provider-assigned unique ID for this managed resource.
- status String
Status of Container Registry Enterprise Edition instance.
Look up an Existing RegistryEnterpriseInstance Resource
Get an existing RegistryEnterpriseInstance 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?: RegistryEnterpriseInstanceState, opts?: CustomResourceOptions): RegistryEnterpriseInstance
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
created_time: Optional[str] = None,
custom_oss_bucket: Optional[str] = None,
end_time: Optional[str] = None,
instance_name: Optional[str] = None,
instance_type: Optional[str] = None,
kms_encrypted_password: Optional[str] = None,
kms_encryption_context: Optional[Mapping[str, Any]] = None,
password: Optional[str] = None,
payment_type: Optional[str] = None,
period: Optional[int] = None,
renew_period: Optional[int] = None,
renewal_status: Optional[str] = None,
status: Optional[str] = None) -> RegistryEnterpriseInstance
func GetRegistryEnterpriseInstance(ctx *Context, name string, id IDInput, state *RegistryEnterpriseInstanceState, opts ...ResourceOption) (*RegistryEnterpriseInstance, error)
public static RegistryEnterpriseInstance Get(string name, Input<string> id, RegistryEnterpriseInstanceState? state, CustomResourceOptions? opts = null)
public static RegistryEnterpriseInstance get(String name, Output<String> id, RegistryEnterpriseInstanceState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Created
Time string Time of Container Registry Enterprise Edition instance creation.
- Custom
Oss stringBucket Name of your customized oss bucket. Use this bucket as instance storage if set.
- End
Time string Time of Container Registry Enterprise Edition instance expiration.
- Instance
Name string Name of Container Registry Enterprise Edition instance.
- Instance
Type string Type of Container Registry Enterprise Edition instance. Valid values:
Basic
,Standard
,Advanced
. NOTE: International Account doesn't supportsStandard
.- Kms
Encrypted stringPassword An KMS encrypts password used to an instance. If the
password
is filled in, this field will be ignored.- Kms
Encryption Dictionary<string, object>Context An KMS encryption context used to decrypt
kms_encrypted_password
before creating or updating instance withkms_encrypted_password
. See Encryption Context. It is valid whenkms_encrypted_password
is set.- Password string
The password of the Instance. The password is a string of 8 to 30 characters and must contain uppercase letters, lowercase letters, and numbers.
- Payment
Type string Subscription of Container Registry Enterprise Edition instance. Default value:
Subscription
. Valid values:Subscription
.- Period int
Service time of Container Registry Enterprise Edition instance. Default value:
12
. Valid values:1
,2
,3
,6
,12
,24
,36
,48
,60
. Unit:month
.- Renew
Period int Renewal period of Container Registry Enterprise Edition instance. Unit:
month
.- Renewal
Status string Renewal status of Container Registry Enterprise Edition instance. Valid values:
AutoRenewal
,ManualRenewal
.- Status string
Status of Container Registry Enterprise Edition instance.
- Created
Time string Time of Container Registry Enterprise Edition instance creation.
- Custom
Oss stringBucket Name of your customized oss bucket. Use this bucket as instance storage if set.
- End
Time string Time of Container Registry Enterprise Edition instance expiration.
- Instance
Name string Name of Container Registry Enterprise Edition instance.
- Instance
Type string Type of Container Registry Enterprise Edition instance. Valid values:
Basic
,Standard
,Advanced
. NOTE: International Account doesn't supportsStandard
.- Kms
Encrypted stringPassword An KMS encrypts password used to an instance. If the
password
is filled in, this field will be ignored.- Kms
Encryption map[string]interface{}Context An KMS encryption context used to decrypt
kms_encrypted_password
before creating or updating instance withkms_encrypted_password
. See Encryption Context. It is valid whenkms_encrypted_password
is set.- Password string
The password of the Instance. The password is a string of 8 to 30 characters and must contain uppercase letters, lowercase letters, and numbers.
- Payment
Type string Subscription of Container Registry Enterprise Edition instance. Default value:
Subscription
. Valid values:Subscription
.- Period int
Service time of Container Registry Enterprise Edition instance. Default value:
12
. Valid values:1
,2
,3
,6
,12
,24
,36
,48
,60
. Unit:month
.- Renew
Period int Renewal period of Container Registry Enterprise Edition instance. Unit:
month
.- Renewal
Status string Renewal status of Container Registry Enterprise Edition instance. Valid values:
AutoRenewal
,ManualRenewal
.- Status string
Status of Container Registry Enterprise Edition instance.
- created
Time String Time of Container Registry Enterprise Edition instance creation.
- custom
Oss StringBucket Name of your customized oss bucket. Use this bucket as instance storage if set.
- end
Time String Time of Container Registry Enterprise Edition instance expiration.
- instance
Name String Name of Container Registry Enterprise Edition instance.
- instance
Type String Type of Container Registry Enterprise Edition instance. Valid values:
Basic
,Standard
,Advanced
. NOTE: International Account doesn't supportsStandard
.- kms
Encrypted StringPassword An KMS encrypts password used to an instance. If the
password
is filled in, this field will be ignored.- kms
Encryption Map<String,Object>Context An KMS encryption context used to decrypt
kms_encrypted_password
before creating or updating instance withkms_encrypted_password
. See Encryption Context. It is valid whenkms_encrypted_password
is set.- password String
The password of the Instance. The password is a string of 8 to 30 characters and must contain uppercase letters, lowercase letters, and numbers.
- payment
Type String Subscription of Container Registry Enterprise Edition instance. Default value:
Subscription
. Valid values:Subscription
.- period Integer
Service time of Container Registry Enterprise Edition instance. Default value:
12
. Valid values:1
,2
,3
,6
,12
,24
,36
,48
,60
. Unit:month
.- renew
Period Integer Renewal period of Container Registry Enterprise Edition instance. Unit:
month
.- renewal
Status String Renewal status of Container Registry Enterprise Edition instance. Valid values:
AutoRenewal
,ManualRenewal
.- status String
Status of Container Registry Enterprise Edition instance.
- created
Time string Time of Container Registry Enterprise Edition instance creation.
- custom
Oss stringBucket Name of your customized oss bucket. Use this bucket as instance storage if set.
- end
Time string Time of Container Registry Enterprise Edition instance expiration.
- instance
Name string Name of Container Registry Enterprise Edition instance.
- instance
Type string Type of Container Registry Enterprise Edition instance. Valid values:
Basic
,Standard
,Advanced
. NOTE: International Account doesn't supportsStandard
.- kms
Encrypted stringPassword An KMS encrypts password used to an instance. If the
password
is filled in, this field will be ignored.- kms
Encryption {[key: string]: any}Context An KMS encryption context used to decrypt
kms_encrypted_password
before creating or updating instance withkms_encrypted_password
. See Encryption Context. It is valid whenkms_encrypted_password
is set.- password string
The password of the Instance. The password is a string of 8 to 30 characters and must contain uppercase letters, lowercase letters, and numbers.
- payment
Type string Subscription of Container Registry Enterprise Edition instance. Default value:
Subscription
. Valid values:Subscription
.- period number
Service time of Container Registry Enterprise Edition instance. Default value:
12
. Valid values:1
,2
,3
,6
,12
,24
,36
,48
,60
. Unit:month
.- renew
Period number Renewal period of Container Registry Enterprise Edition instance. Unit:
month
.- renewal
Status string Renewal status of Container Registry Enterprise Edition instance. Valid values:
AutoRenewal
,ManualRenewal
.- status string
Status of Container Registry Enterprise Edition instance.
- created_
time str Time of Container Registry Enterprise Edition instance creation.
- custom_
oss_ strbucket Name of your customized oss bucket. Use this bucket as instance storage if set.
- end_
time str Time of Container Registry Enterprise Edition instance expiration.
- instance_
name str Name of Container Registry Enterprise Edition instance.
- instance_
type str Type of Container Registry Enterprise Edition instance. Valid values:
Basic
,Standard
,Advanced
. NOTE: International Account doesn't supportsStandard
.- kms_
encrypted_ strpassword An KMS encrypts password used to an instance. If the
password
is filled in, this field will be ignored.- kms_
encryption_ Mapping[str, Any]context An KMS encryption context used to decrypt
kms_encrypted_password
before creating or updating instance withkms_encrypted_password
. See Encryption Context. It is valid whenkms_encrypted_password
is set.- password str
The password of the Instance. The password is a string of 8 to 30 characters and must contain uppercase letters, lowercase letters, and numbers.
- payment_
type str Subscription of Container Registry Enterprise Edition instance. Default value:
Subscription
. Valid values:Subscription
.- period int
Service time of Container Registry Enterprise Edition instance. Default value:
12
. Valid values:1
,2
,3
,6
,12
,24
,36
,48
,60
. Unit:month
.- renew_
period int Renewal period of Container Registry Enterprise Edition instance. Unit:
month
.- renewal_
status str Renewal status of Container Registry Enterprise Edition instance. Valid values:
AutoRenewal
,ManualRenewal
.- status str
Status of Container Registry Enterprise Edition instance.
- created
Time String Time of Container Registry Enterprise Edition instance creation.
- custom
Oss StringBucket Name of your customized oss bucket. Use this bucket as instance storage if set.
- end
Time String Time of Container Registry Enterprise Edition instance expiration.
- instance
Name String Name of Container Registry Enterprise Edition instance.
- instance
Type String Type of Container Registry Enterprise Edition instance. Valid values:
Basic
,Standard
,Advanced
. NOTE: International Account doesn't supportsStandard
.- kms
Encrypted StringPassword An KMS encrypts password used to an instance. If the
password
is filled in, this field will be ignored.- kms
Encryption Map<Any>Context An KMS encryption context used to decrypt
kms_encrypted_password
before creating or updating instance withkms_encrypted_password
. See Encryption Context. It is valid whenkms_encrypted_password
is set.- password String
The password of the Instance. The password is a string of 8 to 30 characters and must contain uppercase letters, lowercase letters, and numbers.
- payment
Type String Subscription of Container Registry Enterprise Edition instance. Default value:
Subscription
. Valid values:Subscription
.- period Number
Service time of Container Registry Enterprise Edition instance. Default value:
12
. Valid values:1
,2
,3
,6
,12
,24
,36
,48
,60
. Unit:month
.- renew
Period Number Renewal period of Container Registry Enterprise Edition instance. Unit:
month
.- renewal
Status String Renewal status of Container Registry Enterprise Edition instance. Valid values:
AutoRenewal
,ManualRenewal
.- status String
Status of Container Registry Enterprise Edition instance.
Import
Container Registry Enterprise Edition instance can be imported using the id
, e.g.
$ pulumi import alicloud:cr/registryEnterpriseInstance:RegistryEnterpriseInstance default cri-test
Package Details
- Repository
- https://github.com/pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
alicloud
Terraform Provider.