ibm 1.77.1 published on Monday, Apr 14, 2025 by ibm-cloud
ibm.getAppConfigFeatures
Explore with Pulumi AI
Retrieve information about an existing IBM Cloud App Configuration features flag. You can then reference the fields of the data source in other resources within the same configuration using interpolation syntax. For more information, about App Configuration features flag, see App Configuration concepts.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";
const appConfigFeatures = ibm.getAppConfigFeatures({
environmentId: "environment_id",
expand: "expand",
guid: "guid",
limit: "limit",
offset: "limit",
tags: "tags",
});
import pulumi
import pulumi_ibm as ibm
app_config_features = ibm.get_app_config_features(environment_id="environment_id",
expand="expand",
guid="guid",
limit="limit",
offset="limit",
tags="tags")
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.GetAppConfigFeatures(ctx, &ibm.GetAppConfigFeaturesArgs{
EnvironmentId: "environment_id",
Expand: pulumi.BoolRef("expand"),
Guid: "guid",
Limit: pulumi.Float64Ref("limit"),
Offset: pulumi.Float64Ref("limit"),
Tags: pulumi.StringRef("tags"),
}, nil)
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 appConfigFeatures = Ibm.GetAppConfigFeatures.Invoke(new()
{
EnvironmentId = "environment_id",
Expand = "expand",
Guid = "guid",
Limit = "limit",
Offset = "limit",
Tags = "tags",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ibm.IbmFunctions;
import com.pulumi.ibm.inputs.GetAppConfigFeaturesArgs;
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) {
final var appConfigFeatures = IbmFunctions.getAppConfigFeatures(GetAppConfigFeaturesArgs.builder()
.environmentId("environment_id")
.expand("expand")
.guid("guid")
.limit("limit")
.offset("limit")
.tags("tags")
.build());
}
}
variables:
appConfigFeatures:
fn::invoke:
function: ibm:getAppConfigFeatures
arguments:
environmentId: environment_id
expand: expand
guid: guid
limit: limit
offset: limit
tags: tags
Using getAppConfigFeatures
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getAppConfigFeatures(args: GetAppConfigFeaturesArgs, opts?: InvokeOptions): Promise<GetAppConfigFeaturesResult>
function getAppConfigFeaturesOutput(args: GetAppConfigFeaturesOutputArgs, opts?: InvokeOptions): Output<GetAppConfigFeaturesResult>
def get_app_config_features(collections: Optional[Sequence[str]] = None,
environment_id: Optional[str] = None,
expand: Optional[bool] = None,
guid: Optional[str] = None,
id: Optional[str] = None,
includes: Optional[Sequence[str]] = None,
limit: Optional[float] = None,
offset: Optional[float] = None,
segments: Optional[Sequence[str]] = None,
sort: Optional[str] = None,
tags: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetAppConfigFeaturesResult
def get_app_config_features_output(collections: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
environment_id: Optional[pulumi.Input[str]] = None,
expand: Optional[pulumi.Input[bool]] = None,
guid: Optional[pulumi.Input[str]] = None,
id: Optional[pulumi.Input[str]] = None,
includes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
limit: Optional[pulumi.Input[float]] = None,
offset: Optional[pulumi.Input[float]] = None,
segments: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
sort: Optional[pulumi.Input[str]] = None,
tags: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetAppConfigFeaturesResult]
func GetAppConfigFeatures(ctx *Context, args *GetAppConfigFeaturesArgs, opts ...InvokeOption) (*GetAppConfigFeaturesResult, error)
func GetAppConfigFeaturesOutput(ctx *Context, args *GetAppConfigFeaturesOutputArgs, opts ...InvokeOption) GetAppConfigFeaturesResultOutput
> Note: This function is named GetAppConfigFeatures
in the Go SDK.
public static class GetAppConfigFeatures
{
public static Task<GetAppConfigFeaturesResult> InvokeAsync(GetAppConfigFeaturesArgs args, InvokeOptions? opts = null)
public static Output<GetAppConfigFeaturesResult> Invoke(GetAppConfigFeaturesInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetAppConfigFeaturesResult> getAppConfigFeatures(GetAppConfigFeaturesArgs args, InvokeOptions options)
public static Output<GetAppConfigFeaturesResult> getAppConfigFeatures(GetAppConfigFeaturesArgs args, InvokeOptions options)
fn::invoke:
function: ibm:index/getAppConfigFeatures:getAppConfigFeatures
arguments:
# arguments dictionary
The following arguments are supported:
- Environment
Id This property is required. string - Environment ID.
- Guid
This property is required. string - The GUID of the App Configuration service. Get it from the service instance credentials section of the dashboard.
- Collections List<string>
- Filter features by a list of comma separated collections.
- Expand bool
- If set to
true
, returns expanded view of the resource details. - Id string
- (String) The unique identifier of the Features datasource.
- Includes List<string>
- Include the associated collections or targeting rules details in the response.
- Limit double
- The number of records to retrieve. By default, the list operation return the first 10 records. To retrieve different set of records, use
limit
withoffset
to page through the available records. - Offset double
- The number of records to skip. By specifying
offset
, you retrieve a subset of items that starts with theoffset
value. Useoffset
withlimit
to page through the available records. - Segments List<string>
- Filter features by a list of comma separated segments.
- Sort string
- Sort the feature details based on the specified attribute.
- string
- Flter the resources to be returned based on the associated tags. Returns resources associated with any of the specified tags.
- Environment
Id This property is required. string - Environment ID.
- Guid
This property is required. string - The GUID of the App Configuration service. Get it from the service instance credentials section of the dashboard.
- Collections []string
- Filter features by a list of comma separated collections.
- Expand bool
- If set to
true
, returns expanded view of the resource details. - Id string
- (String) The unique identifier of the Features datasource.
- Includes []string
- Include the associated collections or targeting rules details in the response.
- Limit float64
- The number of records to retrieve. By default, the list operation return the first 10 records. To retrieve different set of records, use
limit
withoffset
to page through the available records. - Offset float64
- The number of records to skip. By specifying
offset
, you retrieve a subset of items that starts with theoffset
value. Useoffset
withlimit
to page through the available records. - Segments []string
- Filter features by a list of comma separated segments.
- Sort string
- Sort the feature details based on the specified attribute.
- string
- Flter the resources to be returned based on the associated tags. Returns resources associated with any of the specified tags.
- environment
Id This property is required. String - Environment ID.
- guid
This property is required. String - The GUID of the App Configuration service. Get it from the service instance credentials section of the dashboard.
- collections List<String>
- Filter features by a list of comma separated collections.
- expand Boolean
- If set to
true
, returns expanded view of the resource details. - id String
- (String) The unique identifier of the Features datasource.
- includes List<String>
- Include the associated collections or targeting rules details in the response.
- limit Double
- The number of records to retrieve. By default, the list operation return the first 10 records. To retrieve different set of records, use
limit
withoffset
to page through the available records. - offset Double
- The number of records to skip. By specifying
offset
, you retrieve a subset of items that starts with theoffset
value. Useoffset
withlimit
to page through the available records. - segments List<String>
- Filter features by a list of comma separated segments.
- sort String
- Sort the feature details based on the specified attribute.
- String
- Flter the resources to be returned based on the associated tags. Returns resources associated with any of the specified tags.
- environment
Id This property is required. string - Environment ID.
- guid
This property is required. string - The GUID of the App Configuration service. Get it from the service instance credentials section of the dashboard.
- collections string[]
- Filter features by a list of comma separated collections.
- expand boolean
- If set to
true
, returns expanded view of the resource details. - id string
- (String) The unique identifier of the Features datasource.
- includes string[]
- Include the associated collections or targeting rules details in the response.
- limit number
- The number of records to retrieve. By default, the list operation return the first 10 records. To retrieve different set of records, use
limit
withoffset
to page through the available records. - offset number
- The number of records to skip. By specifying
offset
, you retrieve a subset of items that starts with theoffset
value. Useoffset
withlimit
to page through the available records. - segments string[]
- Filter features by a list of comma separated segments.
- sort string
- Sort the feature details based on the specified attribute.
- string
- Flter the resources to be returned based on the associated tags. Returns resources associated with any of the specified tags.
- environment_
id This property is required. str - Environment ID.
- guid
This property is required. str - The GUID of the App Configuration service. Get it from the service instance credentials section of the dashboard.
- collections Sequence[str]
- Filter features by a list of comma separated collections.
- expand bool
- If set to
true
, returns expanded view of the resource details. - id str
- (String) The unique identifier of the Features datasource.
- includes Sequence[str]
- Include the associated collections or targeting rules details in the response.
- limit float
- The number of records to retrieve. By default, the list operation return the first 10 records. To retrieve different set of records, use
limit
withoffset
to page through the available records. - offset float
- The number of records to skip. By specifying
offset
, you retrieve a subset of items that starts with theoffset
value. Useoffset
withlimit
to page through the available records. - segments Sequence[str]
- Filter features by a list of comma separated segments.
- sort str
- Sort the feature details based on the specified attribute.
- str
- Flter the resources to be returned based on the associated tags. Returns resources associated with any of the specified tags.
- environment
Id This property is required. String - Environment ID.
- guid
This property is required. String - The GUID of the App Configuration service. Get it from the service instance credentials section of the dashboard.
- collections List<String>
- Filter features by a list of comma separated collections.
- expand Boolean
- If set to
true
, returns expanded view of the resource details. - id String
- (String) The unique identifier of the Features datasource.
- includes List<String>
- Include the associated collections or targeting rules details in the response.
- limit Number
- The number of records to retrieve. By default, the list operation return the first 10 records. To retrieve different set of records, use
limit
withoffset
to page through the available records. - offset Number
- The number of records to skip. By specifying
offset
, you retrieve a subset of items that starts with theoffset
value. Useoffset
withlimit
to page through the available records. - segments List<String>
- Filter features by a list of comma separated segments.
- sort String
- Sort the feature details based on the specified attribute.
- String
- Flter the resources to be returned based on the associated tags. Returns resources associated with any of the specified tags.
getAppConfigFeatures Result
The following output properties are available:
- Environment
Id string - Features
List<Get
App Config Features Feature> - (List) Array of Features.
- Firsts
List<Get
App Config Features First> - (List) The URL to navigate to the first page of records.
- Guid string
- Id string
- (String) The unique identifier of the Features datasource.
- Lasts
List<Get
App Config Features Last> - (List) The URL to navigate to the last list of records.
- Nexts
List<Get
App Config Features Next> - (List) The URL to navigate to the next list of records.
- Previouses
List<Get
App Config Features Previouse> - (List) The URL to navigate to the previous list of records.
- Total
Count double - (String) Number of records returned in the current response.
- Collections List<string>
- (List) The collection array.
- Expand bool
- Includes List<string>
- Limit double
- Offset double
- Segments List<string>
- (String) The Segments array.
- Sort string
- string
- (String) The tags associated with the feature.
- Environment
Id string - Features
[]Get
App Config Features Feature - (List) Array of Features.
- Firsts
[]Get
App Config Features First - (List) The URL to navigate to the first page of records.
- Guid string
- Id string
- (String) The unique identifier of the Features datasource.
- Lasts
[]Get
App Config Features Last - (List) The URL to navigate to the last list of records.
- Nexts
[]Get
App Config Features Next - (List) The URL to navigate to the next list of records.
- Previouses
[]Get
App Config Features Previouse - (List) The URL to navigate to the previous list of records.
- Total
Count float64 - (String) Number of records returned in the current response.
- Collections []string
- (List) The collection array.
- Expand bool
- Includes []string
- Limit float64
- Offset float64
- Segments []string
- (String) The Segments array.
- Sort string
- string
- (String) The tags associated with the feature.
- environment
Id String - features
List<Get
App Config Features Feature> - (List) Array of Features.
- firsts
List<Get
App Config Features First> - (List) The URL to navigate to the first page of records.
- guid String
- id String
- (String) The unique identifier of the Features datasource.
- lasts
List<Get
App Config Features Last> - (List) The URL to navigate to the last list of records.
- nexts
List<Get
App Config Features Next> - (List) The URL to navigate to the next list of records.
- previouses
List<Get
App Config Features Previouse> - (List) The URL to navigate to the previous list of records.
- total
Count Double - (String) Number of records returned in the current response.
- collections List<String>
- (List) The collection array.
- expand Boolean
- includes List<String>
- limit Double
- offset Double
- segments List<String>
- (String) The Segments array.
- sort String
- String
- (String) The tags associated with the feature.
- environment
Id string - features
Get
App Config Features Feature[] - (List) Array of Features.
- firsts
Get
App Config Features First[] - (List) The URL to navigate to the first page of records.
- guid string
- id string
- (String) The unique identifier of the Features datasource.
- lasts
Get
App Config Features Last[] - (List) The URL to navigate to the last list of records.
- nexts
Get
App Config Features Next[] - (List) The URL to navigate to the next list of records.
- previouses
Get
App Config Features Previouse[] - (List) The URL to navigate to the previous list of records.
- total
Count number - (String) Number of records returned in the current response.
- collections string[]
- (List) The collection array.
- expand boolean
- includes string[]
- limit number
- offset number
- segments string[]
- (String) The Segments array.
- sort string
- string
- (String) The tags associated with the feature.
- environment_
id str - features
Sequence[Get
App Config Features Feature] - (List) Array of Features.
- firsts
Sequence[Get
App Config Features First] - (List) The URL to navigate to the first page of records.
- guid str
- id str
- (String) The unique identifier of the Features datasource.
- lasts
Sequence[Get
App Config Features Last] - (List) The URL to navigate to the last list of records.
- nexts
Sequence[Get
App Config Features Next] - (List) The URL to navigate to the next list of records.
- previouses
Sequence[Get
App Config Features Previouse] - (List) The URL to navigate to the previous list of records.
- total_
count float - (String) Number of records returned in the current response.
- collections Sequence[str]
- (List) The collection array.
- expand bool
- includes Sequence[str]
- limit float
- offset float
- segments Sequence[str]
- (String) The Segments array.
- sort str
- str
- (String) The tags associated with the feature.
- environment
Id String - features List<Property Map>
- (List) Array of Features.
- firsts List<Property Map>
- (List) The URL to navigate to the first page of records.
- guid String
- id String
- (String) The unique identifier of the Features datasource.
- lasts List<Property Map>
- (List) The URL to navigate to the last list of records.
- nexts List<Property Map>
- (List) The URL to navigate to the next list of records.
- previouses List<Property Map>
- (List) The URL to navigate to the previous list of records.
- total
Count Number - (String) Number of records returned in the current response.
- collections List<String>
- (List) The collection array.
- expand Boolean
- includes List<String>
- limit Number
- offset Number
- segments List<String>
- (String) The Segments array.
- sort String
- String
- (String) The tags associated with the feature.
Supporting Types
GetAppConfigFeaturesFeature
- Collections
This property is required. List<GetApp Config Features Feature Collection> - Filter features by a list of comma separated collections.
- Created
Time This property is required. string - (String) Creation time of the feature flag.
- Description
This property is required. string - (String) The feature description.
- Disabled
Value This property is required. string - (String) The value of the feature when it is disabled.
- Enabled
This property is required. bool - (String) The state of the feature flag.
- Enabled
Value This property is required. string - (String) The value of the feature when it is enabled.
- Feature
Id This property is required. string - (String) The feature ID.
- Format
This property is required. string - Href
This property is required. string - (String) The next
href
URL. - Name
This property is required. string - (String) Name of the collection.
- Rollout
Percentage This property is required. double - (String) Rollout percentage for the segment rule.
- Segment
Exists This property is required. bool - (String) Denotes if the targeting rules are specified for the feature flag.
- Segment
Rules This property is required. List<GetApp Config Features Feature Segment Rule> - (List) The segment rules array.
This property is required. string- Flter the resources to be returned based on the associated tags. Returns resources associated with any of the specified tags.
- Type
This property is required. string - (String) The type of the feature. Supported values are
BOOLEAN
,STRING
, andNUMERIC
). - Updated
Time This property is required. string - (String) Last modified time of the feature flag data.
- Collections
This property is required. []GetApp Config Features Feature Collection - Filter features by a list of comma separated collections.
- Created
Time This property is required. string - (String) Creation time of the feature flag.
- Description
This property is required. string - (String) The feature description.
- Disabled
Value This property is required. string - (String) The value of the feature when it is disabled.
- Enabled
This property is required. bool - (String) The state of the feature flag.
- Enabled
Value This property is required. string - (String) The value of the feature when it is enabled.
- Feature
Id This property is required. string - (String) The feature ID.
- Format
This property is required. string - Href
This property is required. string - (String) The next
href
URL. - Name
This property is required. string - (String) Name of the collection.
- Rollout
Percentage This property is required. float64 - (String) Rollout percentage for the segment rule.
- Segment
Exists This property is required. bool - (String) Denotes if the targeting rules are specified for the feature flag.
- Segment
Rules This property is required. []GetApp Config Features Feature Segment Rule - (List) The segment rules array.
This property is required. string- Flter the resources to be returned based on the associated tags. Returns resources associated with any of the specified tags.
- Type
This property is required. string - (String) The type of the feature. Supported values are
BOOLEAN
,STRING
, andNUMERIC
). - Updated
Time This property is required. string - (String) Last modified time of the feature flag data.
- collections
This property is required. List<GetApp Config Features Feature Collection> - Filter features by a list of comma separated collections.
- created
Time This property is required. String - (String) Creation time of the feature flag.
- description
This property is required. String - (String) The feature description.
- disabled
Value This property is required. String - (String) The value of the feature when it is disabled.
- enabled
This property is required. Boolean - (String) The state of the feature flag.
- enabled
Value This property is required. String - (String) The value of the feature when it is enabled.
- feature
Id This property is required. String - (String) The feature ID.
- format
This property is required. String - href
This property is required. String - (String) The next
href
URL. - name
This property is required. String - (String) Name of the collection.
- rollout
Percentage This property is required. Double - (String) Rollout percentage for the segment rule.
- segment
Exists This property is required. Boolean - (String) Denotes if the targeting rules are specified for the feature flag.
- segment
Rules This property is required. List<GetApp Config Features Feature Segment Rule> - (List) The segment rules array.
This property is required. String- Flter the resources to be returned based on the associated tags. Returns resources associated with any of the specified tags.
- type
This property is required. String - (String) The type of the feature. Supported values are
BOOLEAN
,STRING
, andNUMERIC
). - updated
Time This property is required. String - (String) Last modified time of the feature flag data.
- collections
This property is required. GetApp Config Features Feature Collection[] - Filter features by a list of comma separated collections.
- created
Time This property is required. string - (String) Creation time of the feature flag.
- description
This property is required. string - (String) The feature description.
- disabled
Value This property is required. string - (String) The value of the feature when it is disabled.
- enabled
This property is required. boolean - (String) The state of the feature flag.
- enabled
Value This property is required. string - (String) The value of the feature when it is enabled.
- feature
Id This property is required. string - (String) The feature ID.
- format
This property is required. string - href
This property is required. string - (String) The next
href
URL. - name
This property is required. string - (String) Name of the collection.
- rollout
Percentage This property is required. number - (String) Rollout percentage for the segment rule.
- segment
Exists This property is required. boolean - (String) Denotes if the targeting rules are specified for the feature flag.
- segment
Rules This property is required. GetApp Config Features Feature Segment Rule[] - (List) The segment rules array.
This property is required. string- Flter the resources to be returned based on the associated tags. Returns resources associated with any of the specified tags.
- type
This property is required. string - (String) The type of the feature. Supported values are
BOOLEAN
,STRING
, andNUMERIC
). - updated
Time This property is required. string - (String) Last modified time of the feature flag data.
- collections
This property is required. Sequence[GetApp Config Features Feature Collection] - Filter features by a list of comma separated collections.
- created_
time This property is required. str - (String) Creation time of the feature flag.
- description
This property is required. str - (String) The feature description.
- disabled_
value This property is required. str - (String) The value of the feature when it is disabled.
- enabled
This property is required. bool - (String) The state of the feature flag.
- enabled_
value This property is required. str - (String) The value of the feature when it is enabled.
- feature_
id This property is required. str - (String) The feature ID.
- format
This property is required. str - href
This property is required. str - (String) The next
href
URL. - name
This property is required. str - (String) Name of the collection.
- rollout_
percentage This property is required. float - (String) Rollout percentage for the segment rule.
- segment_
exists This property is required. bool - (String) Denotes if the targeting rules are specified for the feature flag.
- segment_
rules This property is required. Sequence[GetApp Config Features Feature Segment Rule] - (List) The segment rules array.
This property is required. str- Flter the resources to be returned based on the associated tags. Returns resources associated with any of the specified tags.
- type
This property is required. str - (String) The type of the feature. Supported values are
BOOLEAN
,STRING
, andNUMERIC
). - updated_
time This property is required. str - (String) Last modified time of the feature flag data.
- collections
This property is required. List<Property Map> - Filter features by a list of comma separated collections.
- created
Time This property is required. String - (String) Creation time of the feature flag.
- description
This property is required. String - (String) The feature description.
- disabled
Value This property is required. String - (String) The value of the feature when it is disabled.
- enabled
This property is required. Boolean - (String) The state of the feature flag.
- enabled
Value This property is required. String - (String) The value of the feature when it is enabled.
- feature
Id This property is required. String - (String) The feature ID.
- format
This property is required. String - href
This property is required. String - (String) The next
href
URL. - name
This property is required. String - (String) Name of the collection.
- rollout
Percentage This property is required. Number - (String) Rollout percentage for the segment rule.
- segment
Exists This property is required. Boolean - (String) Denotes if the targeting rules are specified for the feature flag.
- segment
Rules This property is required. List<Property Map> - (List) The segment rules array.
This property is required. String- Flter the resources to be returned based on the associated tags. Returns resources associated with any of the specified tags.
- type
This property is required. String - (String) The type of the feature. Supported values are
BOOLEAN
,STRING
, andNUMERIC
). - updated
Time This property is required. String - (String) Last modified time of the feature flag data.
GetAppConfigFeaturesFeatureCollection
- Collection
Id This property is required. string - (String) The collection ID.
- Name
This property is required. string - (String) Name of the collection.
- Collection
Id This property is required. string - (String) The collection ID.
- Name
This property is required. string - (String) Name of the collection.
- collection
Id This property is required. String - (String) The collection ID.
- name
This property is required. String - (String) Name of the collection.
- collection
Id This property is required. string - (String) The collection ID.
- name
This property is required. string - (String) Name of the collection.
- collection_
id This property is required. str - (String) The collection ID.
- name
This property is required. str - (String) Name of the collection.
- collection
Id This property is required. String - (String) The collection ID.
- name
This property is required. String - (String) Name of the collection.
GetAppConfigFeaturesFeatureSegmentRule
- Order
This property is required. double - (String) Order of the segment, used during evaluation.
- Rollout
Percentage This property is required. double - (String) Rollout percentage for the segment rule.
- Rules
This property is required. List<GetApp Config Features Feature Segment Rule Rule> - (List) The rules array.
- Value
This property is required. string - (String) Value of the segment.
- Order
This property is required. float64 - (String) Order of the segment, used during evaluation.
- Rollout
Percentage This property is required. float64 - (String) Rollout percentage for the segment rule.
- Rules
This property is required. []GetApp Config Features Feature Segment Rule Rule - (List) The rules array.
- Value
This property is required. string - (String) Value of the segment.
- order
This property is required. Double - (String) Order of the segment, used during evaluation.
- rollout
Percentage This property is required. Double - (String) Rollout percentage for the segment rule.
- rules
This property is required. List<GetApp Config Features Feature Segment Rule Rule> - (List) The rules array.
- value
This property is required. String - (String) Value of the segment.
- order
This property is required. number - (String) Order of the segment, used during evaluation.
- rollout
Percentage This property is required. number - (String) Rollout percentage for the segment rule.
- rules
This property is required. GetApp Config Features Feature Segment Rule Rule[] - (List) The rules array.
- value
This property is required. string - (String) Value of the segment.
- order
This property is required. float - (String) Order of the segment, used during evaluation.
- rollout_
percentage This property is required. float - (String) Rollout percentage for the segment rule.
- rules
This property is required. Sequence[GetApp Config Features Feature Segment Rule Rule] - (List) The rules array.
- value
This property is required. str - (String) Value of the segment.
- order
This property is required. Number - (String) Order of the segment, used during evaluation.
- rollout
Percentage This property is required. Number - (String) Rollout percentage for the segment rule.
- rules
This property is required. List<Property Map> - (List) The rules array.
- value
This property is required. String - (String) Value of the segment.
GetAppConfigFeaturesFeatureSegmentRuleRule
- Segments
This property is required. List<string> - Filter features by a list of comma separated segments.
- Segments
This property is required. []string - Filter features by a list of comma separated segments.
- segments
This property is required. List<String> - Filter features by a list of comma separated segments.
- segments
This property is required. string[] - Filter features by a list of comma separated segments.
- segments
This property is required. Sequence[str] - Filter features by a list of comma separated segments.
- segments
This property is required. List<String> - Filter features by a list of comma separated segments.
GetAppConfigFeaturesFirst
- Href
This property is required. string - (String) The next
href
URL.
- Href
This property is required. string - (String) The next
href
URL.
- href
This property is required. String - (String) The next
href
URL.
- href
This property is required. string - (String) The next
href
URL.
- href
This property is required. str - (String) The next
href
URL.
- href
This property is required. String - (String) The next
href
URL.
GetAppConfigFeaturesLast
- Href
This property is required. string - (String) The next
href
URL.
- Href
This property is required. string - (String) The next
href
URL.
- href
This property is required. String - (String) The next
href
URL.
- href
This property is required. string - (String) The next
href
URL.
- href
This property is required. str - (String) The next
href
URL.
- href
This property is required. String - (String) The next
href
URL.
GetAppConfigFeaturesNext
- Href
This property is required. string - (String) The next
href
URL.
- Href
This property is required. string - (String) The next
href
URL.
- href
This property is required. String - (String) The next
href
URL.
- href
This property is required. string - (String) The next
href
URL.
- href
This property is required. str - (String) The next
href
URL.
- href
This property is required. String - (String) The next
href
URL.
GetAppConfigFeaturesPreviouse
- Href
This property is required. string - (String) The next
href
URL.
- Href
This property is required. string - (String) The next
href
URL.
- href
This property is required. String - (String) The next
href
URL.
- href
This property is required. string - (String) The next
href
URL.
- href
This property is required. str - (String) The next
href
URL.
- href
This property is required. String - (String) The next
href
URL.
Package Details
- Repository
- ibm ibm-cloud/terraform-provider-ibm
- License
- Notes
- This Pulumi package is based on the
ibm
Terraform Provider.