ibm.CmAccount
Explore with Pulumi AI
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:
- Account
Filters CmAccount Account Filters - (List, Optional) Filters for account and catalog filters. Nested schema for account_filters:
- Cm
Account stringId - The unique identifier of the cm_account.
- Hide
Ibm boolCloud Catalog - (Boolean, Optional) Hide the public catalog in this account.
- Region
Filter string - (String, Optional) Region filter string.
- Account
Filters CmAccount Account Filters Args - (List, Optional) Filters for account and catalog filters. Nested schema for account_filters:
- Cm
Account stringId - The unique identifier of the cm_account.
- Hide
Ibm boolCloud Catalog - (Boolean, Optional) Hide the public catalog in this account.
- Region
Filter string - (String, Optional) Region filter string.
- account
Filters CmAccount Account Filters - (List, Optional) Filters for account and catalog filters. Nested schema for account_filters:
- cm
Account StringId - The unique identifier of the cm_account.
- hide
Ibm BooleanCloud Catalog - (Boolean, Optional) Hide the public catalog in this account.
- region
Filter String - (String, Optional) Region filter string.
- account
Filters CmAccount Account Filters - (List, Optional) Filters for account and catalog filters. Nested schema for account_filters:
- cm
Account stringId - The unique identifier of the cm_account.
- hide
Ibm booleanCloud Catalog - (Boolean, Optional) Hide the public catalog in this account.
- region
Filter string - (String, Optional) Region filter string.
- account_
filters CmAccount Account Filters Args - (List, Optional) Filters for account and catalog filters. Nested schema for account_filters:
- cm_
account_ strid - The unique identifier of the cm_account.
- hide_
ibm_ boolcloud_ catalog - (Boolean, Optional) Hide the public catalog in this account.
- region_
filter str - (String, Optional) Region filter string.
- account
Filters Property Map - (List, Optional) Filters for account and catalog filters. Nested schema for account_filters:
- cm
Account StringId - The unique identifier of the cm_account.
- hide
Ibm BooleanCloud Catalog - (Boolean, Optional) Hide the public catalog in this account.
- region
Filter 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:
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.
- Account
Filters CmAccount Account Filters - (List, Optional) Filters for account and catalog filters. Nested schema for account_filters:
- Cm
Account stringId - The unique identifier of the cm_account.
- Hide
Ibm boolCloud Catalog - (Boolean, Optional) Hide the public catalog in this account.
- Region
Filter string - (String, Optional) Region filter string.
- Rev string
- (String) Cloudant revision.
- Account
Filters CmAccount Account Filters Args - (List, Optional) Filters for account and catalog filters. Nested schema for account_filters:
- Cm
Account stringId - The unique identifier of the cm_account.
- Hide
Ibm boolCloud Catalog - (Boolean, Optional) Hide the public catalog in this account.
- Region
Filter string - (String, Optional) Region filter string.
- Rev string
- (String) Cloudant revision.
- account
Filters CmAccount Account Filters - (List, Optional) Filters for account and catalog filters. Nested schema for account_filters:
- cm
Account StringId - The unique identifier of the cm_account.
- hide
Ibm BooleanCloud Catalog - (Boolean, Optional) Hide the public catalog in this account.
- region
Filter String - (String, Optional) Region filter string.
- rev String
- (String) Cloudant revision.
- account
Filters CmAccount Account Filters - (List, Optional) Filters for account and catalog filters. Nested schema for account_filters:
- cm
Account stringId - The unique identifier of the cm_account.
- hide
Ibm booleanCloud Catalog - (Boolean, Optional) Hide the public catalog in this account.
- region
Filter string - (String, Optional) Region filter string.
- rev string
- (String) Cloudant revision.
- account_
filters CmAccount Account Filters Args - (List, Optional) Filters for account and catalog filters. Nested schema for account_filters:
- cm_
account_ strid - The unique identifier of the cm_account.
- hide_
ibm_ boolcloud_ catalog - (Boolean, Optional) Hide the public catalog in this account.
- region_
filter str - (String, Optional) Region filter string.
- rev str
- (String) Cloudant revision.
- account
Filters Property Map - (List, Optional) Filters for account and catalog filters. Nested schema for account_filters:
- cm
Account StringId - The unique identifier of the cm_account.
- hide
Ibm BooleanCloud Catalog - (Boolean, Optional) Hide the public catalog in this account.
- region
Filter String - (String, Optional) Region filter string.
- rev String
- (String) Cloudant revision.
Supporting Types
CmAccountAccountFilters, CmAccountAccountFiltersArgs
- Category
Filters List<CmAccount Account Filters Category Filter> - (List, Optional) Filter against offering properties. Nested schema for category_filters:
- Id
Filters List<CmAccount Account Filters Id Filter> - (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.
- Category
Filters []CmAccount Account Filters Category Filter - (List, Optional) Filter against offering properties. Nested schema for category_filters:
- Id
Filters []CmAccount Account Filters Id Filter - (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.
- category
Filters List<CmAccount Account Filters Category Filter> - (List, Optional) Filter against offering properties. Nested schema for category_filters:
- id
Filters List<CmAccount Account Filters Id Filter> - (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 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 CmAccount Account Filters Category Filter[] - (List, Optional) Filter against offering properties. Nested schema for category_filters:
- id
Filters CmAccount Account Filters Id Filter[] - (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 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[CmAccount Account Filters Category Filter] - (List, Optional) Filter against offering properties. Nested schema for category_filters:
- id_
filters Sequence[CmAccount Account Filters Id Filter] - (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.
- category
Filters List<Property Map> - (List, Optional) Filter against offering properties. Nested schema for category_filters:
- id
Filters 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:
- include
All 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
- Category
Name string - (String, Required) Name of the category.
- Filter
Cm
Account Account Filters Category Filter Filter - (List, Optional) Filter terms related to the category. Nested schema for filter:
- Include bool
- (List, Optional) Offering filter terms. Nested schema for include:
- Category
Name string - (String, Required) Name of the category.
- Filter
Cm
Account Account Filters Category Filter Filter - (List, Optional) Filter terms related to the category. Nested schema for filter:
- Include bool
- (List, Optional) Offering filter terms. Nested schema for include:
- category
Name String - (String, Required) Name of the category.
- filter
Cm
Account Account Filters Category Filter Filter - (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 string - (String, Required) Name of the category.
- filter
Cm
Account Account Filters Category Filter Filter - (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
Cm
Account Account Filters Category Filter Filter - (List, Optional) Filter terms related to the category. Nested schema for filter:
- include bool
- (List, Optional) Offering filter terms. Nested schema for include:
- category
Name 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
- Filter
Terms 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.
- Filter
Terms []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 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.
- filter
Terms 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.
- filter
Terms 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<Cm
Account Account Filters Id Filter Exclude> - (List, Optional) Offering filter terms. Nested schema for exclude:
- Includes
List<Cm
Account Account Filters Id Filter Include> - (List, Optional) Offering filter terms. Nested schema for include:
- Excludes
[]Cm
Account Account Filters Id Filter Exclude - (List, Optional) Offering filter terms. Nested schema for exclude:
- Includes
[]Cm
Account Account Filters Id Filter Include - (List, Optional) Offering filter terms. Nested schema for include:
- excludes
List<Cm
Account Account Filters Id Filter Exclude> - (List, Optional) Offering filter terms. Nested schema for exclude:
- includes
List<Cm
Account Account Filters Id Filter Include> - (List, Optional) Offering filter terms. Nested schema for include:
- excludes
Cm
Account Account Filters Id Filter Exclude[] - (List, Optional) Offering filter terms. Nested schema for exclude:
- includes
Cm
Account Account Filters Id Filter Include[] - (List, Optional) Offering filter terms. Nested schema for include:
- excludes
Sequence[Cm
Account Account Filters Id Filter Exclude] - (List, Optional) Offering filter terms. Nested schema for exclude:
- includes
Sequence[Cm
Account Account Filters Id Filter Include] - (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
- Filter
Terms 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.
- Filter
Terms []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 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.
- filter
Terms 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.
- filter
Terms 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
- Filter
Terms 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.
- Filter
Terms []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 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.
- filter
Terms 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.
- filter
Terms 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.