Module Values.ArgoCdConfigResponseSource

The response object containing Argo CD configuration details, including the server URL that you use to access the Argo CD web interface and API.

Sourcetype nonrec t = {
  1. namespace : String_.t option;
    (*

    The Kubernetes namespace where Argo CD resources are monitored by your Argo CD Capability.

    *)
  2. awsIdc : ArgoCdAwsIdcConfigResponse.t option;
    (*

    The IAM Identity CenterIAM; Identity Center integration configuration.

    *)
  3. rbacRoleMappings : ArgoCdRoleMappingList.t option;
    (*

    The list of role mappings that define which IAM Identity CenterIAM; Identity Center users or groups have which Argo CD roles.

    *)
  4. networkAccess : ArgoCdNetworkAccessConfigResponse.t option;
    (*

    The network access configuration for the Argo CD capability's managed API server endpoint. If VPC endpoint IDs are specified, public access is blocked and the Argo CD server is only accessible through the specified VPC endpoints.

    *)
  5. serverUrl : String_.t option;
    (*

    The URL of the Argo CD server. Use this URL to access the Argo CD web interface and API.

    *)
}
Sourceval make : ?namespace:??? -> ?awsIdc:??? -> ?rbacRoleMappings:??? -> ?networkAccess:??? -> ?serverUrl:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of String_.t ]) list ] list ]) list ] list | `String of String_.t | `Structure of (string * [> `List of [> `String of String_.t ] list | `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