Show / Hide Table of Contents

Class GetPolicyDocumentRuleArgs

Inheritance
System.Object
InputArgs
InvokeArgs
GetPolicyDocumentRuleArgs
Inherited Members
InvokeArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Vault.Inputs
Assembly: Pulumi.Vault.dll
Syntax
public sealed class GetPolicyDocumentRuleArgs : InvokeArgs

Constructors

View Source

GetPolicyDocumentRuleArgs()

Declaration
public GetPolicyDocumentRuleArgs()

Properties

View Source

AllowedParameters

Whitelists a list of keys and values that are permitted on the given path. See Parameters below.

Declaration
public List<GetPolicyDocumentRuleAllowedParameterArgs> AllowedParameters { get; set; }
Property Value
Type Description
System.Collections.Generic.List<GetPolicyDocumentRuleAllowedParameterArgs>
View Source

Capabilities

A list of capabilities that this rule apply to path. For example, ["read", "write"].

Declaration
public List<string> Capabilities { get; set; }
Property Value
Type Description
System.Collections.Generic.List<System.String>
View Source

DeniedParameters

Blacklists a list of parameter and values. Any values specified here take precedence over allowed_parameter. See Parameters below.

Declaration
public List<GetPolicyDocumentRuleDeniedParameterArgs> DeniedParameters { get; set; }
Property Value
Type Description
System.Collections.Generic.List<GetPolicyDocumentRuleDeniedParameterArgs>
View Source

Description

Description of the rule. Will be added as a commend to rendered rule.

Declaration
public string Description { get; set; }
Property Value
Type Description
System.String
View Source

MaxWrappingTtl

The maximum allowed TTL that clients can specify for a wrapped response.

Declaration
public string MaxWrappingTtl { get; set; }
Property Value
Type Description
System.String
View Source

MinWrappingTtl

The minimum allowed TTL that clients can specify for a wrapped response.

Declaration
public string MinWrappingTtl { get; set; }
Property Value
Type Description
System.String
View Source

Path

A path in Vault that this rule applies to.

Declaration
public string Path { get; set; }
Property Value
Type Description
System.String
View Source

RequiredParameters

A list of parameters that must be specified.

Declaration
public List<string> RequiredParameters { get; set; }
Property Value
Type Description
System.Collections.Generic.List<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.