1. Packages
  2. Vkcs Provider
  3. API Docs
  4. MlplatformK8sRegistry
vkcs 0.9.3 published on Tuesday, Apr 15, 2025 by vk-cs

vkcs.MlplatformK8sRegistry

Explore with Pulumi AI

vkcs logo
vkcs 0.9.3 published on Tuesday, Apr 15, 2025 by vk-cs

    Manages a ML Platform K8SRegistry resource.

    New since v0.7.0.

    Example Usage

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.vkcs.MlplatformK8sRegistry;
    import com.pulumi.vkcs.MlplatformK8sRegistryArgs;
    import com.pulumi.vkcs.inputs.MlplatformK8sRegistryBootVolumeArgs;
    import com.pulumi.vkcs.inputs.MlplatformK8sRegistryNetworkArgs;
    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 k8sRegistry = new MlplatformK8sRegistry("k8sRegistry", MlplatformK8sRegistryArgs.builder()
                .adminName("admin")
                .adminPassword("dM8Ao21,0S264iZp")
                .flavorId(data.vkcs_compute_flavor().basic().id())
                .availabilityZone("GZ1")
                .bootVolume(MlplatformK8sRegistryBootVolumeArgs.builder()
                    .volume_type("ceph-ssd")
                    .build())
                .networks(MlplatformK8sRegistryNetworkArgs.builder()
                    .networkId(vkcs_networking_network.app().id())
                    .ipPool(data.vkcs_networking_network().extnet().id())
                    .build())
                .build());
    
        }
    }
    
    resources:
      k8sRegistry:
        type: vkcs:MlplatformK8sRegistry
        properties:
          adminName: admin
          adminPassword: dM8Ao21,0S264iZp
          flavorId: ${data.vkcs_compute_flavor.basic.id}
          availabilityZone: GZ1
          bootVolume:
            volume_type: ceph-ssd
          networks:
            - networkId: ${vkcs_networking_network.app.id}
              ipPool: ${data.vkcs_networking_network.extnet.id}
    

    Create MlplatformK8sRegistry Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new MlplatformK8sRegistry(name: string, args: MlplatformK8sRegistryArgs, opts?: CustomResourceOptions);
    @overload
    def MlplatformK8sRegistry(resource_name: str,
                              args: MlplatformK8sRegistryArgs,
                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def MlplatformK8sRegistry(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              availability_zone: Optional[str] = None,
                              boot_volume: Optional[MlplatformK8sRegistryBootVolumeArgs] = None,
                              flavor_id: Optional[str] = None,
                              networks: Optional[Sequence[MlplatformK8sRegistryNetworkArgs]] = None,
                              admin_name: Optional[str] = None,
                              admin_password: Optional[str] = None,
                              data_volumes: Optional[Sequence[MlplatformK8sRegistryDataVolumeArgs]] = None,
                              domain_name: Optional[str] = None,
                              name: Optional[str] = None,
                              region: Optional[str] = None,
                              timeouts: Optional[MlplatformK8sRegistryTimeoutsArgs] = None)
    func NewMlplatformK8sRegistry(ctx *Context, name string, args MlplatformK8sRegistryArgs, opts ...ResourceOption) (*MlplatformK8sRegistry, error)
    public MlplatformK8sRegistry(string name, MlplatformK8sRegistryArgs args, CustomResourceOptions? opts = null)
    public MlplatformK8sRegistry(String name, MlplatformK8sRegistryArgs args)
    public MlplatformK8sRegistry(String name, MlplatformK8sRegistryArgs args, CustomResourceOptions options)
    
    type: vkcs:MlplatformK8sRegistry
    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 MlplatformK8sRegistryArgs
    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 MlplatformK8sRegistryArgs
    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 MlplatformK8sRegistryArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args MlplatformK8sRegistryArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args MlplatformK8sRegistryArgs
    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 mlplatformK8sRegistryResource = new Vkcs.MlplatformK8sRegistry("mlplatformK8sRegistryResource", new()
    {
        AvailabilityZone = "string",
        BootVolume = new Vkcs.Inputs.MlplatformK8sRegistryBootVolumeArgs
        {
            VolumeType = "string",
            Name = "string",
            Size = 0,
            VolumeId = "string",
        },
        FlavorId = "string",
        Networks = new[]
        {
            new Vkcs.Inputs.MlplatformK8sRegistryNetworkArgs
            {
                IpPool = "string",
                NetworkId = "string",
            },
        },
        AdminName = "string",
        AdminPassword = "string",
        DataVolumes = new[]
        {
            new Vkcs.Inputs.MlplatformK8sRegistryDataVolumeArgs
            {
                Size = 0,
                VolumeType = "string",
                Name = "string",
                VolumeId = "string",
            },
        },
        DomainName = "string",
        Name = "string",
        Region = "string",
        Timeouts = new Vkcs.Inputs.MlplatformK8sRegistryTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Update = "string",
        },
    });
    
    example, err := vkcs.NewMlplatformK8sRegistry(ctx, "mlplatformK8sRegistryResource", &vkcs.MlplatformK8sRegistryArgs{
    	AvailabilityZone: pulumi.String("string"),
    	BootVolume: &vkcs.MlplatformK8sRegistryBootVolumeArgs{
    		VolumeType: pulumi.String("string"),
    		Name:       pulumi.String("string"),
    		Size:       pulumi.Float64(0),
    		VolumeId:   pulumi.String("string"),
    	},
    	FlavorId: pulumi.String("string"),
    	Networks: vkcs.MlplatformK8sRegistryNetworkArray{
    		&vkcs.MlplatformK8sRegistryNetworkArgs{
    			IpPool:    pulumi.String("string"),
    			NetworkId: pulumi.String("string"),
    		},
    	},
    	AdminName:     pulumi.String("string"),
    	AdminPassword: pulumi.String("string"),
    	DataVolumes: vkcs.MlplatformK8sRegistryDataVolumeArray{
    		&vkcs.MlplatformK8sRegistryDataVolumeArgs{
    			Size:       pulumi.Float64(0),
    			VolumeType: pulumi.String("string"),
    			Name:       pulumi.String("string"),
    			VolumeId:   pulumi.String("string"),
    		},
    	},
    	DomainName: pulumi.String("string"),
    	Name:       pulumi.String("string"),
    	Region:     pulumi.String("string"),
    	Timeouts: &vkcs.MlplatformK8sRegistryTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    })
    
    var mlplatformK8sRegistryResource = new MlplatformK8sRegistry("mlplatformK8sRegistryResource", MlplatformK8sRegistryArgs.builder()
        .availabilityZone("string")
        .bootVolume(MlplatformK8sRegistryBootVolumeArgs.builder()
            .volumeType("string")
            .name("string")
            .size(0)
            .volumeId("string")
            .build())
        .flavorId("string")
        .networks(MlplatformK8sRegistryNetworkArgs.builder()
            .ipPool("string")
            .networkId("string")
            .build())
        .adminName("string")
        .adminPassword("string")
        .dataVolumes(MlplatformK8sRegistryDataVolumeArgs.builder()
            .size(0)
            .volumeType("string")
            .name("string")
            .volumeId("string")
            .build())
        .domainName("string")
        .name("string")
        .region("string")
        .timeouts(MlplatformK8sRegistryTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .update("string")
            .build())
        .build());
    
    mlplatform_k8s_registry_resource = vkcs.MlplatformK8sRegistry("mlplatformK8sRegistryResource",
        availability_zone="string",
        boot_volume={
            "volume_type": "string",
            "name": "string",
            "size": 0,
            "volume_id": "string",
        },
        flavor_id="string",
        networks=[{
            "ip_pool": "string",
            "network_id": "string",
        }],
        admin_name="string",
        admin_password="string",
        data_volumes=[{
            "size": 0,
            "volume_type": "string",
            "name": "string",
            "volume_id": "string",
        }],
        domain_name="string",
        name="string",
        region="string",
        timeouts={
            "create": "string",
            "delete": "string",
            "update": "string",
        })
    
    const mlplatformK8sRegistryResource = new vkcs.MlplatformK8sRegistry("mlplatformK8sRegistryResource", {
        availabilityZone: "string",
        bootVolume: {
            volumeType: "string",
            name: "string",
            size: 0,
            volumeId: "string",
        },
        flavorId: "string",
        networks: [{
            ipPool: "string",
            networkId: "string",
        }],
        adminName: "string",
        adminPassword: "string",
        dataVolumes: [{
            size: 0,
            volumeType: "string",
            name: "string",
            volumeId: "string",
        }],
        domainName: "string",
        name: "string",
        region: "string",
        timeouts: {
            create: "string",
            "delete": "string",
            update: "string",
        },
    });
    
    type: vkcs:MlplatformK8sRegistry
    properties:
        adminName: string
        adminPassword: string
        availabilityZone: string
        bootVolume:
            name: string
            size: 0
            volumeId: string
            volumeType: string
        dataVolumes:
            - name: string
              size: 0
              volumeId: string
              volumeType: string
        domainName: string
        flavorId: string
        name: string
        networks:
            - ipPool: string
              networkId: string
        region: string
        timeouts:
            create: string
            delete: string
            update: string
    

    MlplatformK8sRegistry 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 MlplatformK8sRegistry resource accepts the following input properties:

    AvailabilityZone string
    required string → The availability zone in which to create the resource. Changing this creates a new resource
    BootVolume MlplatformK8sRegistryBootVolume
    required → Instance's boot volume configuration
    FlavorId string
    required string → Flavor ID
    Networks List<MlplatformK8sRegistryNetwork>
    list → Network configuration
    AdminName string
    optional string → K8SRegistry admin name. Changing this creates a new resource
    AdminPassword string
    optional sensitive string → K8SRegistry admin password. Changing this creates a new resource
    DataVolumes List<MlplatformK8sRegistryDataVolume>
    list → Instance's data volumes configuration
    DomainName string
    optional string → Domain name. Changing this creates a new resource
    Name string
    required string → Instance name. Changing this creates a new resource
    Region string
    optional string → The region in which ML Platform client is obtained, defaults to the provider's region.
    Timeouts MlplatformK8sRegistryTimeouts
    AvailabilityZone string
    required string → The availability zone in which to create the resource. Changing this creates a new resource
    BootVolume MlplatformK8sRegistryBootVolumeArgs
    required → Instance's boot volume configuration
    FlavorId string
    required string → Flavor ID
    Networks []MlplatformK8sRegistryNetworkArgs
    list → Network configuration
    AdminName string
    optional string → K8SRegistry admin name. Changing this creates a new resource
    AdminPassword string
    optional sensitive string → K8SRegistry admin password. Changing this creates a new resource
    DataVolumes []MlplatformK8sRegistryDataVolumeArgs
    list → Instance's data volumes configuration
    DomainName string
    optional string → Domain name. Changing this creates a new resource
    Name string
    required string → Instance name. Changing this creates a new resource
    Region string
    optional string → The region in which ML Platform client is obtained, defaults to the provider's region.
    Timeouts MlplatformK8sRegistryTimeoutsArgs
    availabilityZone String
    required string → The availability zone in which to create the resource. Changing this creates a new resource
    bootVolume MlplatformK8sRegistryBootVolume
    required → Instance's boot volume configuration
    flavorId String
    required string → Flavor ID
    networks List<MlplatformK8sRegistryNetwork>
    list → Network configuration
    adminName String
    optional string → K8SRegistry admin name. Changing this creates a new resource
    adminPassword String
    optional sensitive string → K8SRegistry admin password. Changing this creates a new resource
    dataVolumes List<MlplatformK8sRegistryDataVolume>
    list → Instance's data volumes configuration
    domainName String
    optional string → Domain name. Changing this creates a new resource
    name String
    required string → Instance name. Changing this creates a new resource
    region String
    optional string → The region in which ML Platform client is obtained, defaults to the provider's region.
    timeouts MlplatformK8sRegistryTimeouts
    availabilityZone string
    required string → The availability zone in which to create the resource. Changing this creates a new resource
    bootVolume MlplatformK8sRegistryBootVolume
    required → Instance's boot volume configuration
    flavorId string
    required string → Flavor ID
    networks MlplatformK8sRegistryNetwork[]
    list → Network configuration
    adminName string
    optional string → K8SRegistry admin name. Changing this creates a new resource
    adminPassword string
    optional sensitive string → K8SRegistry admin password. Changing this creates a new resource
    dataVolumes MlplatformK8sRegistryDataVolume[]
    list → Instance's data volumes configuration
    domainName string
    optional string → Domain name. Changing this creates a new resource
    name string
    required string → Instance name. Changing this creates a new resource
    region string
    optional string → The region in which ML Platform client is obtained, defaults to the provider's region.
    timeouts MlplatformK8sRegistryTimeouts
    availability_zone str
    required string → The availability zone in which to create the resource. Changing this creates a new resource
    boot_volume MlplatformK8sRegistryBootVolumeArgs
    required → Instance's boot volume configuration
    flavor_id str
    required string → Flavor ID
    networks Sequence[MlplatformK8sRegistryNetworkArgs]
    list → Network configuration
    admin_name str
    optional string → K8SRegistry admin name. Changing this creates a new resource
    admin_password str
    optional sensitive string → K8SRegistry admin password. Changing this creates a new resource
    data_volumes Sequence[MlplatformK8sRegistryDataVolumeArgs]
    list → Instance's data volumes configuration
    domain_name str
    optional string → Domain name. Changing this creates a new resource
    name str
    required string → Instance name. Changing this creates a new resource
    region str
    optional string → The region in which ML Platform client is obtained, defaults to the provider's region.
    timeouts MlplatformK8sRegistryTimeoutsArgs
    availabilityZone String
    required string → The availability zone in which to create the resource. Changing this creates a new resource
    bootVolume Property Map
    required → Instance's boot volume configuration
    flavorId String
    required string → Flavor ID
    networks List<Property Map>
    list → Network configuration
    adminName String
    optional string → K8SRegistry admin name. Changing this creates a new resource
    adminPassword String
    optional sensitive string → K8SRegistry admin password. Changing this creates a new resource
    dataVolumes List<Property Map>
    list → Instance's data volumes configuration
    domainName String
    optional string → Domain name. Changing this creates a new resource
    name String
    required string → Instance name. Changing this creates a new resource
    region String
    optional string → The region in which ML Platform client is obtained, defaults to the provider's region.
    timeouts Property Map

    Outputs

    All input properties are implicitly available as output properties. Additionally, the MlplatformK8sRegistry resource produces the following output properties:

    CreatedAt string
    string → Creation timestamp
    DnsName string
    string → DNS name
    Id string
    The provider-assigned unique ID for this managed resource.
    PrivateIp string
    string → Private IP address
    CreatedAt string
    string → Creation timestamp
    DnsName string
    string → DNS name
    Id string
    The provider-assigned unique ID for this managed resource.
    PrivateIp string
    string → Private IP address
    createdAt String
    string → Creation timestamp
    dnsName String
    string → DNS name
    id String
    The provider-assigned unique ID for this managed resource.
    privateIp String
    string → Private IP address
    createdAt string
    string → Creation timestamp
    dnsName string
    string → DNS name
    id string
    The provider-assigned unique ID for this managed resource.
    privateIp string
    string → Private IP address
    created_at str
    string → Creation timestamp
    dns_name str
    string → DNS name
    id str
    The provider-assigned unique ID for this managed resource.
    private_ip str
    string → Private IP address
    createdAt String
    string → Creation timestamp
    dnsName String
    string → DNS name
    id String
    The provider-assigned unique ID for this managed resource.
    privateIp String
    string → Private IP address

    Look up Existing MlplatformK8sRegistry Resource

    Get an existing MlplatformK8sRegistry 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?: MlplatformK8sRegistryState, opts?: CustomResourceOptions): MlplatformK8sRegistry
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            admin_name: Optional[str] = None,
            admin_password: Optional[str] = None,
            availability_zone: Optional[str] = None,
            boot_volume: Optional[MlplatformK8sRegistryBootVolumeArgs] = None,
            created_at: Optional[str] = None,
            data_volumes: Optional[Sequence[MlplatformK8sRegistryDataVolumeArgs]] = None,
            dns_name: Optional[str] = None,
            domain_name: Optional[str] = None,
            flavor_id: Optional[str] = None,
            name: Optional[str] = None,
            networks: Optional[Sequence[MlplatformK8sRegistryNetworkArgs]] = None,
            private_ip: Optional[str] = None,
            region: Optional[str] = None,
            timeouts: Optional[MlplatformK8sRegistryTimeoutsArgs] = None) -> MlplatformK8sRegistry
    func GetMlplatformK8sRegistry(ctx *Context, name string, id IDInput, state *MlplatformK8sRegistryState, opts ...ResourceOption) (*MlplatformK8sRegistry, error)
    public static MlplatformK8sRegistry Get(string name, Input<string> id, MlplatformK8sRegistryState? state, CustomResourceOptions? opts = null)
    public static MlplatformK8sRegistry get(String name, Output<String> id, MlplatformK8sRegistryState state, CustomResourceOptions options)
    resources:  _:    type: vkcs:MlplatformK8sRegistry    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.
    The following state arguments are supported:
    AdminName string
    optional string → K8SRegistry admin name. Changing this creates a new resource
    AdminPassword string
    optional sensitive string → K8SRegistry admin password. Changing this creates a new resource
    AvailabilityZone string
    required string → The availability zone in which to create the resource. Changing this creates a new resource
    BootVolume MlplatformK8sRegistryBootVolume
    required → Instance's boot volume configuration
    CreatedAt string
    string → Creation timestamp
    DataVolumes List<MlplatformK8sRegistryDataVolume>
    list → Instance's data volumes configuration
    DnsName string
    string → DNS name
    DomainName string
    optional string → Domain name. Changing this creates a new resource
    FlavorId string
    required string → Flavor ID
    Name string
    required string → Instance name. Changing this creates a new resource
    Networks List<MlplatformK8sRegistryNetwork>
    list → Network configuration
    PrivateIp string
    string → Private IP address
    Region string
    optional string → The region in which ML Platform client is obtained, defaults to the provider's region.
    Timeouts MlplatformK8sRegistryTimeouts
    AdminName string
    optional string → K8SRegistry admin name. Changing this creates a new resource
    AdminPassword string
    optional sensitive string → K8SRegistry admin password. Changing this creates a new resource
    AvailabilityZone string
    required string → The availability zone in which to create the resource. Changing this creates a new resource
    BootVolume MlplatformK8sRegistryBootVolumeArgs
    required → Instance's boot volume configuration
    CreatedAt string
    string → Creation timestamp
    DataVolumes []MlplatformK8sRegistryDataVolumeArgs
    list → Instance's data volumes configuration
    DnsName string
    string → DNS name
    DomainName string
    optional string → Domain name. Changing this creates a new resource
    FlavorId string
    required string → Flavor ID
    Name string
    required string → Instance name. Changing this creates a new resource
    Networks []MlplatformK8sRegistryNetworkArgs
    list → Network configuration
    PrivateIp string
    string → Private IP address
    Region string
    optional string → The region in which ML Platform client is obtained, defaults to the provider's region.
    Timeouts MlplatformK8sRegistryTimeoutsArgs
    adminName String
    optional string → K8SRegistry admin name. Changing this creates a new resource
    adminPassword String
    optional sensitive string → K8SRegistry admin password. Changing this creates a new resource
    availabilityZone String
    required string → The availability zone in which to create the resource. Changing this creates a new resource
    bootVolume MlplatformK8sRegistryBootVolume
    required → Instance's boot volume configuration
    createdAt String
    string → Creation timestamp
    dataVolumes List<MlplatformK8sRegistryDataVolume>
    list → Instance's data volumes configuration
    dnsName String
    string → DNS name
    domainName String
    optional string → Domain name. Changing this creates a new resource
    flavorId String
    required string → Flavor ID
    name String
    required string → Instance name. Changing this creates a new resource
    networks List<MlplatformK8sRegistryNetwork>
    list → Network configuration
    privateIp String
    string → Private IP address
    region String
    optional string → The region in which ML Platform client is obtained, defaults to the provider's region.
    timeouts MlplatformK8sRegistryTimeouts
    adminName string
    optional string → K8SRegistry admin name. Changing this creates a new resource
    adminPassword string
    optional sensitive string → K8SRegistry admin password. Changing this creates a new resource
    availabilityZone string
    required string → The availability zone in which to create the resource. Changing this creates a new resource
    bootVolume MlplatformK8sRegistryBootVolume
    required → Instance's boot volume configuration
    createdAt string
    string → Creation timestamp
    dataVolumes MlplatformK8sRegistryDataVolume[]
    list → Instance's data volumes configuration
    dnsName string
    string → DNS name
    domainName string
    optional string → Domain name. Changing this creates a new resource
    flavorId string
    required string → Flavor ID
    name string
    required string → Instance name. Changing this creates a new resource
    networks MlplatformK8sRegistryNetwork[]
    list → Network configuration
    privateIp string
    string → Private IP address
    region string
    optional string → The region in which ML Platform client is obtained, defaults to the provider's region.
    timeouts MlplatformK8sRegistryTimeouts
    admin_name str
    optional string → K8SRegistry admin name. Changing this creates a new resource
    admin_password str
    optional sensitive string → K8SRegistry admin password. Changing this creates a new resource
    availability_zone str
    required string → The availability zone in which to create the resource. Changing this creates a new resource
    boot_volume MlplatformK8sRegistryBootVolumeArgs
    required → Instance's boot volume configuration
    created_at str
    string → Creation timestamp
    data_volumes Sequence[MlplatformK8sRegistryDataVolumeArgs]
    list → Instance's data volumes configuration
    dns_name str
    string → DNS name
    domain_name str
    optional string → Domain name. Changing this creates a new resource
    flavor_id str
    required string → Flavor ID
    name str
    required string → Instance name. Changing this creates a new resource
    networks Sequence[MlplatformK8sRegistryNetworkArgs]
    list → Network configuration
    private_ip str
    string → Private IP address
    region str
    optional string → The region in which ML Platform client is obtained, defaults to the provider's region.
    timeouts MlplatformK8sRegistryTimeoutsArgs
    adminName String
    optional string → K8SRegistry admin name. Changing this creates a new resource
    adminPassword String
    optional sensitive string → K8SRegistry admin password. Changing this creates a new resource
    availabilityZone String
    required string → The availability zone in which to create the resource. Changing this creates a new resource
    bootVolume Property Map
    required → Instance's boot volume configuration
    createdAt String
    string → Creation timestamp
    dataVolumes List<Property Map>
    list → Instance's data volumes configuration
    dnsName String
    string → DNS name
    domainName String
    optional string → Domain name. Changing this creates a new resource
    flavorId String
    required string → Flavor ID
    name String
    required string → Instance name. Changing this creates a new resource
    networks List<Property Map>
    list → Network configuration
    privateIp String
    string → Private IP address
    region String
    optional string → The region in which ML Platform client is obtained, defaults to the provider's region.
    timeouts Property Map

    Supporting Types

    MlplatformK8sRegistryBootVolume, MlplatformK8sRegistryBootVolumeArgs

    VolumeType string
    required string → Type of the volume
    Name string
    read-only string → Name of the volume
    Size double
    optional number → Size of the volume
    VolumeId string
    read-only string → ID of the volume
    VolumeType string
    required string → Type of the volume
    Name string
    read-only string → Name of the volume
    Size float64
    optional number → Size of the volume
    VolumeId string
    read-only string → ID of the volume
    volumeType String
    required string → Type of the volume
    name String
    read-only string → Name of the volume
    size Double
    optional number → Size of the volume
    volumeId String
    read-only string → ID of the volume
    volumeType string
    required string → Type of the volume
    name string
    read-only string → Name of the volume
    size number
    optional number → Size of the volume
    volumeId string
    read-only string → ID of the volume
    volume_type str
    required string → Type of the volume
    name str
    read-only string → Name of the volume
    size float
    optional number → Size of the volume
    volume_id str
    read-only string → ID of the volume
    volumeType String
    required string → Type of the volume
    name String
    read-only string → Name of the volume
    size Number
    optional number → Size of the volume
    volumeId String
    read-only string → ID of the volume

    MlplatformK8sRegistryDataVolume, MlplatformK8sRegistryDataVolumeArgs

    Size double
    required number → Size of the volume
    VolumeType string
    required string → Type of the volume
    Name string
    read-only string → Name of the volume
    VolumeId string
    read-only string → ID of the volume
    Size float64
    required number → Size of the volume
    VolumeType string
    required string → Type of the volume
    Name string
    read-only string → Name of the volume
    VolumeId string
    read-only string → ID of the volume
    size Double
    required number → Size of the volume
    volumeType String
    required string → Type of the volume
    name String
    read-only string → Name of the volume
    volumeId String
    read-only string → ID of the volume
    size number
    required number → Size of the volume
    volumeType string
    required string → Type of the volume
    name string
    read-only string → Name of the volume
    volumeId string
    read-only string → ID of the volume
    size float
    required number → Size of the volume
    volume_type str
    required string → Type of the volume
    name str
    read-only string → Name of the volume
    volume_id str
    read-only string → ID of the volume
    size Number
    required number → Size of the volume
    volumeType String
    required string → Type of the volume
    name String
    read-only string → Name of the volume
    volumeId String
    read-only string → ID of the volume

    MlplatformK8sRegistryNetwork, MlplatformK8sRegistryNetworkArgs

    IpPool string
    required string → ID of the ip pool
    NetworkId string
    required string → ID of the network
    IpPool string
    required string → ID of the ip pool
    NetworkId string
    required string → ID of the network
    ipPool String
    required string → ID of the ip pool
    networkId String
    required string → ID of the network
    ipPool string
    required string → ID of the ip pool
    networkId string
    required string → ID of the network
    ip_pool str
    required string → ID of the ip pool
    network_id str
    required string → ID of the network
    ipPool String
    required string → ID of the ip pool
    networkId String
    required string → ID of the network

    MlplatformK8sRegistryTimeouts, MlplatformK8sRegistryTimeoutsArgs

    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).

    Import

    ML Platform K8S Registry instance can be imported using the id, e.g.

    $ pulumi import vkcs:index/mlplatformK8sRegistry:MlplatformK8sRegistry myk8sregistry 0229eb40-5b56-4ab1-857f-453848a542f3
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    vkcs vk-cs/terraform-provider-vkcs
    License
    Notes
    This Pulumi package is based on the vkcs Terraform Provider.
    vkcs logo
    vkcs 0.9.3 published on Tuesday, Apr 15, 2025 by vk-cs