1. Packages
  2. Nutanix
  3. API Docs
  4. getAccessControlPolicies
Nutanix v0.7.4 published on Friday, Mar 21, 2025 by Piers Karsenbarg

nutanix.getAccessControlPolicies

Explore with Pulumi AI

Describes a list of access control policies.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as nutanix from "@pulumi/nutanix";

const test = nutanix.getAccessControlPolicies({});
Copy
import pulumi
import pulumi_nutanix as nutanix

test = nutanix.get_access_control_policies()
Copy
package main

import (
	"github.com/pierskarsenbarg/pulumi-nutanix/sdk/go/nutanix"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := nutanix.GetAccessControlPolicies(ctx, &nutanix.GetAccessControlPoliciesArgs{}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Nutanix = Pulumi.Nutanix;

return await Deployment.RunAsync(() => 
{
    var test = Nutanix.GetAccessControlPolicies.Invoke();

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.nutanix.NutanixFunctions;
import com.pulumi.nutanix.inputs.GetAccessControlPoliciesArgs;
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 test = NutanixFunctions.getAccessControlPolicies();

    }
}
Copy
variables:
  test:
    fn::invoke:
      function: nutanix:getAccessControlPolicies
      arguments: {}
Copy

Using getAccessControlPolicies

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 getAccessControlPolicies(args: GetAccessControlPoliciesArgs, opts?: InvokeOptions): Promise<GetAccessControlPoliciesResult>
function getAccessControlPoliciesOutput(args: GetAccessControlPoliciesOutputArgs, opts?: InvokeOptions): Output<GetAccessControlPoliciesResult>
Copy
def get_access_control_policies(metadatas: Optional[Sequence[GetAccessControlPoliciesMetadata]] = None,
                                opts: Optional[InvokeOptions] = None) -> GetAccessControlPoliciesResult
def get_access_control_policies_output(metadatas: Optional[pulumi.Input[Sequence[pulumi.Input[GetAccessControlPoliciesMetadataArgs]]]] = None,
                                opts: Optional[InvokeOptions] = None) -> Output[GetAccessControlPoliciesResult]
Copy
func GetAccessControlPolicies(ctx *Context, args *GetAccessControlPoliciesArgs, opts ...InvokeOption) (*GetAccessControlPoliciesResult, error)
func GetAccessControlPoliciesOutput(ctx *Context, args *GetAccessControlPoliciesOutputArgs, opts ...InvokeOption) GetAccessControlPoliciesResultOutput
Copy

> Note: This function is named GetAccessControlPolicies in the Go SDK.

public static class GetAccessControlPolicies 
{
    public static Task<GetAccessControlPoliciesResult> InvokeAsync(GetAccessControlPoliciesArgs args, InvokeOptions? opts = null)
    public static Output<GetAccessControlPoliciesResult> Invoke(GetAccessControlPoliciesInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetAccessControlPoliciesResult> getAccessControlPolicies(GetAccessControlPoliciesArgs args, InvokeOptions options)
public static Output<GetAccessControlPoliciesResult> getAccessControlPolicies(GetAccessControlPoliciesArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: nutanix:index/getAccessControlPolicies:getAccessControlPolicies
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

Metadatas []GetAccessControlPoliciesMetadata
  • The Access Control Policy kind metadata.
metadatas List<GetAccessControlPoliciesMetadata>
  • The Access Control Policy kind metadata.
metadatas GetAccessControlPoliciesMetadata[]
  • The Access Control Policy kind metadata.
metadatas Sequence[GetAccessControlPoliciesMetadata]
  • The Access Control Policy kind metadata.
metadatas List<Property Map>
  • The Access Control Policy kind metadata.

getAccessControlPolicies Result

The following output properties are available:

ApiVersion string
The version of the API.
Entities List<PiersKarsenbarg.Nutanix.Outputs.GetAccessControlPoliciesEntity>
List of Access Control Policies
Id string
The provider-assigned unique ID for this managed resource.
Metadatas List<PiersKarsenbarg.Nutanix.Outputs.GetAccessControlPoliciesMetadata>
  • The Access Control Policy kind metadata.
ApiVersion string
The version of the API.
Entities []GetAccessControlPoliciesEntity
List of Access Control Policies
Id string
The provider-assigned unique ID for this managed resource.
Metadatas []GetAccessControlPoliciesMetadata
  • The Access Control Policy kind metadata.
apiVersion String
The version of the API.
entities List<GetAccessControlPoliciesEntity>
List of Access Control Policies
id String
The provider-assigned unique ID for this managed resource.
metadatas List<GetAccessControlPoliciesMetadata>
  • The Access Control Policy kind metadata.
apiVersion string
The version of the API.
entities GetAccessControlPoliciesEntity[]
List of Access Control Policies
id string
The provider-assigned unique ID for this managed resource.
metadatas GetAccessControlPoliciesMetadata[]
  • The Access Control Policy kind metadata.
api_version str
The version of the API.
entities Sequence[GetAccessControlPoliciesEntity]
List of Access Control Policies
id str
The provider-assigned unique ID for this managed resource.
metadatas Sequence[GetAccessControlPoliciesMetadata]
  • The Access Control Policy kind metadata.
apiVersion String
The version of the API.
entities List<Property Map>
List of Access Control Policies
id String
The provider-assigned unique ID for this managed resource.
metadatas List<Property Map>
  • The Access Control Policy kind metadata.

Supporting Types

GetAccessControlPoliciesEntity

AccessControlPolicyId This property is required. string
ApiVersion This property is required. string
The version of the API.
Categories This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetAccessControlPoliciesEntityCategory>
  • The category values represented as a dictionary of key > list of values.
ContextFilterLists This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetAccessControlPoliciesEntityContextFilterList>
Description This property is required. string
  • The description of the Access Control Policy.
Metadata This property is required. Dictionary<string, string>
  • The Access Control Policy kind metadata.
Name This property is required. string
  • the name(Optional).
OwnerReference This property is required. Dictionary<string, string>
  • The reference to a user.
ProjectReference This property is required. Dictionary<string, string>
  • The reference to a project.
RoleReferences This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetAccessControlPoliciesEntityRoleReference>
  • The reference to a role.
State This property is required. string
  • The state of the Access Control Policy.
UserGroupReferenceLists This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetAccessControlPoliciesEntityUserGroupReferenceList>
  • The User group(s) being assigned a given role.
UserReferenceLists This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetAccessControlPoliciesEntityUserReferenceList>
  • The User(s) being assigned a given role.
AccessControlPolicyId This property is required. string
ApiVersion This property is required. string
The version of the API.
Categories This property is required. []GetAccessControlPoliciesEntityCategory
  • The category values represented as a dictionary of key > list of values.
ContextFilterLists This property is required. []GetAccessControlPoliciesEntityContextFilterList
Description This property is required. string
  • The description of the Access Control Policy.
Metadata This property is required. map[string]string
  • The Access Control Policy kind metadata.
Name This property is required. string
  • the name(Optional).
OwnerReference This property is required. map[string]string
  • The reference to a user.
ProjectReference This property is required. map[string]string
  • The reference to a project.
RoleReferences This property is required. []GetAccessControlPoliciesEntityRoleReference
  • The reference to a role.
State This property is required. string
  • The state of the Access Control Policy.
UserGroupReferenceLists This property is required. []GetAccessControlPoliciesEntityUserGroupReferenceList
  • The User group(s) being assigned a given role.
UserReferenceLists This property is required. []GetAccessControlPoliciesEntityUserReferenceList
  • The User(s) being assigned a given role.
accessControlPolicyId This property is required. String
apiVersion This property is required. String
The version of the API.
categories This property is required. List<GetAccessControlPoliciesEntityCategory>
  • The category values represented as a dictionary of key > list of values.
contextFilterLists This property is required. List<GetAccessControlPoliciesEntityContextFilterList>
description This property is required. String
  • The description of the Access Control Policy.
metadata This property is required. Map<String,String>
  • The Access Control Policy kind metadata.
name This property is required. String
  • the name(Optional).
ownerReference This property is required. Map<String,String>
  • The reference to a user.
projectReference This property is required. Map<String,String>
  • The reference to a project.
roleReferences This property is required. List<GetAccessControlPoliciesEntityRoleReference>
  • The reference to a role.
state This property is required. String
  • The state of the Access Control Policy.
userGroupReferenceLists This property is required. List<GetAccessControlPoliciesEntityUserGroupReferenceList>
  • The User group(s) being assigned a given role.
userReferenceLists This property is required. List<GetAccessControlPoliciesEntityUserReferenceList>
  • The User(s) being assigned a given role.
accessControlPolicyId This property is required. string
apiVersion This property is required. string
The version of the API.
categories This property is required. GetAccessControlPoliciesEntityCategory[]
  • The category values represented as a dictionary of key > list of values.
contextFilterLists This property is required. GetAccessControlPoliciesEntityContextFilterList[]
description This property is required. string
  • The description of the Access Control Policy.
metadata This property is required. {[key: string]: string}
  • The Access Control Policy kind metadata.
name This property is required. string
  • the name(Optional).
ownerReference This property is required. {[key: string]: string}
  • The reference to a user.
projectReference This property is required. {[key: string]: string}
  • The reference to a project.
roleReferences This property is required. GetAccessControlPoliciesEntityRoleReference[]
  • The reference to a role.
state This property is required. string
  • The state of the Access Control Policy.
userGroupReferenceLists This property is required. GetAccessControlPoliciesEntityUserGroupReferenceList[]
  • The User group(s) being assigned a given role.
userReferenceLists This property is required. GetAccessControlPoliciesEntityUserReferenceList[]
  • The User(s) being assigned a given role.
access_control_policy_id This property is required. str
api_version This property is required. str
The version of the API.
categories This property is required. Sequence[GetAccessControlPoliciesEntityCategory]
  • The category values represented as a dictionary of key > list of values.
context_filter_lists This property is required. Sequence[GetAccessControlPoliciesEntityContextFilterList]
description This property is required. str
  • The description of the Access Control Policy.
metadata This property is required. Mapping[str, str]
  • The Access Control Policy kind metadata.
name This property is required. str
  • the name(Optional).
owner_reference This property is required. Mapping[str, str]
  • The reference to a user.
project_reference This property is required. Mapping[str, str]
  • The reference to a project.
role_references This property is required. Sequence[GetAccessControlPoliciesEntityRoleReference]
  • The reference to a role.
state This property is required. str
  • The state of the Access Control Policy.
user_group_reference_lists This property is required. Sequence[GetAccessControlPoliciesEntityUserGroupReferenceList]
  • The User group(s) being assigned a given role.
user_reference_lists This property is required. Sequence[GetAccessControlPoliciesEntityUserReferenceList]
  • The User(s) being assigned a given role.
accessControlPolicyId This property is required. String
apiVersion This property is required. String
The version of the API.
categories This property is required. List<Property Map>
  • The category values represented as a dictionary of key > list of values.
contextFilterLists This property is required. List<Property Map>
description This property is required. String
  • The description of the Access Control Policy.
metadata This property is required. Map<String>
  • The Access Control Policy kind metadata.
name This property is required. String
  • the name(Optional).
ownerReference This property is required. Map<String>
  • The reference to a user.
projectReference This property is required. Map<String>
  • The reference to a project.
roleReferences This property is required. List<Property Map>
  • The reference to a role.
state This property is required. String
  • The state of the Access Control Policy.
userGroupReferenceLists This property is required. List<Property Map>
  • The User group(s) being assigned a given role.
userReferenceLists This property is required. List<Property Map>
  • The User(s) being assigned a given role.

GetAccessControlPoliciesEntityCategory

Name This property is required. string
  • the name(Optional).
Value This property is required. string
  • value of the key.
Name This property is required. string
  • the name(Optional).
Value This property is required. string
  • value of the key.
name This property is required. String
  • the name(Optional).
value This property is required. String
  • value of the key.
name This property is required. string
  • the name(Optional).
value This property is required. string
  • value of the key.
name This property is required. str
  • the name(Optional).
value This property is required. str
  • value of the key.
name This property is required. String
  • the name(Optional).
value This property is required. String
  • value of the key.

GetAccessControlPoliciesEntityContextFilterList

EntityFilterExpressionLists This property is required. []GetAccessControlPoliciesEntityContextFilterListEntityFilterExpressionList
A list of Entity filter expressions.
ScopeFilterExpressionLists This property is required. []GetAccessControlPoliciesEntityContextFilterListScopeFilterExpressionList
  • The device ID which is used to uniquely identify this particular disk.
entityFilterExpressionLists This property is required. List<GetAccessControlPoliciesEntityContextFilterListEntityFilterExpressionList>
A list of Entity filter expressions.
scopeFilterExpressionLists This property is required. List<GetAccessControlPoliciesEntityContextFilterListScopeFilterExpressionList>
  • The device ID which is used to uniquely identify this particular disk.
entityFilterExpressionLists This property is required. GetAccessControlPoliciesEntityContextFilterListEntityFilterExpressionList[]
A list of Entity filter expressions.
scopeFilterExpressionLists This property is required. GetAccessControlPoliciesEntityContextFilterListScopeFilterExpressionList[]
  • The device ID which is used to uniquely identify this particular disk.
entity_filter_expression_lists This property is required. Sequence[GetAccessControlPoliciesEntityContextFilterListEntityFilterExpressionList]
A list of Entity filter expressions.
scope_filter_expression_lists This property is required. Sequence[GetAccessControlPoliciesEntityContextFilterListScopeFilterExpressionList]
  • The device ID which is used to uniquely identify this particular disk.
entityFilterExpressionLists This property is required. List<Property Map>
A list of Entity filter expressions.
scopeFilterExpressionLists This property is required. List<Property Map>
  • The device ID which is used to uniquely identify this particular disk.

GetAccessControlPoliciesEntityContextFilterListEntityFilterExpressionList

LeftHandSideEntityType This property is required. string
  • The LHS of the filter expression - the entity type.
Operator This property is required. string
  • The operator in the filter expression.
RightHandSides This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetAccessControlPoliciesEntityContextFilterListEntityFilterExpressionListRightHandSide>
  • The right hand side (RHS) of an scope expression.
LeftHandSideEntityType This property is required. string
  • The LHS of the filter expression - the entity type.
Operator This property is required. string
  • The operator in the filter expression.
RightHandSides This property is required. []GetAccessControlPoliciesEntityContextFilterListEntityFilterExpressionListRightHandSide
  • The right hand side (RHS) of an scope expression.
leftHandSideEntityType This property is required. String
  • The LHS of the filter expression - the entity type.
operator This property is required. String
  • The operator in the filter expression.
rightHandSides This property is required. List<GetAccessControlPoliciesEntityContextFilterListEntityFilterExpressionListRightHandSide>
  • The right hand side (RHS) of an scope expression.
leftHandSideEntityType This property is required. string
  • The LHS of the filter expression - the entity type.
operator This property is required. string
  • The operator in the filter expression.
rightHandSides This property is required. GetAccessControlPoliciesEntityContextFilterListEntityFilterExpressionListRightHandSide[]
  • The right hand side (RHS) of an scope expression.
left_hand_side_entity_type This property is required. str
  • The LHS of the filter expression - the entity type.
operator This property is required. str
  • The operator in the filter expression.
right_hand_sides This property is required. Sequence[GetAccessControlPoliciesEntityContextFilterListEntityFilterExpressionListRightHandSide]
  • The right hand side (RHS) of an scope expression.
leftHandSideEntityType This property is required. String
  • The LHS of the filter expression - the entity type.
operator This property is required. String
  • The operator in the filter expression.
rightHandSides This property is required. List<Property Map>
  • The right hand side (RHS) of an scope expression.

GetAccessControlPoliciesEntityContextFilterListEntityFilterExpressionListRightHandSide

Categories This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetAccessControlPoliciesEntityContextFilterListEntityFilterExpressionListRightHandSideCategory>
  • The category values represented as a dictionary of key > list of values.
Collection This property is required. string
  • A representative term for supported groupings of entities. ALL = All the entities of a given kind.
UuidLists This property is required. List<string>
  • The explicit list of UUIDs for the given kind.
Categories This property is required. []GetAccessControlPoliciesEntityContextFilterListEntityFilterExpressionListRightHandSideCategory
  • The category values represented as a dictionary of key > list of values.
Collection This property is required. string
  • A representative term for supported groupings of entities. ALL = All the entities of a given kind.
UuidLists This property is required. []string
  • The explicit list of UUIDs for the given kind.
categories This property is required. List<GetAccessControlPoliciesEntityContextFilterListEntityFilterExpressionListRightHandSideCategory>
  • The category values represented as a dictionary of key > list of values.
collection This property is required. String
  • A representative term for supported groupings of entities. ALL = All the entities of a given kind.
uuidLists This property is required. List<String>
  • The explicit list of UUIDs for the given kind.
categories This property is required. GetAccessControlPoliciesEntityContextFilterListEntityFilterExpressionListRightHandSideCategory[]
  • The category values represented as a dictionary of key > list of values.
collection This property is required. string
  • A representative term for supported groupings of entities. ALL = All the entities of a given kind.
uuidLists This property is required. string[]
  • The explicit list of UUIDs for the given kind.
categories This property is required. Sequence[GetAccessControlPoliciesEntityContextFilterListEntityFilterExpressionListRightHandSideCategory]
  • The category values represented as a dictionary of key > list of values.
collection This property is required. str
  • A representative term for supported groupings of entities. ALL = All the entities of a given kind.
uuid_lists This property is required. Sequence[str]
  • The explicit list of UUIDs for the given kind.
categories This property is required. List<Property Map>
  • The category values represented as a dictionary of key > list of values.
collection This property is required. String
  • A representative term for supported groupings of entities. ALL = All the entities of a given kind.
uuidLists This property is required. List<String>
  • The explicit list of UUIDs for the given kind.

GetAccessControlPoliciesEntityContextFilterListEntityFilterExpressionListRightHandSideCategory

Name This property is required. string
  • the name(Optional).
Values This property is required. List<string>
  • value of the key.
Name This property is required. string
  • the name(Optional).
Values This property is required. []string
  • value of the key.
name This property is required. String
  • the name(Optional).
values This property is required. List<String>
  • value of the key.
name This property is required. string
  • the name(Optional).
values This property is required. string[]
  • value of the key.
name This property is required. str
  • the name(Optional).
values This property is required. Sequence[str]
  • value of the key.
name This property is required. String
  • the name(Optional).
values This property is required. List<String>
  • value of the key.

GetAccessControlPoliciesEntityContextFilterListScopeFilterExpressionList

LeftHandSide This property is required. string
  • The LHS of the filter expression - the scope type.
Operator This property is required. string
  • The operator in the filter expression.
RightHandSides This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetAccessControlPoliciesEntityContextFilterListScopeFilterExpressionListRightHandSide>
  • The right hand side (RHS) of an scope expression.
LeftHandSide This property is required. string
  • The LHS of the filter expression - the scope type.
Operator This property is required. string
  • The operator in the filter expression.
RightHandSides This property is required. []GetAccessControlPoliciesEntityContextFilterListScopeFilterExpressionListRightHandSide
  • The right hand side (RHS) of an scope expression.
leftHandSide This property is required. String
  • The LHS of the filter expression - the scope type.
operator This property is required. String
  • The operator in the filter expression.
rightHandSides This property is required. List<GetAccessControlPoliciesEntityContextFilterListScopeFilterExpressionListRightHandSide>
  • The right hand side (RHS) of an scope expression.
leftHandSide This property is required. string
  • The LHS of the filter expression - the scope type.
operator This property is required. string
  • The operator in the filter expression.
rightHandSides This property is required. GetAccessControlPoliciesEntityContextFilterListScopeFilterExpressionListRightHandSide[]
  • The right hand side (RHS) of an scope expression.
left_hand_side This property is required. str
  • The LHS of the filter expression - the scope type.
operator This property is required. str
  • The operator in the filter expression.
right_hand_sides This property is required. Sequence[GetAccessControlPoliciesEntityContextFilterListScopeFilterExpressionListRightHandSide]
  • The right hand side (RHS) of an scope expression.
leftHandSide This property is required. String
  • The LHS of the filter expression - the scope type.
operator This property is required. String
  • The operator in the filter expression.
rightHandSides This property is required. List<Property Map>
  • The right hand side (RHS) of an scope expression.

GetAccessControlPoliciesEntityContextFilterListScopeFilterExpressionListRightHandSide

Categories This property is required. List<PiersKarsenbarg.Nutanix.Inputs.GetAccessControlPoliciesEntityContextFilterListScopeFilterExpressionListRightHandSideCategory>
  • The category values represented as a dictionary of key > list of values.
Collection This property is required. string
  • A representative term for supported groupings of entities. ALL = All the entities of a given kind.
UuidLists This property is required. List<string>
  • The explicit list of UUIDs for the given kind.
Categories This property is required. []GetAccessControlPoliciesEntityContextFilterListScopeFilterExpressionListRightHandSideCategory
  • The category values represented as a dictionary of key > list of values.
Collection This property is required. string
  • A representative term for supported groupings of entities. ALL = All the entities of a given kind.
UuidLists This property is required. []string
  • The explicit list of UUIDs for the given kind.
categories This property is required. List<GetAccessControlPoliciesEntityContextFilterListScopeFilterExpressionListRightHandSideCategory>
  • The category values represented as a dictionary of key > list of values.
collection This property is required. String
  • A representative term for supported groupings of entities. ALL = All the entities of a given kind.
uuidLists This property is required. List<String>
  • The explicit list of UUIDs for the given kind.
categories This property is required. GetAccessControlPoliciesEntityContextFilterListScopeFilterExpressionListRightHandSideCategory[]
  • The category values represented as a dictionary of key > list of values.
collection This property is required. string
  • A representative term for supported groupings of entities. ALL = All the entities of a given kind.
uuidLists This property is required. string[]
  • The explicit list of UUIDs for the given kind.
categories This property is required. Sequence[GetAccessControlPoliciesEntityContextFilterListScopeFilterExpressionListRightHandSideCategory]
  • The category values represented as a dictionary of key > list of values.
collection This property is required. str
  • A representative term for supported groupings of entities. ALL = All the entities of a given kind.
uuid_lists This property is required. Sequence[str]
  • The explicit list of UUIDs for the given kind.
categories This property is required. List<Property Map>
  • The category values represented as a dictionary of key > list of values.
collection This property is required. String
  • A representative term for supported groupings of entities. ALL = All the entities of a given kind.
uuidLists This property is required. List<String>
  • The explicit list of UUIDs for the given kind.

GetAccessControlPoliciesEntityContextFilterListScopeFilterExpressionListRightHandSideCategory

Name This property is required. string
  • the name(Optional).
Values This property is required. List<string>
  • value of the key.
Name This property is required. string
  • the name(Optional).
Values This property is required. []string
  • value of the key.
name This property is required. String
  • the name(Optional).
values This property is required. List<String>
  • value of the key.
name This property is required. string
  • the name(Optional).
values This property is required. string[]
  • value of the key.
name This property is required. str
  • the name(Optional).
values This property is required. Sequence[str]
  • value of the key.
name This property is required. String
  • the name(Optional).
values This property is required. List<String>
  • value of the key.

GetAccessControlPoliciesEntityRoleReference

Kind This property is required. string
  • The kind name (Default value: project)(Required).
Name This property is required. string
  • the name(Optional).
Uuid This property is required. string
  • the UUID(Required).
Kind This property is required. string
  • The kind name (Default value: project)(Required).
Name This property is required. string
  • the name(Optional).
Uuid This property is required. string
  • the UUID(Required).
kind This property is required. String
  • The kind name (Default value: project)(Required).
name This property is required. String
  • the name(Optional).
uuid This property is required. String
  • the UUID(Required).
kind This property is required. string
  • The kind name (Default value: project)(Required).
name This property is required. string
  • the name(Optional).
uuid This property is required. string
  • the UUID(Required).
kind This property is required. str
  • The kind name (Default value: project)(Required).
name This property is required. str
  • the name(Optional).
uuid This property is required. str
  • the UUID(Required).
kind This property is required. String
  • The kind name (Default value: project)(Required).
name This property is required. String
  • the name(Optional).
uuid This property is required. String
  • the UUID(Required).

GetAccessControlPoliciesEntityUserGroupReferenceList

Kind This property is required. string
  • The kind name (Default value: project)(Required).
Name This property is required. string
  • the name(Optional).
Uuid This property is required. string
  • the UUID(Required).
Kind This property is required. string
  • The kind name (Default value: project)(Required).
Name This property is required. string
  • the name(Optional).
Uuid This property is required. string
  • the UUID(Required).
kind This property is required. String
  • The kind name (Default value: project)(Required).
name This property is required. String
  • the name(Optional).
uuid This property is required. String
  • the UUID(Required).
kind This property is required. string
  • The kind name (Default value: project)(Required).
name This property is required. string
  • the name(Optional).
uuid This property is required. string
  • the UUID(Required).
kind This property is required. str
  • The kind name (Default value: project)(Required).
name This property is required. str
  • the name(Optional).
uuid This property is required. str
  • the UUID(Required).
kind This property is required. String
  • The kind name (Default value: project)(Required).
name This property is required. String
  • the name(Optional).
uuid This property is required. String
  • the UUID(Required).

GetAccessControlPoliciesEntityUserReferenceList

Kind This property is required. string
  • The kind name (Default value: project)(Required).
Name This property is required. string
  • the name(Optional).
Uuid This property is required. string
  • the UUID(Required).
Kind This property is required. string
  • The kind name (Default value: project)(Required).
Name This property is required. string
  • the name(Optional).
Uuid This property is required. string
  • the UUID(Required).
kind This property is required. String
  • The kind name (Default value: project)(Required).
name This property is required. String
  • the name(Optional).
uuid This property is required. String
  • the UUID(Required).
kind This property is required. string
  • The kind name (Default value: project)(Required).
name This property is required. string
  • the name(Optional).
uuid This property is required. string
  • the UUID(Required).
kind This property is required. str
  • The kind name (Default value: project)(Required).
name This property is required. str
  • the name(Optional).
uuid This property is required. str
  • the UUID(Required).
kind This property is required. String
  • The kind name (Default value: project)(Required).
name This property is required. String
  • the name(Optional).
uuid This property is required. String
  • the UUID(Required).

GetAccessControlPoliciesMetadata

Filter This property is required. string
Kind This property is required. string
  • The kind name (Default value: project)(Required).
Length This property is required. int
Offset This property is required. int
SortAttribute This property is required. string
SortOrder This property is required. string
Filter This property is required. string
Kind This property is required. string
  • The kind name (Default value: project)(Required).
Length This property is required. int
Offset This property is required. int
SortAttribute This property is required. string
SortOrder This property is required. string
filter This property is required. String
kind This property is required. String
  • The kind name (Default value: project)(Required).
length This property is required. Integer
offset This property is required. Integer
sortAttribute This property is required. String
sortOrder This property is required. String
filter This property is required. string
kind This property is required. string
  • The kind name (Default value: project)(Required).
length This property is required. number
offset This property is required. number
sortAttribute This property is required. string
sortOrder This property is required. string
filter This property is required. str
kind This property is required. str
  • The kind name (Default value: project)(Required).
length This property is required. int
offset This property is required. int
sort_attribute This property is required. str
sort_order This property is required. str
filter This property is required. String
kind This property is required. String
  • The kind name (Default value: project)(Required).
length This property is required. Number
offset This property is required. Number
sortAttribute This property is required. String
sortOrder This property is required. String

Package Details

Repository
nutanix pierskarsenbarg/pulumi-nutanix
License
Apache-2.0
Notes
This Pulumi package is based on the nutanix Terraform Provider.