vcd.RdeTypeBehaviorAcl
Explore with Pulumi AI
Create RdeTypeBehaviorAcl Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new RdeTypeBehaviorAcl(name: string, args: RdeTypeBehaviorAclArgs, opts?: CustomResourceOptions);
@overload
def RdeTypeBehaviorAcl(resource_name: str,
args: RdeTypeBehaviorAclArgs,
opts: Optional[ResourceOptions] = None)
@overload
def RdeTypeBehaviorAcl(resource_name: str,
opts: Optional[ResourceOptions] = None,
access_level_ids: Optional[Sequence[str]] = None,
behavior_id: Optional[str] = None,
rde_type_id: Optional[str] = None,
rde_type_behavior_acl_id: Optional[str] = None)
func NewRdeTypeBehaviorAcl(ctx *Context, name string, args RdeTypeBehaviorAclArgs, opts ...ResourceOption) (*RdeTypeBehaviorAcl, error)
public RdeTypeBehaviorAcl(string name, RdeTypeBehaviorAclArgs args, CustomResourceOptions? opts = null)
public RdeTypeBehaviorAcl(String name, RdeTypeBehaviorAclArgs args)
public RdeTypeBehaviorAcl(String name, RdeTypeBehaviorAclArgs args, CustomResourceOptions options)
type: vcd:RdeTypeBehaviorAcl
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 RdeTypeBehaviorAclArgs
- 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 RdeTypeBehaviorAclArgs
- 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 RdeTypeBehaviorAclArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RdeTypeBehaviorAclArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RdeTypeBehaviorAclArgs
- 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 rdeTypeBehaviorAclResource = new Vcd.RdeTypeBehaviorAcl("rdeTypeBehaviorAclResource", new()
{
AccessLevelIds = new[]
{
"string",
},
BehaviorId = "string",
RdeTypeId = "string",
RdeTypeBehaviorAclId = "string",
});
example, err := vcd.NewRdeTypeBehaviorAcl(ctx, "rdeTypeBehaviorAclResource", &vcd.RdeTypeBehaviorAclArgs{
AccessLevelIds: pulumi.StringArray{
pulumi.String("string"),
},
BehaviorId: pulumi.String("string"),
RdeTypeId: pulumi.String("string"),
RdeTypeBehaviorAclId: pulumi.String("string"),
})
var rdeTypeBehaviorAclResource = new RdeTypeBehaviorAcl("rdeTypeBehaviorAclResource", RdeTypeBehaviorAclArgs.builder()
.accessLevelIds("string")
.behaviorId("string")
.rdeTypeId("string")
.rdeTypeBehaviorAclId("string")
.build());
rde_type_behavior_acl_resource = vcd.RdeTypeBehaviorAcl("rdeTypeBehaviorAclResource",
access_level_ids=["string"],
behavior_id="string",
rde_type_id="string",
rde_type_behavior_acl_id="string")
const rdeTypeBehaviorAclResource = new vcd.RdeTypeBehaviorAcl("rdeTypeBehaviorAclResource", {
accessLevelIds: ["string"],
behaviorId: "string",
rdeTypeId: "string",
rdeTypeBehaviorAclId: "string",
});
type: vcd:RdeTypeBehaviorAcl
properties:
accessLevelIds:
- string
behaviorId: string
rdeTypeBehaviorAclId: string
rdeTypeId: string
RdeTypeBehaviorAcl 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 RdeTypeBehaviorAcl resource accepts the following input properties:
- Access
Level List<string>Ids - Set of Access Level IDs to associate to the Behavior defined in
behavior_id
argument - Behavior
Id string - The ID of either a RDE Type Behavior or a RDE Interface Behavior
- Rde
Type stringId - The ID of the RDE Type
- Rde
Type stringBehavior Acl Id
- Access
Level []stringIds - Set of Access Level IDs to associate to the Behavior defined in
behavior_id
argument - Behavior
Id string - The ID of either a RDE Type Behavior or a RDE Interface Behavior
- Rde
Type stringId - The ID of the RDE Type
- Rde
Type stringBehavior Acl Id
- access
Level List<String>Ids - Set of Access Level IDs to associate to the Behavior defined in
behavior_id
argument - behavior
Id String - The ID of either a RDE Type Behavior or a RDE Interface Behavior
- rde
Type StringId - The ID of the RDE Type
- rde
Type StringBehavior Acl Id
- access
Level string[]Ids - Set of Access Level IDs to associate to the Behavior defined in
behavior_id
argument - behavior
Id string - The ID of either a RDE Type Behavior or a RDE Interface Behavior
- rde
Type stringId - The ID of the RDE Type
- rde
Type stringBehavior Acl Id
- access_
level_ Sequence[str]ids - Set of Access Level IDs to associate to the Behavior defined in
behavior_id
argument - behavior_
id str - The ID of either a RDE Type Behavior or a RDE Interface Behavior
- rde_
type_ strid - The ID of the RDE Type
- rde_
type_ strbehavior_ acl_ id
- access
Level List<String>Ids - Set of Access Level IDs to associate to the Behavior defined in
behavior_id
argument - behavior
Id String - The ID of either a RDE Type Behavior or a RDE Interface Behavior
- rde
Type StringId - The ID of the RDE Type
- rde
Type StringBehavior Acl Id
Outputs
All input properties are implicitly available as output properties. Additionally, the RdeTypeBehaviorAcl 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 RdeTypeBehaviorAcl Resource
Get an existing RdeTypeBehaviorAcl 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?: RdeTypeBehaviorAclState, opts?: CustomResourceOptions): RdeTypeBehaviorAcl
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
access_level_ids: Optional[Sequence[str]] = None,
behavior_id: Optional[str] = None,
rde_type_behavior_acl_id: Optional[str] = None,
rde_type_id: Optional[str] = None) -> RdeTypeBehaviorAcl
func GetRdeTypeBehaviorAcl(ctx *Context, name string, id IDInput, state *RdeTypeBehaviorAclState, opts ...ResourceOption) (*RdeTypeBehaviorAcl, error)
public static RdeTypeBehaviorAcl Get(string name, Input<string> id, RdeTypeBehaviorAclState? state, CustomResourceOptions? opts = null)
public static RdeTypeBehaviorAcl get(String name, Output<String> id, RdeTypeBehaviorAclState state, CustomResourceOptions options)
resources: _: type: vcd:RdeTypeBehaviorAcl 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.
- Access
Level List<string>Ids - Set of Access Level IDs to associate to the Behavior defined in
behavior_id
argument - Behavior
Id string - The ID of either a RDE Type Behavior or a RDE Interface Behavior
- Rde
Type stringBehavior Acl Id - Rde
Type stringId - The ID of the RDE Type
- Access
Level []stringIds - Set of Access Level IDs to associate to the Behavior defined in
behavior_id
argument - Behavior
Id string - The ID of either a RDE Type Behavior or a RDE Interface Behavior
- Rde
Type stringBehavior Acl Id - Rde
Type stringId - The ID of the RDE Type
- access
Level List<String>Ids - Set of Access Level IDs to associate to the Behavior defined in
behavior_id
argument - behavior
Id String - The ID of either a RDE Type Behavior or a RDE Interface Behavior
- rde
Type StringBehavior Acl Id - rde
Type StringId - The ID of the RDE Type
- access
Level string[]Ids - Set of Access Level IDs to associate to the Behavior defined in
behavior_id
argument - behavior
Id string - The ID of either a RDE Type Behavior or a RDE Interface Behavior
- rde
Type stringBehavior Acl Id - rde
Type stringId - The ID of the RDE Type
- access_
level_ Sequence[str]ids - Set of Access Level IDs to associate to the Behavior defined in
behavior_id
argument - behavior_
id str - The ID of either a RDE Type Behavior or a RDE Interface Behavior
- rde_
type_ strbehavior_ acl_ id - rde_
type_ strid - The ID of the RDE Type
- access
Level List<String>Ids - Set of Access Level IDs to associate to the Behavior defined in
behavior_id
argument - behavior
Id String - The ID of either a RDE Type Behavior or a RDE Interface Behavior
- rde
Type StringBehavior Acl Id - rde
Type StringId - The ID of the RDE Type
Package Details
- Repository
- vcd vmware/terraform-provider-vcd
- License
- Notes
- This Pulumi package is based on the
vcd
Terraform Provider.