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

ibm.CmAccount

Explore with Pulumi AI

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

    Create, update, and delete cm_accounts with this resource.

    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.ibm.CmAccount;
    import com.pulumi.ibm.CmAccountArgs;
    import com.pulumi.ibm.inputs.CmAccountAccountFiltersArgs;
    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 cmAccountInstance = new CmAccount("cmAccountInstance", CmAccountArgs.builder()
                .accountFilters(CmAccountAccountFiltersArgs.builder()
                    .categoryFilters(                
                        CmAccountAccountFiltersCategoryFilterArgs.builder()
                            .categoryName("provider")
                            .filter(CmAccountAccountFiltersCategoryFilterFilterArgs.builder()
                                .filterTerms("ibm_third_party")
                                .build())
                            .include(false)
                            .build(),
                        CmAccountAccountFiltersCategoryFilterArgs.builder()
                            .categoryName("category")
                            .filter(CmAccountAccountFiltersCategoryFilterFilterArgs.builder()
                                .filterTerms(                            
                                    "watson",
                                    "ai",
                                    "blockchain")
                                .build())
                            .include(false)
                            .build())
                    .idFilters(CmAccountAccountFiltersIdFilterArgs.builder()
                        .exclude()
                        .include(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                        .build())
                    .includeAll(true)
                    .build())
                .regionFilter("geo:eu")
                .build());
    
        }
    }
    
    resources:
      cmAccountInstance:
        type: ibm:CmAccount
        properties:
          accountFilters:
            categoryFilters:
              - categoryName: provider
                filter:
                  filterTerms:
                    - ibm_third_party
                include: false
              - categoryName: category
                filter:
                  filterTerms:
                    - watson
                    - ai
                    - blockchain
                include: false
            idFilters:
              - exclude:
                  - {}
                include:
                  - filterTerms:
                      - 9dcb8ea2-30b4-4adf-8821-0d35f0a9d74f-global
            includeAll: true
          regionFilter: geo:eu
    

    Create CmAccount Resource

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

    Constructor syntax

    new CmAccount(name: string, args?: CmAccountArgs, opts?: CustomResourceOptions);
    @overload
    def CmAccount(resource_name: str,
                  args: Optional[CmAccountArgs] = None,
                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def CmAccount(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  account_filters: Optional[CmAccountAccountFiltersArgs] = None,
                  cm_account_id: Optional[str] = None,
                  hide_ibm_cloud_catalog: Optional[bool] = None,
                  region_filter: Optional[str] = None)
    func NewCmAccount(ctx *Context, name string, args *CmAccountArgs, opts ...ResourceOption) (*CmAccount, error)
    public CmAccount(string name, CmAccountArgs? args = null, CustomResourceOptions? opts = null)
    public CmAccount(String name, CmAccountArgs args)
    public CmAccount(String name, CmAccountArgs args, CustomResourceOptions options)
    
    type: ibm:CmAccount
    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 CmAccountArgs
    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 CmAccountArgs
    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 CmAccountArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CmAccountArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CmAccountArgs
    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 cmAccountResource = new Ibm.CmAccount("cmAccountResource", new()
    {
        AccountFilters = new Ibm.Inputs.CmAccountAccountFiltersArgs
        {
            CategoryFilters = new[]
            {
                new Ibm.Inputs.CmAccountAccountFiltersCategoryFilterArgs
                {
                    CategoryName = "string",
                    Filter = new Ibm.Inputs.CmAccountAccountFiltersCategoryFilterFilterArgs
                    {
                        FilterTerms = new[]
                        {
                            "string",
                        },
                    },
                    Include = false,
                },
            },
            IdFilters = new[]
            {
                new Ibm.Inputs.CmAccountAccountFiltersIdFilterArgs
                {
                    Excludes = new[]
                    {
                        new Ibm.Inputs.CmAccountAccountFiltersIdFilterExcludeArgs
                        {
                            FilterTerms = new[]
                            {
                                "string",
                            },
                        },
                    },
                    Includes = new[]
                    {
                        new Ibm.Inputs.CmAccountAccountFiltersIdFilterIncludeArgs
                        {
                            FilterTerms = new[]
                            {
                                "string",
                            },
                        },
                    },
                },
            },
            IncludeAll = false,
        },
        CmAccountId = "string",
        HideIbmCloudCatalog = false,
        RegionFilter = "string",
    });
    
    example, err := ibm.NewCmAccount(ctx, "cmAccountResource", &ibm.CmAccountArgs{
    	AccountFilters: &ibm.CmAccountAccountFiltersArgs{
    		CategoryFilters: ibm.CmAccountAccountFiltersCategoryFilterArray{
    			&ibm.CmAccountAccountFiltersCategoryFilterArgs{
    				CategoryName: pulumi.String("string"),
    				Filter: &ibm.CmAccountAccountFiltersCategoryFilterFilterArgs{
    					FilterTerms: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    				},
    				Include: pulumi.Bool(false),
    			},
    		},
    		IdFilters: ibm.CmAccountAccountFiltersIdFilterArray{
    			&ibm.CmAccountAccountFiltersIdFilterArgs{
    				Excludes: ibm.CmAccountAccountFiltersIdFilterExcludeArray{
    					&ibm.CmAccountAccountFiltersIdFilterExcludeArgs{
    						FilterTerms: pulumi.StringArray{
    							pulumi.String("string"),
    						},
    					},
    				},
    				Includes: ibm.CmAccountAccountFiltersIdFilterIncludeArray{
    					&ibm.CmAccountAccountFiltersIdFilterIncludeArgs{
    						FilterTerms: pulumi.StringArray{
    							pulumi.String("string"),
    						},
    					},
    				},
    			},
    		},
    		IncludeAll: pulumi.Bool(false),
    	},
    	CmAccountId:         pulumi.String("string"),
    	HideIbmCloudCatalog: pulumi.Bool(false),
    	RegionFilter:        pulumi.String("string"),
    })
    
    var cmAccountResource = new CmAccount("cmAccountResource", CmAccountArgs.builder()
        .accountFilters(CmAccountAccountFiltersArgs.builder()
            .categoryFilters(CmAccountAccountFiltersCategoryFilterArgs.builder()
                .categoryName("string")
                .filter(CmAccountAccountFiltersCategoryFilterFilterArgs.builder()
                    .filterTerms("string")
                    .build())
                .include(false)
                .build())
            .idFilters(CmAccountAccountFiltersIdFilterArgs.builder()
                .excludes(CmAccountAccountFiltersIdFilterExcludeArgs.builder()
                    .filterTerms("string")
                    .build())
                .includes(CmAccountAccountFiltersIdFilterIncludeArgs.builder()
                    .filterTerms("string")
                    .build())
                .build())
            .includeAll(false)
            .build())
        .cmAccountId("string")
        .hideIbmCloudCatalog(false)
        .regionFilter("string")
        .build());
    
    cm_account_resource = ibm.CmAccount("cmAccountResource",
        account_filters={
            "category_filters": [{
                "category_name": "string",
                "filter": {
                    "filter_terms": ["string"],
                },
                "include": False,
            }],
            "id_filters": [{
                "excludes": [{
                    "filter_terms": ["string"],
                }],
                "includes": [{
                    "filter_terms": ["string"],
                }],
            }],
            "include_all": False,
        },
        cm_account_id="string",
        hide_ibm_cloud_catalog=False,
        region_filter="string")
    
    const cmAccountResource = new ibm.CmAccount("cmAccountResource", {
        accountFilters: {
            categoryFilters: [{
                categoryName: "string",
                filter: {
                    filterTerms: ["string"],
                },
                include: false,
            }],
            idFilters: [{
                excludes: [{
                    filterTerms: ["string"],
                }],
                includes: [{
                    filterTerms: ["string"],
                }],
            }],
            includeAll: false,
        },
        cmAccountId: "string",
        hideIbmCloudCatalog: false,
        regionFilter: "string",
    });
    
    type: ibm:CmAccount
    properties:
        accountFilters:
            categoryFilters:
                - categoryName: string
                  filter:
                    filterTerms:
                        - string
                  include: false
            idFilters:
                - excludes:
                    - filterTerms:
                        - string
                  includes:
                    - filterTerms:
                        - string
            includeAll: false
        cmAccountId: string
        hideIbmCloudCatalog: false
        regionFilter: string
    

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

    AccountFilters CmAccountAccountFilters
    (List, Optional) Filters for account and catalog filters. Nested schema for account_filters:
    CmAccountId string
    The unique identifier of the cm_account.
    HideIbmCloudCatalog bool
    (Boolean, Optional) Hide the public catalog in this account.
    RegionFilter string
    (String, Optional) Region filter string.
    AccountFilters CmAccountAccountFiltersArgs
    (List, Optional) Filters for account and catalog filters. Nested schema for account_filters:
    CmAccountId string
    The unique identifier of the cm_account.
    HideIbmCloudCatalog bool
    (Boolean, Optional) Hide the public catalog in this account.
    RegionFilter string
    (String, Optional) Region filter string.
    accountFilters CmAccountAccountFilters
    (List, Optional) Filters for account and catalog filters. Nested schema for account_filters:
    cmAccountId String
    The unique identifier of the cm_account.
    hideIbmCloudCatalog Boolean
    (Boolean, Optional) Hide the public catalog in this account.
    regionFilter String
    (String, Optional) Region filter string.
    accountFilters CmAccountAccountFilters
    (List, Optional) Filters for account and catalog filters. Nested schema for account_filters:
    cmAccountId string
    The unique identifier of the cm_account.
    hideIbmCloudCatalog boolean
    (Boolean, Optional) Hide the public catalog in this account.
    regionFilter string
    (String, Optional) Region filter string.
    account_filters CmAccountAccountFiltersArgs
    (List, Optional) Filters for account and catalog filters. Nested schema for account_filters:
    cm_account_id str
    The unique identifier of the cm_account.
    hide_ibm_cloud_catalog bool
    (Boolean, Optional) Hide the public catalog in this account.
    region_filter str
    (String, Optional) Region filter string.
    accountFilters Property Map
    (List, Optional) Filters for account and catalog filters. Nested schema for account_filters:
    cmAccountId String
    The unique identifier of the cm_account.
    hideIbmCloudCatalog Boolean
    (Boolean, Optional) Hide the public catalog in this account.
    regionFilter String
    (String, Optional) Region filter string.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Rev string
    (String) Cloudant revision.
    Id string
    The provider-assigned unique ID for this managed resource.
    Rev string
    (String) Cloudant revision.
    id String
    The provider-assigned unique ID for this managed resource.
    rev String
    (String) Cloudant revision.
    id string
    The provider-assigned unique ID for this managed resource.
    rev string
    (String) Cloudant revision.
    id str
    The provider-assigned unique ID for this managed resource.
    rev str
    (String) Cloudant revision.
    id String
    The provider-assigned unique ID for this managed resource.
    rev String
    (String) Cloudant revision.

    Look up Existing CmAccount Resource

    Get an existing CmAccount 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?: CmAccountState, opts?: CustomResourceOptions): CmAccount
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            account_filters: Optional[CmAccountAccountFiltersArgs] = None,
            cm_account_id: Optional[str] = None,
            hide_ibm_cloud_catalog: Optional[bool] = None,
            region_filter: Optional[str] = None,
            rev: Optional[str] = None) -> CmAccount
    func GetCmAccount(ctx *Context, name string, id IDInput, state *CmAccountState, opts ...ResourceOption) (*CmAccount, error)
    public static CmAccount Get(string name, Input<string> id, CmAccountState? state, CustomResourceOptions? opts = null)
    public static CmAccount get(String name, Output<String> id, CmAccountState state, CustomResourceOptions options)
    resources:  _:    type: ibm:CmAccount    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:
    AccountFilters CmAccountAccountFilters
    (List, Optional) Filters for account and catalog filters. Nested schema for account_filters:
    CmAccountId string
    The unique identifier of the cm_account.
    HideIbmCloudCatalog bool
    (Boolean, Optional) Hide the public catalog in this account.
    RegionFilter string
    (String, Optional) Region filter string.
    Rev string
    (String) Cloudant revision.
    AccountFilters CmAccountAccountFiltersArgs
    (List, Optional) Filters for account and catalog filters. Nested schema for account_filters:
    CmAccountId string
    The unique identifier of the cm_account.
    HideIbmCloudCatalog bool
    (Boolean, Optional) Hide the public catalog in this account.
    RegionFilter string
    (String, Optional) Region filter string.
    Rev string
    (String) Cloudant revision.
    accountFilters CmAccountAccountFilters
    (List, Optional) Filters for account and catalog filters. Nested schema for account_filters:
    cmAccountId String
    The unique identifier of the cm_account.
    hideIbmCloudCatalog Boolean
    (Boolean, Optional) Hide the public catalog in this account.
    regionFilter String
    (String, Optional) Region filter string.
    rev String
    (String) Cloudant revision.
    accountFilters CmAccountAccountFilters
    (List, Optional) Filters for account and catalog filters. Nested schema for account_filters:
    cmAccountId string
    The unique identifier of the cm_account.
    hideIbmCloudCatalog boolean
    (Boolean, Optional) Hide the public catalog in this account.
    regionFilter string
    (String, Optional) Region filter string.
    rev string
    (String) Cloudant revision.
    account_filters CmAccountAccountFiltersArgs
    (List, Optional) Filters for account and catalog filters. Nested schema for account_filters:
    cm_account_id str
    The unique identifier of the cm_account.
    hide_ibm_cloud_catalog bool
    (Boolean, Optional) Hide the public catalog in this account.
    region_filter str
    (String, Optional) Region filter string.
    rev str
    (String) Cloudant revision.
    accountFilters Property Map
    (List, Optional) Filters for account and catalog filters. Nested schema for account_filters:
    cmAccountId String
    The unique identifier of the cm_account.
    hideIbmCloudCatalog Boolean
    (Boolean, Optional) Hide the public catalog in this account.
    regionFilter String
    (String, Optional) Region filter string.
    rev String
    (String) Cloudant revision.

    Supporting Types

    CmAccountAccountFilters, CmAccountAccountFiltersArgs

    CategoryFilters List<CmAccountAccountFiltersCategoryFilter>
    (List, Optional) Filter against offering properties. Nested schema for category_filters:
    IdFilters List<CmAccountAccountFiltersIdFilter>
    (List, Optional) Filter on offering ID's. There is an include filter and an exclule filter. Both can be set. Nested schema for id_filters:
    IncludeAll bool
    (Boolean, Optional) > true - Include all of the public catalog when filtering. Further settings will specifically exclude some offerings. false - Exclude all of the public catalog when filtering. Further settings will specifically include some offerings.
    CategoryFilters []CmAccountAccountFiltersCategoryFilter
    (List, Optional) Filter against offering properties. Nested schema for category_filters:
    IdFilters []CmAccountAccountFiltersIdFilter
    (List, Optional) Filter on offering ID's. There is an include filter and an exclule filter. Both can be set. Nested schema for id_filters:
    IncludeAll bool
    (Boolean, Optional) > true - Include all of the public catalog when filtering. Further settings will specifically exclude some offerings. false - Exclude all of the public catalog when filtering. Further settings will specifically include some offerings.
    categoryFilters List<CmAccountAccountFiltersCategoryFilter>
    (List, Optional) Filter against offering properties. Nested schema for category_filters:
    idFilters List<CmAccountAccountFiltersIdFilter>
    (List, Optional) Filter on offering ID's. There is an include filter and an exclule filter. Both can be set. Nested schema for id_filters:
    includeAll Boolean
    (Boolean, Optional) > true - Include all of the public catalog when filtering. Further settings will specifically exclude some offerings. false - Exclude all of the public catalog when filtering. Further settings will specifically include some offerings.
    categoryFilters CmAccountAccountFiltersCategoryFilter[]
    (List, Optional) Filter against offering properties. Nested schema for category_filters:
    idFilters CmAccountAccountFiltersIdFilter[]
    (List, Optional) Filter on offering ID's. There is an include filter and an exclule filter. Both can be set. Nested schema for id_filters:
    includeAll boolean
    (Boolean, Optional) > true - Include all of the public catalog when filtering. Further settings will specifically exclude some offerings. false - Exclude all of the public catalog when filtering. Further settings will specifically include some offerings.
    category_filters Sequence[CmAccountAccountFiltersCategoryFilter]
    (List, Optional) Filter against offering properties. Nested schema for category_filters:
    id_filters Sequence[CmAccountAccountFiltersIdFilter]
    (List, Optional) Filter on offering ID's. There is an include filter and an exclule filter. Both can be set. Nested schema for id_filters:
    include_all bool
    (Boolean, Optional) > true - Include all of the public catalog when filtering. Further settings will specifically exclude some offerings. false - Exclude all of the public catalog when filtering. Further settings will specifically include some offerings.
    categoryFilters List<Property Map>
    (List, Optional) Filter against offering properties. Nested schema for category_filters:
    idFilters List<Property Map>
    (List, Optional) Filter on offering ID's. There is an include filter and an exclule filter. Both can be set. Nested schema for id_filters:
    includeAll Boolean
    (Boolean, Optional) > true - Include all of the public catalog when filtering. Further settings will specifically exclude some offerings. false - Exclude all of the public catalog when filtering. Further settings will specifically include some offerings.

    CmAccountAccountFiltersCategoryFilter, CmAccountAccountFiltersCategoryFilterArgs

    CategoryName string
    (String, Required) Name of the category.
    Filter CmAccountAccountFiltersCategoryFilterFilter
    (List, Optional) Filter terms related to the category. Nested schema for filter:
    Include bool
    (List, Optional) Offering filter terms. Nested schema for include:
    CategoryName string
    (String, Required) Name of the category.
    Filter CmAccountAccountFiltersCategoryFilterFilter
    (List, Optional) Filter terms related to the category. Nested schema for filter:
    Include bool
    (List, Optional) Offering filter terms. Nested schema for include:
    categoryName String
    (String, Required) Name of the category.
    filter CmAccountAccountFiltersCategoryFilterFilter
    (List, Optional) Filter terms related to the category. Nested schema for filter:
    include Boolean
    (List, Optional) Offering filter terms. Nested schema for include:
    categoryName string
    (String, Required) Name of the category.
    filter CmAccountAccountFiltersCategoryFilterFilter
    (List, Optional) Filter terms related to the category. Nested schema for filter:
    include boolean
    (List, Optional) Offering filter terms. Nested schema for include:
    category_name str
    (String, Required) Name of the category.
    filter CmAccountAccountFiltersCategoryFilterFilter
    (List, Optional) Filter terms related to the category. Nested schema for filter:
    include bool
    (List, Optional) Offering filter terms. Nested schema for include:
    categoryName String
    (String, Required) Name of the category.
    filter Property Map
    (List, Optional) Filter terms related to the category. Nested schema for filter:
    include Boolean
    (List, Optional) Offering filter terms. Nested schema for include:

    CmAccountAccountFiltersCategoryFilterFilter, CmAccountAccountFiltersCategoryFilterFilterArgs

    FilterTerms List<string>
    (List, Optional) List of values to match against. If include is true, then if the offering has one of the values then the offering is included. If include is false, then if the offering has one of the values then the offering is excluded.
    FilterTerms []string
    (List, Optional) List of values to match against. If include is true, then if the offering has one of the values then the offering is included. If include is false, then if the offering has one of the values then the offering is excluded.
    filterTerms List<String>
    (List, Optional) List of values to match against. If include is true, then if the offering has one of the values then the offering is included. If include is false, then if the offering has one of the values then the offering is excluded.
    filterTerms string[]
    (List, Optional) List of values to match against. If include is true, then if the offering has one of the values then the offering is included. If include is false, then if the offering has one of the values then the offering is excluded.
    filter_terms Sequence[str]
    (List, Optional) List of values to match against. If include is true, then if the offering has one of the values then the offering is included. If include is false, then if the offering has one of the values then the offering is excluded.
    filterTerms List<String>
    (List, Optional) List of values to match against. If include is true, then if the offering has one of the values then the offering is included. If include is false, then if the offering has one of the values then the offering is excluded.

    CmAccountAccountFiltersIdFilter, CmAccountAccountFiltersIdFilterArgs

    Excludes List<CmAccountAccountFiltersIdFilterExclude>
    (List, Optional) Offering filter terms. Nested schema for exclude:
    Includes List<CmAccountAccountFiltersIdFilterInclude>
    (List, Optional) Offering filter terms. Nested schema for include:
    Excludes []CmAccountAccountFiltersIdFilterExclude
    (List, Optional) Offering filter terms. Nested schema for exclude:
    Includes []CmAccountAccountFiltersIdFilterInclude
    (List, Optional) Offering filter terms. Nested schema for include:
    excludes List<CmAccountAccountFiltersIdFilterExclude>
    (List, Optional) Offering filter terms. Nested schema for exclude:
    includes List<CmAccountAccountFiltersIdFilterInclude>
    (List, Optional) Offering filter terms. Nested schema for include:
    excludes CmAccountAccountFiltersIdFilterExclude[]
    (List, Optional) Offering filter terms. Nested schema for exclude:
    includes CmAccountAccountFiltersIdFilterInclude[]
    (List, Optional) Offering filter terms. Nested schema for include:
    excludes Sequence[CmAccountAccountFiltersIdFilterExclude]
    (List, Optional) Offering filter terms. Nested schema for exclude:
    includes Sequence[CmAccountAccountFiltersIdFilterInclude]
    (List, Optional) Offering filter terms. Nested schema for include:
    excludes List<Property Map>
    (List, Optional) Offering filter terms. Nested schema for exclude:
    includes List<Property Map>
    (List, Optional) Offering filter terms. Nested schema for include:

    CmAccountAccountFiltersIdFilterExclude, CmAccountAccountFiltersIdFilterExcludeArgs

    FilterTerms List<string>
    (List, Optional) List of values to match against. If include is true, then if the offering has one of the values then the offering is included. If include is false, then if the offering has one of the values then the offering is excluded.
    FilterTerms []string
    (List, Optional) List of values to match against. If include is true, then if the offering has one of the values then the offering is included. If include is false, then if the offering has one of the values then the offering is excluded.
    filterTerms List<String>
    (List, Optional) List of values to match against. If include is true, then if the offering has one of the values then the offering is included. If include is false, then if the offering has one of the values then the offering is excluded.
    filterTerms string[]
    (List, Optional) List of values to match against. If include is true, then if the offering has one of the values then the offering is included. If include is false, then if the offering has one of the values then the offering is excluded.
    filter_terms Sequence[str]
    (List, Optional) List of values to match against. If include is true, then if the offering has one of the values then the offering is included. If include is false, then if the offering has one of the values then the offering is excluded.
    filterTerms List<String>
    (List, Optional) List of values to match against. If include is true, then if the offering has one of the values then the offering is included. If include is false, then if the offering has one of the values then the offering is excluded.

    CmAccountAccountFiltersIdFilterInclude, CmAccountAccountFiltersIdFilterIncludeArgs

    FilterTerms List<string>
    (List, Optional) List of values to match against. If include is true, then if the offering has one of the values then the offering is included. If include is false, then if the offering has one of the values then the offering is excluded.
    FilterTerms []string
    (List, Optional) List of values to match against. If include is true, then if the offering has one of the values then the offering is included. If include is false, then if the offering has one of the values then the offering is excluded.
    filterTerms List<String>
    (List, Optional) List of values to match against. If include is true, then if the offering has one of the values then the offering is included. If include is false, then if the offering has one of the values then the offering is excluded.
    filterTerms string[]
    (List, Optional) List of values to match against. If include is true, then if the offering has one of the values then the offering is included. If include is false, then if the offering has one of the values then the offering is excluded.
    filter_terms Sequence[str]
    (List, Optional) List of values to match against. If include is true, then if the offering has one of the values then the offering is included. If include is false, then if the offering has one of the values then the offering is excluded.
    filterTerms List<String>
    (List, Optional) List of values to match against. If include is true, then if the offering has one of the values then the offering is included. If include is false, then if the offering has one of the values then the offering is excluded.

    Import

    You can import the ibm_cm_account resource by using id. Account identification.

    Syntax

    
    ```sh
    $ pulumi import ibm:index/cmAccount:CmAccount cm_account <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