1. Packages
  2. Ibm Provider
  3. API Docs
  4. EnDestinationHuawei
ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud

ibm.EnDestinationHuawei

Explore with Pulumi AI

ibm logo
ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud

    Create, update, or delete a Huawei destination by using IBM Cloud™ Event Notifications.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as ibm from "@pulumi/ibm";
    
    const huaweiEnDestination = new ibm.EnDestinationHuawei("huaweiEnDestination", {
        instanceGuid: ibm_resource_instance.en_terraform_test_resource.guid,
        type: "push_huawei",
        collectFailedEvents: false,
        description: "The Huawei Destination",
        config: {
            params: {
                clientId: "5237288990",
                clientSecret: "36228ghutwervhudokmksiegfevssavdvywvwww",
                preProd: false,
            },
        },
    });
    
    import pulumi
    import pulumi_ibm as ibm
    
    huawei_en_destination = ibm.EnDestinationHuawei("huaweiEnDestination",
        instance_guid=ibm_resource_instance["en_terraform_test_resource"]["guid"],
        type="push_huawei",
        collect_failed_events=False,
        description="The Huawei Destination",
        config={
            "params": {
                "client_id": "5237288990",
                "client_secret": "36228ghutwervhudokmksiegfevssavdvywvwww",
                "pre_prod": False,
            },
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/ibm"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ibm.NewEnDestinationHuawei(ctx, "huaweiEnDestination", &ibm.EnDestinationHuaweiArgs{
    			InstanceGuid:        pulumi.Any(ibm_resource_instance.En_terraform_test_resource.Guid),
    			Type:                pulumi.String("push_huawei"),
    			CollectFailedEvents: pulumi.Bool(false),
    			Description:         pulumi.String("The Huawei Destination"),
    			Config: &ibm.EnDestinationHuaweiConfigArgs{
    				Params: &ibm.EnDestinationHuaweiConfigParamsArgs{
    					ClientId:     pulumi.String("5237288990"),
    					ClientSecret: pulumi.String("36228ghutwervhudokmksiegfevssavdvywvwww"),
    					PreProd:      pulumi.Bool(false),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Ibm = Pulumi.Ibm;
    
    return await Deployment.RunAsync(() => 
    {
        var huaweiEnDestination = new Ibm.EnDestinationHuawei("huaweiEnDestination", new()
        {
            InstanceGuid = ibm_resource_instance.En_terraform_test_resource.Guid,
            Type = "push_huawei",
            CollectFailedEvents = false,
            Description = "The Huawei Destination",
            Config = new Ibm.Inputs.EnDestinationHuaweiConfigArgs
            {
                Params = new Ibm.Inputs.EnDestinationHuaweiConfigParamsArgs
                {
                    ClientId = "5237288990",
                    ClientSecret = "36228ghutwervhudokmksiegfevssavdvywvwww",
                    PreProd = false,
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.ibm.EnDestinationHuawei;
    import com.pulumi.ibm.EnDestinationHuaweiArgs;
    import com.pulumi.ibm.inputs.EnDestinationHuaweiConfigArgs;
    import com.pulumi.ibm.inputs.EnDestinationHuaweiConfigParamsArgs;
    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 huaweiEnDestination = new EnDestinationHuawei("huaweiEnDestination", EnDestinationHuaweiArgs.builder()
                .instanceGuid(ibm_resource_instance.en_terraform_test_resource().guid())
                .type("push_huawei")
                .collectFailedEvents(false)
                .description("The Huawei Destination")
                .config(EnDestinationHuaweiConfigArgs.builder()
                    .params(EnDestinationHuaweiConfigParamsArgs.builder()
                        .clientId("5237288990")
                        .clientSecret("36228ghutwervhudokmksiegfevssavdvywvwww")
                        .preProd(false)
                        .build())
                    .build())
                .build());
    
        }
    }
    
    resources:
      huaweiEnDestination:
        type: ibm:EnDestinationHuawei
        properties:
          instanceGuid: ${ibm_resource_instance.en_terraform_test_resource.guid}
          type: push_huawei
          collectFailedEvents: false
          description: The Huawei Destination
          config:
            params:
              clientId: '5237288990'
              clientSecret: 36228ghutwervhudokmksiegfevssavdvywvwww
              preProd: false
    

    Create EnDestinationHuawei Resource

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

    Constructor syntax

    new EnDestinationHuawei(name: string, args: EnDestinationHuaweiArgs, opts?: CustomResourceOptions);
    @overload
    def EnDestinationHuawei(resource_name: str,
                            args: EnDestinationHuaweiArgs,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def EnDestinationHuawei(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            instance_guid: Optional[str] = None,
                            type: Optional[str] = None,
                            collect_failed_events: Optional[bool] = None,
                            config: Optional[EnDestinationHuaweiConfigArgs] = None,
                            description: Optional[str] = None,
                            en_destination_huawei_id: Optional[str] = None,
                            name: Optional[str] = None)
    func NewEnDestinationHuawei(ctx *Context, name string, args EnDestinationHuaweiArgs, opts ...ResourceOption) (*EnDestinationHuawei, error)
    public EnDestinationHuawei(string name, EnDestinationHuaweiArgs args, CustomResourceOptions? opts = null)
    public EnDestinationHuawei(String name, EnDestinationHuaweiArgs args)
    public EnDestinationHuawei(String name, EnDestinationHuaweiArgs args, CustomResourceOptions options)
    
    type: ibm:EnDestinationHuawei
    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 EnDestinationHuaweiArgs
    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 EnDestinationHuaweiArgs
    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 EnDestinationHuaweiArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args EnDestinationHuaweiArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args EnDestinationHuaweiArgs
    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 enDestinationHuaweiResource = new Ibm.EnDestinationHuawei("enDestinationHuaweiResource", new()
    {
        InstanceGuid = "string",
        Type = "string",
        CollectFailedEvents = false,
        Config = new Ibm.Inputs.EnDestinationHuaweiConfigArgs
        {
            Params = new Ibm.Inputs.EnDestinationHuaweiConfigParamsArgs
            {
                ClientId = "string",
                ClientSecret = "string",
                PreProd = false,
            },
        },
        Description = "string",
        EnDestinationHuaweiId = "string",
        Name = "string",
    });
    
    example, err := ibm.NewEnDestinationHuawei(ctx, "enDestinationHuaweiResource", &ibm.EnDestinationHuaweiArgs{
    	InstanceGuid:        pulumi.String("string"),
    	Type:                pulumi.String("string"),
    	CollectFailedEvents: pulumi.Bool(false),
    	Config: &ibm.EnDestinationHuaweiConfigArgs{
    		Params: &ibm.EnDestinationHuaweiConfigParamsArgs{
    			ClientId:     pulumi.String("string"),
    			ClientSecret: pulumi.String("string"),
    			PreProd:      pulumi.Bool(false),
    		},
    	},
    	Description:           pulumi.String("string"),
    	EnDestinationHuaweiId: pulumi.String("string"),
    	Name:                  pulumi.String("string"),
    })
    
    var enDestinationHuaweiResource = new EnDestinationHuawei("enDestinationHuaweiResource", EnDestinationHuaweiArgs.builder()
        .instanceGuid("string")
        .type("string")
        .collectFailedEvents(false)
        .config(EnDestinationHuaweiConfigArgs.builder()
            .params(EnDestinationHuaweiConfigParamsArgs.builder()
                .clientId("string")
                .clientSecret("string")
                .preProd(false)
                .build())
            .build())
        .description("string")
        .enDestinationHuaweiId("string")
        .name("string")
        .build());
    
    en_destination_huawei_resource = ibm.EnDestinationHuawei("enDestinationHuaweiResource",
        instance_guid="string",
        type="string",
        collect_failed_events=False,
        config={
            "params": {
                "client_id": "string",
                "client_secret": "string",
                "pre_prod": False,
            },
        },
        description="string",
        en_destination_huawei_id="string",
        name="string")
    
    const enDestinationHuaweiResource = new ibm.EnDestinationHuawei("enDestinationHuaweiResource", {
        instanceGuid: "string",
        type: "string",
        collectFailedEvents: false,
        config: {
            params: {
                clientId: "string",
                clientSecret: "string",
                preProd: false,
            },
        },
        description: "string",
        enDestinationHuaweiId: "string",
        name: "string",
    });
    
    type: ibm:EnDestinationHuawei
    properties:
        collectFailedEvents: false
        config:
            params:
                clientId: string
                clientSecret: string
                preProd: false
        description: string
        enDestinationHuaweiId: string
        instanceGuid: string
        name: string
        type: string
    

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

    InstanceGuid string
    Unique identifier for IBM Cloud Event Notifications instance.
    Type string
    push_huawei.
    CollectFailedEvents bool
    Toggle switch to enable collect failed event in Cloud Object Storage bucket.
    Config EnDestinationHuaweiConfig

    Payload describing a destination configuration.

    Nested scheme for config:

    Description string
    The Destination description.
    EnDestinationHuaweiId string
    (String) The unique identifier of the huawei_en_destination.
    Name string
    The Destintion name.
    InstanceGuid string
    Unique identifier for IBM Cloud Event Notifications instance.
    Type string
    push_huawei.
    CollectFailedEvents bool
    Toggle switch to enable collect failed event in Cloud Object Storage bucket.
    Config EnDestinationHuaweiConfigArgs

    Payload describing a destination configuration.

    Nested scheme for config:

    Description string
    The Destination description.
    EnDestinationHuaweiId string
    (String) The unique identifier of the huawei_en_destination.
    Name string
    The Destintion name.
    instanceGuid String
    Unique identifier for IBM Cloud Event Notifications instance.
    type String
    push_huawei.
    collectFailedEvents Boolean
    Toggle switch to enable collect failed event in Cloud Object Storage bucket.
    config EnDestinationHuaweiConfig

    Payload describing a destination configuration.

    Nested scheme for config:

    description String
    The Destination description.
    enDestinationHuaweiId String
    (String) The unique identifier of the huawei_en_destination.
    name String
    The Destintion name.
    instanceGuid string
    Unique identifier for IBM Cloud Event Notifications instance.
    type string
    push_huawei.
    collectFailedEvents boolean
    Toggle switch to enable collect failed event in Cloud Object Storage bucket.
    config EnDestinationHuaweiConfig

    Payload describing a destination configuration.

    Nested scheme for config:

    description string
    The Destination description.
    enDestinationHuaweiId string
    (String) The unique identifier of the huawei_en_destination.
    name string
    The Destintion name.
    instance_guid str
    Unique identifier for IBM Cloud Event Notifications instance.
    type str
    push_huawei.
    collect_failed_events bool
    Toggle switch to enable collect failed event in Cloud Object Storage bucket.
    config EnDestinationHuaweiConfigArgs

    Payload describing a destination configuration.

    Nested scheme for config:

    description str
    The Destination description.
    en_destination_huawei_id str
    (String) The unique identifier of the huawei_en_destination.
    name str
    The Destintion name.
    instanceGuid String
    Unique identifier for IBM Cloud Event Notifications instance.
    type String
    push_huawei.
    collectFailedEvents Boolean
    Toggle switch to enable collect failed event in Cloud Object Storage bucket.
    config Property Map

    Payload describing a destination configuration.

    Nested scheme for config:

    description String
    The Destination description.
    enDestinationHuaweiId String
    (String) The unique identifier of the huawei_en_destination.
    name String
    The Destintion name.

    Outputs

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

    DestinationId string
    (String) The unique identifier of the created destination.
    Id string
    The provider-assigned unique ID for this managed resource.
    SubscriptionCount double
    (Integer) Number of subscriptions.

    • Constraints: The minimum value is 0.
    SubscriptionNames List<string>
    (List) List of subscriptions.
    UpdatedAt string
    (String) Last updated time.
    DestinationId string
    (String) The unique identifier of the created destination.
    Id string
    The provider-assigned unique ID for this managed resource.
    SubscriptionCount float64
    (Integer) Number of subscriptions.

    • Constraints: The minimum value is 0.
    SubscriptionNames []string
    (List) List of subscriptions.
    UpdatedAt string
    (String) Last updated time.
    destinationId String
    (String) The unique identifier of the created destination.
    id String
    The provider-assigned unique ID for this managed resource.
    subscriptionCount Double
    (Integer) Number of subscriptions.

    • Constraints: The minimum value is 0.
    subscriptionNames List<String>
    (List) List of subscriptions.
    updatedAt String
    (String) Last updated time.
    destinationId string
    (String) The unique identifier of the created destination.
    id string
    The provider-assigned unique ID for this managed resource.
    subscriptionCount number
    (Integer) Number of subscriptions.

    • Constraints: The minimum value is 0.
    subscriptionNames string[]
    (List) List of subscriptions.
    updatedAt string
    (String) Last updated time.
    destination_id str
    (String) The unique identifier of the created destination.
    id str
    The provider-assigned unique ID for this managed resource.
    subscription_count float
    (Integer) Number of subscriptions.

    • Constraints: The minimum value is 0.
    subscription_names Sequence[str]
    (List) List of subscriptions.
    updated_at str
    (String) Last updated time.
    destinationId String
    (String) The unique identifier of the created destination.
    id String
    The provider-assigned unique ID for this managed resource.
    subscriptionCount Number
    (Integer) Number of subscriptions.

    • Constraints: The minimum value is 0.
    subscriptionNames List<String>
    (List) List of subscriptions.
    updatedAt String
    (String) Last updated time.

    Look up Existing EnDestinationHuawei Resource

    Get an existing EnDestinationHuawei 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?: EnDestinationHuaweiState, opts?: CustomResourceOptions): EnDestinationHuawei
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            collect_failed_events: Optional[bool] = None,
            config: Optional[EnDestinationHuaweiConfigArgs] = None,
            description: Optional[str] = None,
            destination_id: Optional[str] = None,
            en_destination_huawei_id: Optional[str] = None,
            instance_guid: Optional[str] = None,
            name: Optional[str] = None,
            subscription_count: Optional[float] = None,
            subscription_names: Optional[Sequence[str]] = None,
            type: Optional[str] = None,
            updated_at: Optional[str] = None) -> EnDestinationHuawei
    func GetEnDestinationHuawei(ctx *Context, name string, id IDInput, state *EnDestinationHuaweiState, opts ...ResourceOption) (*EnDestinationHuawei, error)
    public static EnDestinationHuawei Get(string name, Input<string> id, EnDestinationHuaweiState? state, CustomResourceOptions? opts = null)
    public static EnDestinationHuawei get(String name, Output<String> id, EnDestinationHuaweiState state, CustomResourceOptions options)
    resources:  _:    type: ibm:EnDestinationHuawei    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:
    CollectFailedEvents bool
    Toggle switch to enable collect failed event in Cloud Object Storage bucket.
    Config EnDestinationHuaweiConfig

    Payload describing a destination configuration.

    Nested scheme for config:

    Description string
    The Destination description.
    DestinationId string
    (String) The unique identifier of the created destination.
    EnDestinationHuaweiId string
    (String) The unique identifier of the huawei_en_destination.
    InstanceGuid string
    Unique identifier for IBM Cloud Event Notifications instance.
    Name string
    The Destintion name.
    SubscriptionCount double
    (Integer) Number of subscriptions.

    • Constraints: The minimum value is 0.
    SubscriptionNames List<string>
    (List) List of subscriptions.
    Type string
    push_huawei.
    UpdatedAt string
    (String) Last updated time.
    CollectFailedEvents bool
    Toggle switch to enable collect failed event in Cloud Object Storage bucket.
    Config EnDestinationHuaweiConfigArgs

    Payload describing a destination configuration.

    Nested scheme for config:

    Description string
    The Destination description.
    DestinationId string
    (String) The unique identifier of the created destination.
    EnDestinationHuaweiId string
    (String) The unique identifier of the huawei_en_destination.
    InstanceGuid string
    Unique identifier for IBM Cloud Event Notifications instance.
    Name string
    The Destintion name.
    SubscriptionCount float64
    (Integer) Number of subscriptions.

    • Constraints: The minimum value is 0.
    SubscriptionNames []string
    (List) List of subscriptions.
    Type string
    push_huawei.
    UpdatedAt string
    (String) Last updated time.
    collectFailedEvents Boolean
    Toggle switch to enable collect failed event in Cloud Object Storage bucket.
    config EnDestinationHuaweiConfig

    Payload describing a destination configuration.

    Nested scheme for config:

    description String
    The Destination description.
    destinationId String
    (String) The unique identifier of the created destination.
    enDestinationHuaweiId String
    (String) The unique identifier of the huawei_en_destination.
    instanceGuid String
    Unique identifier for IBM Cloud Event Notifications instance.
    name String
    The Destintion name.
    subscriptionCount Double
    (Integer) Number of subscriptions.

    • Constraints: The minimum value is 0.
    subscriptionNames List<String>
    (List) List of subscriptions.
    type String
    push_huawei.
    updatedAt String
    (String) Last updated time.
    collectFailedEvents boolean
    Toggle switch to enable collect failed event in Cloud Object Storage bucket.
    config EnDestinationHuaweiConfig

    Payload describing a destination configuration.

    Nested scheme for config:

    description string
    The Destination description.
    destinationId string
    (String) The unique identifier of the created destination.
    enDestinationHuaweiId string
    (String) The unique identifier of the huawei_en_destination.
    instanceGuid string
    Unique identifier for IBM Cloud Event Notifications instance.
    name string
    The Destintion name.
    subscriptionCount number
    (Integer) Number of subscriptions.

    • Constraints: The minimum value is 0.
    subscriptionNames string[]
    (List) List of subscriptions.
    type string
    push_huawei.
    updatedAt string
    (String) Last updated time.
    collect_failed_events bool
    Toggle switch to enable collect failed event in Cloud Object Storage bucket.
    config EnDestinationHuaweiConfigArgs

    Payload describing a destination configuration.

    Nested scheme for config:

    description str
    The Destination description.
    destination_id str
    (String) The unique identifier of the created destination.
    en_destination_huawei_id str
    (String) The unique identifier of the huawei_en_destination.
    instance_guid str
    Unique identifier for IBM Cloud Event Notifications instance.
    name str
    The Destintion name.
    subscription_count float
    (Integer) Number of subscriptions.

    • Constraints: The minimum value is 0.
    subscription_names Sequence[str]
    (List) List of subscriptions.
    type str
    push_huawei.
    updated_at str
    (String) Last updated time.
    collectFailedEvents Boolean
    Toggle switch to enable collect failed event in Cloud Object Storage bucket.
    config Property Map

    Payload describing a destination configuration.

    Nested scheme for config:

    description String
    The Destination description.
    destinationId String
    (String) The unique identifier of the created destination.
    enDestinationHuaweiId String
    (String) The unique identifier of the huawei_en_destination.
    instanceGuid String
    Unique identifier for IBM Cloud Event Notifications instance.
    name String
    The Destintion name.
    subscriptionCount Number
    (Integer) Number of subscriptions.

    • Constraints: The minimum value is 0.
    subscriptionNames List<String>
    (List) List of subscriptions.
    type String
    push_huawei.
    updatedAt String
    (String) Last updated time.

    Supporting Types

    EnDestinationHuaweiConfig, EnDestinationHuaweiConfigArgs

    Params EnDestinationHuaweiConfigParams
    Nested scheme for params:
    Params EnDestinationHuaweiConfigParams
    Nested scheme for params:
    params EnDestinationHuaweiConfigParams
    Nested scheme for params:
    params EnDestinationHuaweiConfigParams
    Nested scheme for params:
    params EnDestinationHuaweiConfigParams
    Nested scheme for params:
    params Property Map
    Nested scheme for params:

    EnDestinationHuaweiConfigParams, EnDestinationHuaweiConfigParamsArgs

    ClientId string
    ClientID for the Huawei account oauth.
    ClientSecret string
    ClientSecret for the Huawei account oauth.
    PreProd bool
    The flag to enable destination as pre-prod or prod
    ClientId string
    ClientID for the Huawei account oauth.
    ClientSecret string
    ClientSecret for the Huawei account oauth.
    PreProd bool
    The flag to enable destination as pre-prod or prod
    clientId String
    ClientID for the Huawei account oauth.
    clientSecret String
    ClientSecret for the Huawei account oauth.
    preProd Boolean
    The flag to enable destination as pre-prod or prod
    clientId string
    ClientID for the Huawei account oauth.
    clientSecret string
    ClientSecret for the Huawei account oauth.
    preProd boolean
    The flag to enable destination as pre-prod or prod
    client_id str
    ClientID for the Huawei account oauth.
    client_secret str
    ClientSecret for the Huawei account oauth.
    pre_prod bool
    The flag to enable destination as pre-prod or prod
    clientId String
    ClientID for the Huawei account oauth.
    clientSecret String
    ClientSecret for the Huawei account oauth.
    preProd Boolean
    The flag to enable destination as pre-prod or prod

    Import

    You can import the ibm_en_destination_huawei resource by using id.

    The id property can be formed from instance_guid, and huawei_id in the following format:

    <instance_guid>/<destination_id>

    • instance_guid: A string. Unique identifier for IBM Cloud Event Notifications instance.

    • destination_id: A string. Unique identifier for Destination.

    Example

    $ pulumi import ibm:index/enDestinationHuawei:EnDestinationHuawei huawei_en_destination <instance_guid>/<destination_id>
    

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

    Package Details

    Repository
    ibm ibm-cloud/terraform-provider-ibm
    License
    Notes
    This Pulumi package is based on the ibm Terraform Provider.
    ibm logo
    ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud