Module Values.AccessScopeSource

The scope of an AccessPolicy that's associated to an AccessEntry.

Sourcetype nonrec t = {
  1. type_ : AccessScopeType.t option;
    (*

    The scope type of an access policy.

    *)
  2. namespaces : StringList.t option;
    (*

    A Kubernetes namespace that an access policy is scoped to. A value is required if you specified namespace for Type.

    *)
}
Sourceval make : ?type_:??? -> ?namespaces:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t