dynatrace.InfraopsAppFeatureFlags
Explore with Pulumi AI
Create InfraopsAppFeatureFlags Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new InfraopsAppFeatureFlags(name: string, args: InfraopsAppFeatureFlagsArgs, opts?: CustomResourceOptions);
@overload
def InfraopsAppFeatureFlags(resource_name: str,
args: InfraopsAppFeatureFlagsArgs,
opts: Optional[ResourceOptions] = None)
@overload
def InfraopsAppFeatureFlags(resource_name: str,
opts: Optional[ResourceOptions] = None,
type: Optional[str] = None,
boolean_value: Optional[bool] = None,
name: Optional[str] = None,
number_value: Optional[int] = None,
string_value: Optional[str] = None)
func NewInfraopsAppFeatureFlags(ctx *Context, name string, args InfraopsAppFeatureFlagsArgs, opts ...ResourceOption) (*InfraopsAppFeatureFlags, error)
public InfraopsAppFeatureFlags(string name, InfraopsAppFeatureFlagsArgs args, CustomResourceOptions? opts = null)
public InfraopsAppFeatureFlags(String name, InfraopsAppFeatureFlagsArgs args)
public InfraopsAppFeatureFlags(String name, InfraopsAppFeatureFlagsArgs args, CustomResourceOptions options)
type: dynatrace:InfraopsAppFeatureFlags
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 InfraopsAppFeatureFlagsArgs
- 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 InfraopsAppFeatureFlagsArgs
- 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 InfraopsAppFeatureFlagsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args InfraopsAppFeatureFlagsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args InfraopsAppFeatureFlagsArgs
- 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 infraopsAppFeatureFlagsResource = new Dynatrace.InfraopsAppFeatureFlags("infraopsAppFeatureFlagsResource", new()
{
Type = "string",
BooleanValue = false,
Name = "string",
NumberValue = 0,
StringValue = "string",
});
example, err := dynatrace.NewInfraopsAppFeatureFlags(ctx, "infraopsAppFeatureFlagsResource", &dynatrace.InfraopsAppFeatureFlagsArgs{
Type: pulumi.String("string"),
BooleanValue: pulumi.Bool(false),
Name: pulumi.String("string"),
NumberValue: pulumi.Int(0),
StringValue: pulumi.String("string"),
})
var infraopsAppFeatureFlagsResource = new InfraopsAppFeatureFlags("infraopsAppFeatureFlagsResource", InfraopsAppFeatureFlagsArgs.builder()
.type("string")
.booleanValue(false)
.name("string")
.numberValue(0)
.stringValue("string")
.build());
infraops_app_feature_flags_resource = dynatrace.InfraopsAppFeatureFlags("infraopsAppFeatureFlagsResource",
type="string",
boolean_value=False,
name="string",
number_value=0,
string_value="string")
const infraopsAppFeatureFlagsResource = new dynatrace.InfraopsAppFeatureFlags("infraopsAppFeatureFlagsResource", {
type: "string",
booleanValue: false,
name: "string",
numberValue: 0,
stringValue: "string",
});
type: dynatrace:InfraopsAppFeatureFlags
properties:
booleanValue: false
name: string
numberValue: 0
stringValue: string
type: string
InfraopsAppFeatureFlags 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 InfraopsAppFeatureFlags resource accepts the following input properties:
- Type string
- Possible Values:
Boolean
,Number
,String
- Boolean
Value bool - State of boolean feature
- Name string
- Name of the feature
- Number
Value int - State of numeric feature
- String
Value string - State of textual feature
- Type string
- Possible Values:
Boolean
,Number
,String
- Boolean
Value bool - State of boolean feature
- Name string
- Name of the feature
- Number
Value int - State of numeric feature
- String
Value string - State of textual feature
- type String
- Possible Values:
Boolean
,Number
,String
- boolean
Value Boolean - State of boolean feature
- name String
- Name of the feature
- number
Value Integer - State of numeric feature
- string
Value String - State of textual feature
- type string
- Possible Values:
Boolean
,Number
,String
- boolean
Value boolean - State of boolean feature
- name string
- Name of the feature
- number
Value number - State of numeric feature
- string
Value string - State of textual feature
- type str
- Possible Values:
Boolean
,Number
,String
- boolean_
value bool - State of boolean feature
- name str
- Name of the feature
- number_
value int - State of numeric feature
- string_
value str - State of textual feature
- type String
- Possible Values:
Boolean
,Number
,String
- boolean
Value Boolean - State of boolean feature
- name String
- Name of the feature
- number
Value Number - State of numeric feature
- string
Value String - State of textual feature
Outputs
All input properties are implicitly available as output properties. Additionally, the InfraopsAppFeatureFlags resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing InfraopsAppFeatureFlags Resource
Get an existing InfraopsAppFeatureFlags 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?: InfraopsAppFeatureFlagsState, opts?: CustomResourceOptions): InfraopsAppFeatureFlags
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
boolean_value: Optional[bool] = None,
name: Optional[str] = None,
number_value: Optional[int] = None,
string_value: Optional[str] = None,
type: Optional[str] = None) -> InfraopsAppFeatureFlags
func GetInfraopsAppFeatureFlags(ctx *Context, name string, id IDInput, state *InfraopsAppFeatureFlagsState, opts ...ResourceOption) (*InfraopsAppFeatureFlags, error)
public static InfraopsAppFeatureFlags Get(string name, Input<string> id, InfraopsAppFeatureFlagsState? state, CustomResourceOptions? opts = null)
public static InfraopsAppFeatureFlags get(String name, Output<String> id, InfraopsAppFeatureFlagsState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Boolean
Value bool - State of boolean feature
- Name string
- Name of the feature
- Number
Value int - State of numeric feature
- String
Value string - State of textual feature
- Type string
- Possible Values:
Boolean
,Number
,String
- Boolean
Value bool - State of boolean feature
- Name string
- Name of the feature
- Number
Value int - State of numeric feature
- String
Value string - State of textual feature
- Type string
- Possible Values:
Boolean
,Number
,String
- boolean
Value Boolean - State of boolean feature
- name String
- Name of the feature
- number
Value Integer - State of numeric feature
- string
Value String - State of textual feature
- type String
- Possible Values:
Boolean
,Number
,String
- boolean
Value boolean - State of boolean feature
- name string
- Name of the feature
- number
Value number - State of numeric feature
- string
Value string - State of textual feature
- type string
- Possible Values:
Boolean
,Number
,String
- boolean_
value bool - State of boolean feature
- name str
- Name of the feature
- number_
value int - State of numeric feature
- string_
value str - State of textual feature
- type str
- Possible Values:
Boolean
,Number
,String
- boolean
Value Boolean - State of boolean feature
- name String
- Name of the feature
- number
Value Number - State of numeric feature
- string
Value String - State of textual feature
- type String
- Possible Values:
Boolean
,Number
,String
Package Details
- Repository
- dynatrace pulumiverse/pulumi-dynatrace
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
dynatrace
Terraform Provider.